/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --gold: #D4AF37;
    --black: #0A0A0A;
    --beige: #FDFBF7;
    --green: #10B981;
    --blue: #3B82F6;
    --pink: #FDF2F8;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--beige);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

/* ===========================
   HEADER
   =========================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--beige);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

#header.transparent {
    background: transparent;
    box-shadow: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

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

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.5px;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 24px;
    color: var(--black);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #C19B2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--beige);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: #C19B2F;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 180px 0 100px;
    background: url('../images/hero-pattern.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    right: -100px;
    bottom: -80px;
    background: radial-gradient(ellipse at left center, rgba(253, 251, 247, 0.98) 0%, rgba(253, 251, 247, 0.92) 50%, rgba(253, 251, 247, 0.70) 65%, transparent 85%);
    z-index: -1;
    filter: blur(30px);
}

.hero-image {
    /* Espaço vazio para mostrar a imagem de fundo sem overlay */
    min-height: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.badge-item i {
    font-size: 24px;
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content::before {
        top: -60px;
        left: -60px;
        right: -60px;
        bottom: -60px;
        background: radial-gradient(ellipse at center, rgba(253, 251, 247, 0.98) 0%, rgba(253, 251, 247, 0.90) 60%, transparent 80%);
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        justify-content: center;
    }

    .hero-badges {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-content::before {
        top: -50px;
        left: -50px;
        right: -50px;
        bottom: -50px;
    }
}

/* ===========================
   SECTION STYLES
   =========================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-700);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    padding: var(--section-padding);
    background: var(--beige);
}

.about-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #C19B2F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 28px;
    color: var(--black);
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FAFAFA 0%, var(--beige) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #FFFCF5 0%, white 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--black);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #C19B2F 100%);
}

.service-icon i {
    font-size: 32px;
    color: var(--gold);
}

.service-card.featured .service-icon i {
    color: var(--black);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.service-features i {
    color: var(--green);
    font-size: 16px;
    margin-top: 4px;
}

.service-card.complementary {
    background: var(--gray-100);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===========================
   RESULTS SECTION
   =========================== */
.results {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FAFAFA 0%, var(--beige) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.result-icon i {
    font-size: 32px;
    color: var(--gold);
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.result-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.honesty-card {
    background: linear-gradient(135deg, var(--black) 0%, #1A1A1A 100%);
    padding: 60px;
    border-radius: 20px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.partnership-illustration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.15;
    pointer-events: none;
}

.honesty-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honesty-icon i {
    font-size: 48px;
    color: var(--black);
}

.honesty-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.honesty-content p {
    font-size: 16px;
    color: var(--beige);
    line-height: 1.8;
    margin-bottom: 16px;
}

.honesty-highlight {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-left: 4px solid var(--gold);
    margin: 24px 0;
}

.honesty-highlight strong {
    color: var(--gold);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    padding: var(--section-padding);
    background: var(--beige);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.active .faq-question {
    color: var(--gold);
    border-bottom: 2px solid var(--gray-100);
}

.faq-question i {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer > div {
    padding: 28px 32px 32px;
    background: var(--gray-100);
}

.faq-answer p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 18px;
}

.faq-answer ul {
    list-style: none;
    margin: 20px 0;
}

.faq-answer li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-answer li::before {
    content: '●';
    position: absolute;
    left: 10px;
    color: var(--gold);
    font-size: 22px;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--black);
    font-weight: 700;
}

.faq-answer em {
    color: var(--gray-700);
    font-style: italic;
    font-size: 15px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFAFA 0%, var(--beige) 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23D4AF37" opacity="0.1"/></svg>');
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gold);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-benefits {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.cta-benefit i {
    font-size: 24px;
    color: var(--green);
}

.cta-footer {
    margin-top: 32px;
    font-size: 15px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cta-footer i {
    color: var(--gold);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FAFAFA 0%, var(--beige) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--gold);
    font-size: 18px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-option:hover {
    background: var(--gray-200);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--gold);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.radio-label {
    font-size: 15px;
    color: var(--gray-700);
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--gold);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.submit-btn:hover {
    background: #C19B2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-btn.loading .spinner {
    display: block;
}

.submit-btn.loading #btnText {
    display: none;
}

.form-privacy {
    text-align: center;
    font-size: 13px;
    color: var(--gray-700);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: var(--green);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--black);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--gray-700);
    font-size: 15px;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card p {
    color: var(--gray-700);
    font-size: 15px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--black);
    color: var(--beige);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-300);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-300);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-300);
}

.footer-contact i {
    color: var(--gold);
    font-size: 16px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-300);
}

.footer-cnpj {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray-300);
}

/* ===========================
   WHATSAPP FLOAT BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .honesty-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--beige);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-toggle,
    .nav-close {
        display: block;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-cards,
    .services-grid,
    .differentials-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }

    .service-illustration,
    .partnership-illustration {
        display: none;
    }

    .cta-content {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-card,
    .about-card,
    .differential-card {
        padding: 30px 20px;
    }

    .honesty-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}
/* ===========================
   DIFFERENTIALS SECTION
   =========================== */
.differentials {
    padding: var(--section-padding);
    background: var(--beige);
    position: relative;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/tech-pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.differentials .container {
    position: relative;
    z-index: 1;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.differential-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.differential-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.2;
    z-index: 0;
}

.differential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #C19B2F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.differential-icon i {
    font-size: 28px;
    color: var(--black);
}

.differential-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.differential-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
/* Foto da Equipe na Home (Novo e Seguro) */
.team-home-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px; /* Largura da foto no desktop */
    height: 100%;
    object-fit: cover;
    opacity: 0.35; /* Suave para não ofuscar o texto */
    z-index: 0;
    transition: var(--transition);
}

.honesty-card:hover .team-home-photo {
    opacity: 0.5;
}

/* Traz o texto para a frente da foto */
.honesty-content {
    position: relative;
    z-index: 1; 
}

/* Adaptação para Celular */
@media (max-width: 768px) {
    .team-home-photo {
        width: 100%; /* Preenche todo o card no celular */
        opacity: 0.15; /* Fica beeeem clarinha no fundo para dar leitura no texto */
    }
}

/* ===========================
   CAROUSEL DE EQUIPE (Proporção exata da foto 3:4)
   =========================== */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    background: transparent;
    aspect-ratio: 3 / 4; /* Isso força o container a ter o formato exato da sua câmera. Zero bordas. */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.6);
    color: var(--gold);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* ===========================
   FOTO DA EQUIPE NA HOME
   =========================== */
.honesty-card {
    background: linear-gradient(135deg, var(--black) 0%, #1A1A1A 100%);
    border-radius: 20px;
    display: flex !important; 
    align-items: center;
    gap: 50px;
    padding: 60px !important; /* Volta o espaçamento interno do card */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.honesty-text-wrapper {
    flex: 1.6; /* Dá muito mais espaço para o texto respirar */
    display: flex;
    gap: 35px;
    align-items: flex-start; /* Alinha o ícone no topo do texto */
}

.honesty-image-wrapper {
    flex: 1; /* A imagem ocupa o espaço restante, ficando menor e proporcional */
    height: 400px; /* Altura controlada para não esticar demais */
    border-radius: 16px; /* Borda arredondada na própria imagem */
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    position: relative;
}

.team-home-photo-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Responsivo para Celular/Tablet */
@media (max-width: 1024px) {
    .honesty-card {
        flex-direction: column;
        padding: 40px !important;
        gap: 40px;
    }
    
    .honesty-text-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .honesty-image-wrapper {
        width: 100%;
        height: 350px;
    }
}