:root {
    --primary: #befb00; /* Neon Lime fiel à foto */
    --primary-dark: #aacc00;
    --bg-dark: #0f2a24; /* Verde floresta escuro */
    --bg-darker: #0d1b18; /* Fundo Services */
    --text-light: #ffffff;
    --text-muted: #a0b3b0;
    --card-bg: #f5f4ef;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8f9fa;
    color: var(--bg-dark);
    line-height: 1.6;
}

.hero {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Alinha o container de conteúdo ao centro */
    padding: 4rem 0 12rem; /* Retira padding lateral que desalinha */
    text-align: left;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 900px; /* Mantém limite de quebra de linha do título */
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 13px;
    /* Tamanho 12-14px conforme pedido */
    color: var(--text-muted);
    max-width: 450px;
    margin: 0 0 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 1.8rem;
    /* Mais compacto */
    font-size: 14px;
    /* Mais próximo de 16px/12px pedido */
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-icon {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Metric Cards */
.metrics-grid-container {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: -85px; /* Pulls cards up exactly 50% given 170px height */
}

.metrics-grid {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Garante altura igual nos cards */
}

.metric-card {
    background-color: var(--card-bg);
    color: var(--bg-dark);
    padding: 10px;
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 1;
    min-height: 170px;
    max-width: 330px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06); /* Enhanced shadow for detachment */
}

/* Card 1: Assets */
.assets-card {
    background-color: #dad9d7;
}

.assets-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 10px 12px 16px;
    width: 44%;
}

.assets-card .card-main-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a3c34;
    margin: 0;
}

.assets-left .learn-more {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: #1a3c34;
}

.assets-card .inner-white-card.right-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    width: 56%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.arrow-circle {
    background: #ccf381;
    color: #1a3c34;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Card 2: Professionals */
.professionals-card {
    background: #dad9d7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Slightly darker */
    padding: 10px;
}

.professionals-card .inner-white-card.full-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.metric-icon-small {
    width: 24px;
    height: 24px;
    margin-bottom: 0.2rem;
    color: #184136;
}

.metric-fa-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem; /* Espaço reduzido conforme pedido */
    color: #1a3c34;
}

.professionals-card .card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    color: #1a3c34;
    margin-bottom: 0.3rem;
    display: block;
    line-height: 1.2;
}

.card-value-large {
    font-size: 22px;
    font-weight: 700;
    color: #1a3c34;
}

/* Card 3: Trust */
.trust-card {
    background: #dad9d7;
    padding: 10px;
}

.trust-card .inner-white-card.left-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    width: 62%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.metric-icon-small {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    color: #1a3c34;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -12px;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

/* About Section */
.about {
    padding: 12rem 2rem 8rem;
    /* Increased top padding to account for overlapping cards */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 2rem;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #0a251e;
}

.about-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-dark {
    background-color: #0a251e;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-dark:hover {
    opacity: 0.9;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-img {
    width: 100%;
    max-width: 380px; /* Ajustado para 380px para igualar aos cards */
    height: auto;
    object-fit: contain;
}

#services {
    background-color: var(--bg-darker);
    padding: 8rem 0;
    text-align: center;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
    padding: 0 20px;
}

.services-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.services-header h2 {
    color: var(--text-light);
    font-size: 3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.1;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch; /* Explicitly ensure all cards stretch to same height */
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background-color: var(--primary);
    border-radius: 35px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 0; /* Changed to strictly force equal width across all 3 */
    min-width: 300px;
    max-width: 360px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-img-container {
    width: 100%;
    height: 230px; /* Reduzido de 280/260px */
    position: relative;
    margin-bottom: 2.2rem; /* Reduced to align closely with the badge */
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.service-icon-badge {
    position: absolute;
    bottom: -24px;
    left: 20px;
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a3c34;
    z-index: 10;
}

.service-icon-badge svg {
    width: 24px;
    height: 24px;
    color: #1a3c34;
}

.service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding: 0;
    gap: 15px; /* Spacing between text and arrow */
}

.service-title-combined {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0;
    line-height: 1.3;
}




.btn-icon-circle {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.4rem; /* Aumentado de 1.1rem */
    transition: all 0.2s;
}

.btn-icon-circle:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}

.btn-icon-circle i {
    transform: rotate(-45deg);
}

.services-pagination {
    display: none;
}

.btn-icon-circle.dark {
    background: var(--bg-dark);
    color: #ffffff;
}

.btn-icon-circle.dark:hover {
    background: #1a3c34;
}

/* Testimonials Section */
#testimonials {
    background-color: #f6f5f0;
    padding: 6rem 10%;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.badge-outline {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid #c2c9c5;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #4a635a;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.testimonials-header h2 {
    font-size: 3rem;
    color: #0a251e;
    line-height: 1.1;
    margin: 0;
}

.testimonial-nav {
    display: flex;
    gap: 1rem;
}

.testimonial-nav .nav-btn {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #c2c9c5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0a251e;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.testimonial-nav .nav-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #3b5049;
    font-weight: 500;
    margin-bottom: 1rem;
    max-width: 90%;
}

.quote-icon {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.testimonial-author h4 {
    color: var(--bg-dark);
    font-size: 1.1rem;
    margin: 0 0 0.2rem 0;
}

.testimonial-author span {
    color: #7b8e88;
    font-size: 0.9rem;
}

.testimonials-action {
    display: flex;
    justify-content: center;
}

.testimonials-action .btn-dark {
    padding: 1.2rem 3rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 10%;
    background-color: #ffffff;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: #555;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.newsletter-form .form-group {
    width: 100%;
    max-width: 450px;
    text-align: left;
}

.newsletter-form label {
    display: block;
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #000;
}

.btn-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 3.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
    background: #222;
    transform: translateY(-2px);
}

/* Header Section */
.main-header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Menu Styles */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bg-dark);
    cursor: pointer;
    margin-left: 15px;
}

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.overlay-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-overlay {
    position: fixed;
    top: 15px;
    right: 15px;
    width: calc(100% - 30px);
    height: calc(100vh - 30px);
    background: white;
    z-index: 10000; /* Higher than whatsapp */
    display: flex;
    flex-direction: column;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    border-bottom: 1px solid #eee;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--bg-dark);
    cursor: pointer;
}

