:root {
    --primary_blue: #0554bd;
    --secondary_blue: #38b6ff;
    --primary_green: #014926;
    --secondary_green: #009D51;
    --font-family: 'Poppins', sans-serif;
    --accent: #4CAF50;
    --whatsapp: #25D366;
    --text: #333;
    --light: #f8f9fa;
    --dark: #0a1126;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Centralizado - ESPESSURA REDUZIDA */
.main-header {
    background-color: white;
    padding: 1rem 2rem; 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo img {
    height: 70px; /* Reduzido de 80px para 70px */
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navegação Centralizada */
.main-nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    margin-left: 2rem;
}

.main-nav ul {
    color: var(--primary_blue);
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav li {
    color: var(--primary_blue);
    margin: 0 1rem;
}

.nav-link {
    color: var(--primary_blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover:after {
    width: 100%;
}

.cta-button {
    background-color: var(--accent);
    color: white;
    border-color: #0554bd;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-left: 1rem;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #d60a0a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hero Section - ESPESSURA REDUZIDA */
.hero {
    background: linear-gradient(135deg, var(--primary_blue) 0%, var(--secondary_blue) 100%);
    color: white;
    padding: 8rem 2rem 3rem; /* Reduzido de 10rem 2rem 4rem */
    text-align: center;
}

.hero h1 {
    font-family: 'poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: var(--whatsapp);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* Seções comuns */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary_blue);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Sobre */
.about {
    background-color: var(--light);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Modal de Serviços */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background-color: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary_blue);
}

.service-card p {
    color: var(--text);
    font-size: 0.95rem;
}

/* Contato */
.contact {
    background-color: var(--primary_blue);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.main-footer {
    background-color: var(--light);
    color: var(--text);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}
.form *{
    font-family: poppins, sans-serif;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.social-links {
    color: var(--text);
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links a {
    color: var(--text);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Botão de Serviços na página principal */
.services-btn {
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s;
}

.services-btn:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

a{
    text-decoration: none;
}


 