.mobile-nav {
    flex-grow: 1;
    padding: 2rem 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 1.8rem;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--bg-dark);
    font-size: 1.6rem;
    font-weight: 600;
}

.mobile-menu-footer {
    padding: 2rem 20px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #3b5049;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.main-nav a.active, .main-nav a:hover {
    color: #0a251e;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f3f1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b5049;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1rem;
}

.search-btn:hover {
    background: #e2e8e5;
}

.header-actions .btn-primary {
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.header-actions .btn-primary:hover {
    transform: translateY(-2px);
    background: #c3e600;
}

/* Footer Section */
.main-footer {
    background-color: #1b493b; /* Dark forest green */
    color: #fff;
    padding: 4rem 10% 2rem; /* Reduced top padding */
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem; /* Reduced gap */
    padding-bottom: 3rem; /* Reduced padding bottom */
    border-bottom: 0px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem; /* Reduced font size */
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #b0c9c1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem; /* Reduced font size */
    max-width: 90%;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: #1b493b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #b0c9c1;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem; /* Reduced font size */
}

.footer-col ul a:hover {
    color: var(--primary);
}

.contact-info {
    color: #b0c9c1;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.9rem; /* Reduced font size */
}

.contact-info strong {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.2rem;
}

.office-times li {
    color: #b0c9c1;
    font-size: 0.9rem; /* Reduced font size */
    line-height: 1.4;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    color: #b0c9c1;
    font-size: 0.85rem;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    background-color: #1ebd5a;
}

/* =========================================
   DEDICATED SERVICES PAGE (servicos.html)
   ========================================= */

.services-page-main {
    background-color: #ffffff;
}

.services-page-intro {
    text-align: center;
    padding: 6rem 20px 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-page-intro h1 {
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-page-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.services-page-cards {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 20px;
    gap: 30px;
}

.s-card {
    flex: 1;
    background-color: #f0efe8; /* Fundo meio-termo */
    display: flex;
    flex-direction: column;
    border-radius: 35px;
    padding: 25px; /* Padding meio-termo */
}

.s-card-content {
    padding: 1.5rem 1rem 2.5rem;
    flex-grow: 1;
}

.s-card-content h3 {
    font-size: 1.3rem;
    color: var(--bg-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.s-card-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.s-card-img {
    width: 100%;
    height: 350px;
}

.s-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.services-testimonial-banner {
    background-color: #3ba455; /* Solid green band */
    text-align: center;
    padding: 5rem 20px;
    color: white;
}

.st-stars {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.st-quote {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
}

.st-author {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.st-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.st-author span {
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-section {
    max-width: 1000px;
    margin: 6rem auto 8rem;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 4rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
}

.faq-item h4 {
    font-size: 1.15rem;
    color: var(--bg-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   SIMULAÇÃO PAGE (simulacao.html)
   ========================================= */

.simulation-banner {
    background-color: var(--bg-darker);
    padding: 8rem 20px;
    text-align: center;
}

.simulation-banner-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.simulation-banner-content p {
    font-size: 1.1rem;
    color: #b0c9c1;
    margin-bottom: 3rem;
}

.simulation-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.simulation-form .form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.simulation-form .form-group input {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.simulation-form .form-group input:focus {
    outline: 2px solid var(--primary);
}

.btn-success {
    background-color: #3ba455;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-success:hover {
    background-color: #2c8541;
}

/* Adjust FAQ specifically on Simulador */
.simulator-faq .faq-grid {
    max-width: 800px;
    margin: 0 auto;
    gap: 3rem;
}

/* =========================================
   CONTATO PAGE (contato.html)
   ========================================= */

.contact-page-main {
    background-color: white;
}

.contact-intro-section {
    padding: 6rem 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info-side h1 {
    font-size: 3.5rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info-side p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
    max-width: 450px;
}

.contact-main-form {
    background: white;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.contact-main-form .form-group label {
    color: var(--bg-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-main-form .form-group input {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.contact-main-form .form-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 164, 85, 0.1);
}

.contact-photo-section {
    padding-bottom: 6rem;
}

.contact-photo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 35px;
    display: block;
}

.location-section {
    background-color: #1a1a1a;
    padding: 6rem 20px;
    color: white;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.location-info p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loc-item strong {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.loc-item p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.about-block-section {
    padding: 8rem 20px;
}

.about-block-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-block-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-block-text h2 {
    font-size: 3rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.about-block-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-outline-dark {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--bg-dark);
    border-radius: 30px;
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background-color: var(--bg-dark);
    color: white;
}

.about-block-img img {
    width: 100%;
    border-radius: 35px;
}

.diff-block-section {
    padding: 4rem 20px 8rem;
}

.diff-block-container {
    max-width: 1100px;
    margin: 0 auto;
}

.diff-block-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.diff-block-text h2 {
    font-size: 3rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.diff-block-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
}

.diff-main-img {
    width: 100%;
    border-radius: 35px;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .metrics-grid {
        flex-direction: column;
    }

    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual {
        justify-content: center;
    }

    .about-content p {
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    /* Header */
    .main-nav { display: none; } /* Ocultar nav, focar apenas no botão e logo em mobile */
    .header-container { padding: 0 15px; }
    .header-actions .btn-primary { display: none; } /* Esconder Fale Conosco do header no celular */
    .menu-btn { display: block; } /* Mostrar hamburger menu button */
    
    /* Hero */
    .hero { min-height: 60vh; padding: 4rem 15px 8rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    
    /* Metrics */
    .metrics-grid-container { margin-top: -50px; padding: 0 15px; }
    .metrics-grid { flex-direction: column; gap: 1rem; }
    .metric-card { max-width: 100%; min-width: 100%; height: auto; min-height: auto; }
    
    /* About */
    .about-visual { display: none; } /* Remover imagem about no mobile como solicitado */

    /* Services */
    #services { padding: 5rem 0; }
    .services-header h2 { font-size: 2rem; }
    .services-grid { flex-direction: column; gap: 1.5rem; padding: 0 15px; }
    .service-card { max-width: 100%; min-width: 100%; height: auto; }
    
    /* Testimonials */
    #testimonials { padding: 4rem 15px; }
    .testimonials-header h2 { font-size: 1.8rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    /* Newsletter */
    .newsletter-section { padding: 4rem 15px; }
    .newsletter-form { flex-direction: column; align-items: stretch; }
    .newsletter-form .form-group input { width: 100%; }
    .btn-submit { width: 100%; padding: 1rem; margin-top: 1rem; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-logo { justify-content: center; }
    .main-footer { padding: 4rem 15px 2rem; }

    /* Servicos Dedicated Page Mobile */
    .services-page-cards { flex-direction: column; }
    .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-page-intro h1 { font-size: 2rem; }
    .s-card-content { padding: 2rem; }
    .s-card-img { height: 250px; }

    /* Contato Mobile */
    .contact-grid, .location-grid, .about-block-grid, .diff-block-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info-side h1 { font-size: 2.5rem; }
    .location-info h2, .about-block-text h2, .diff-block-text h2 { font-size: 2.2rem; }
    .contact-hero-img { height: 300px; }
    .about-block-img, .diff-block-img { order: -1; }
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* =========================================
   RESTORED FOOTER (Step 572 Pattern)
   ========================================= */

.site-footer {
    background-color: #1a3b34; /* Dark teal/green */
    color: white;
    padding: 6rem 20px 4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ccff00;
}

/* Circular Social Icons */
.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background-color: #ccff00; /* Lime green */
    color: #1a3b34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s, opacity 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-content {
        text-align: center; /* mantém título centralizado */
    }

    .about-content p {
        text-align: justify; /* só os textos ficam justificados */
    }
}