/* Reset e Variáveis */
:root {
    --primary-orange: #FF6B35;
    --orange-light: #FF8C61;
    --orange-dark: #E85A29;
    --neutral-bg: #FDFBF7;
    --neutral-light: #FFFFFF;
    --neutral-dark: #1F1F1F;
    --neutral-medium: #4A4A4A;
    --neutral-warm: #FFF9F0;
    --neutral-cream: #FAF8F5;
    --text-dark: #1F1F1F;
    --text-light: #6B6B6B;
    --success-green: #10B981;
    --error-red: #EF4444;
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
    --shadow-orange: 0 12px 40px rgba(255, 107, 53, 0.20);
    --shadow-premium: 0 20px 60px rgba(255, 107, 53, 0.15);
    
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-premium: linear-gradient(135deg, #1F1F1F 0%, #2D2D2D 50%, #1F1F1F 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(255, 107, 53, 0.06) 0%, rgba(255, 140, 97, 0.03) 100%);
    --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #FDFBF7 100%);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--neutral-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Hero Section - Modern Design */
.hero {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--neutral-warm) 100%);
    padding: 140px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 140, 97, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--neutral-light);
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 50px;
    font-size: 0.95rem;
    animation: fadeInDown 0.8s ease-out;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.badge-text {
    color: var(--text-light);
    font-weight: 500;
}

.badge-link {
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.badge-link:hover {
    color: var(--primary-orange);
}

.badge-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.badge-link:hover i {
    transform: translateX(4px);
}

/* Headline */
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-dark);
    letter-spacing: -0.02em;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.gradient-highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Description */
.hero-description {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-light);
    max-width: 680px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.description-highlight {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline-block;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-cta-primary,
.hero-cta-secondary {
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    text-decoration: none;
    cursor: pointer;
}

.hero-cta-primary {
    background: var(--gradient-orange);
    color: var(--neutral-light);
    border: none;
    box-shadow: var(--shadow-orange);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.hero-cta-secondary {
    background: transparent;
    color: var(--neutral-dark);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.hero-cta-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}



/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Credential Box */
.credential-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background: var(--neutral-light);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 53, 0.12);
    border-radius: 24px;
    padding: 48px 56px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s ease;
}

.credential-box:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.25);
}

.credential-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 24px 24px 0 0;
}

.credential-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), transparent 50%, rgba(255, 140, 97, 0.05));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.credential-box:hover::after {
    opacity: 1;
}

.credential-photo {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
}

.credential-photo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-orange);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.15;
}

.credential-photo::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: conic-gradient(from 0deg, var(--primary-orange), var(--orange-light), var(--primary-orange));
    border-radius: 50%;
    z-index: 0;
    animation: rotate 8s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.credential-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--neutral-light);
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 1;
}

.credential-text {
    text-align: left;
}

.credential-text h3 {
    font-family: var(--font-display);
    font-size: 1.95rem;
    margin-bottom: 10px;
    color: var(--neutral-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.credential-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.65;
    font-weight: 400;
}

/* Lead Section */
.lead-section {
    padding: 100px 0;
    background: var(--gradient-subtle);
    position: relative;
}

.lead-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.2) 50%, transparent 100%);
}

.lead-content {
    max-width: 850px;
    margin: 0 auto;
    background: var(--neutral-light);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 400;
}

.lead-paragraph:last-child {
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: var(--neutral-warm);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.15) 50%, transparent 100%);
}

.clients-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    color: var(--neutral-dark);
    margin-bottom: 60px;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.logos-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logos-carousel {
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--neutral-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    height: 100px;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 53, 0.2);
}

.logo-item img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Gradientes laterais para efeito fade */
.carousel-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 10;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--neutral-warm), transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--neutral-warm), transparent);
}

/* Transition */
.transition {
    padding: 80px 0;
    background: var(--gradient-orange);
    position: relative;
    overflow: hidden;
}

.transition::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.transition::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.transition-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    color: var(--neutral-light);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    line-height: 1.4;
}

/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: var(--neutral-light);
    position: relative;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.2) 50%, transparent 100%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    color: var(--neutral-dark);
    margin-bottom: 60px;
}

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

.benefit-card {
    background: var(--neutral-cream);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    background: var(--neutral-light);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 2.2rem;
    color: var(--neutral-light);
    box-shadow: var(--shadow-orange);
    position: relative;
    z-index: 1;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--neutral-dark);
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.offer-guarantee {
    text-align: center;
    font-size: 1.25rem;
    color: var(--neutral-dark);
    font-weight: 500;
    padding: 40px;
    background: var(--neutral-cream);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.offer-guarantee i {
    color: var(--primary-orange);
    margin-right: 12px;
    font-size: 1.4rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--neutral-warm);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-light);
    flex-shrink: 0;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--neutral-dark);
}

.step-content p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Qualification Section */
.qualification-section {
    padding: 100px 0;
    background: var(--gradient-subtle);
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.qualification-box {
    background: var(--neutral-light);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.qualification-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.qualification-box h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qualification-box.ideal h3 {
    color: var(--success-green);
}

.qualification-box.not-ideal h3 {
    color: var(--error-red);
}

.qualification-box ul {
    list-style: none;
}

.qualification-box li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.qualification-box.ideal li i {
    color: var(--success-green);
    font-size: 1.2rem;
    margin-top: 4px;
}

.qualification-box.not-ideal li i {
    color: var(--error-red);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Scarcity Section */
.scarcity-section {
    padding: 100px 0;
    background: var(--neutral-warm);
    position: relative;
    overflow: hidden;
}

.scarcity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.3) 50%, transparent 100%);
}

.scarcity-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.3) 50%, transparent 100%);
}

.scarcity-box {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: var(--neutral-light);
    padding: 56px 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.scarcity-box i {
    font-size: 4.5rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    display: inline-block;
}

.scarcity-box h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: var(--neutral-dark);
    font-weight: 700;
}

.scarcity-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.scarcity-highlight {
    font-size: 1.4rem !important;
    color: var(--primary-orange);
    font-weight: 700;
    margin-top: 32px !important;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 140, 97, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--neutral-light);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
}

.cta-button {
    background: var(--gradient-orange);
    color: var(--neutral-light);
    border: none;
    border-radius: 60px;
    padding: 28px 72px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
    transform: translateY(-3px) scale(1.01);
}

.cta-info {
    margin-top: 32px;
}

.slots-info {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-bottom: 12px;
}

.slots-remaining {
    color: var(--primary-orange);
    font-weight: 600;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
}

.micro-guarantee {
    margin-top: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    background: var(--neutral-warm);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.micro-guarantee i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.micro-guarantee p {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: left;
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1001;
    background: var(--neutral-light);
    border-radius: 28px;
    padding: 56px;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-premium);
    animation: modalSlideIn 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--neutral-medium);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--neutral-warm);
    color: var(--neutral-dark);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header i {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--neutral-dark);
}

.modal-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Form */
.schedule-form {
    display: block;
}

.schedule-form.hidden {
    display: none;
}

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

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

.form-group label i {
    color: var(--primary-orange);
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    font-size: 1.05rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--neutral-cream);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.1);
    background: var(--neutral-light);
}

.submit-button {
    width: 100%;
    background: var(--gradient-orange);
    color: var(--neutral-light);
    border: none;
    border-radius: 14px;
    padding: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-primary);
    box-shadow: var(--shadow-orange);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

/* Consent Container (LGPD) */
.consent-container {
    margin: 28px 0;
    padding: 24px;
    background: var(--neutral-cream);
    border-left: 4px solid var(--primary-orange);
    border-radius: 12px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.consent-label input[type="checkbox"] {
    margin-top: 3px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    accent-color: var(--primary-orange);
}

.consent-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.consent-text a {
    color: var(--primary-orange);
    text-decoration: underline;
    font-weight: 500;
}

.consent-text a:hover {
    color: var(--orange-dark);
}

.consent-info {
    margin-top: 12px;
    margin-left: 32px;
}

.consent-info small {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.consent-info a {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    animation: successFadeIn 0.5s ease;
}

.success-message.active {
    display: block;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-message i {
    font-size: 5rem;
    color: var(--success-green);
    margin-bottom: 24px;
}

.success-message h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neutral-dark);
    margin-bottom: 16px;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Who Section */
.who-section {
    padding: 80px 0;
    background: var(--gradient-orange);
    position: relative;
    overflow: hidden;
}

.who-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.who-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.who-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    color: var(--neutral-light);
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.who-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.who-photo {
    position: relative;
}

.who-photo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.3);
    display: block;
    margin: 0 auto;
}

.who-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neutral-light);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.who-badge i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.who-badge span {
    font-weight: 700;
    color: var(--neutral-dark);
    font-size: 0.95rem;
}

.who-text {
    color: var(--neutral-light);
}

.who-text h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.who-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
}

.who-highlights {
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--neutral-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.highlight-item strong {
    font-weight: 700;
}

.who-cta-button {
    background: var(--neutral-light);
    color: var(--primary-orange);
    border: none;
    border-radius: 60px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
}

.who-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.who-cta-button i {
    font-size: 1.2rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--neutral-warm) 0%, var(--neutral-cream) 100%);
    padding: 60px 0 20px;
    color: var(--text-dark);
    border-top: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-orange);
}

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

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--primary-orange);
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--neutral-dark);
    font-weight: 600;
}

.tagline {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.company-details {
    margin: 20px 0;
    line-height: 1.8;
}

.company-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

.legal-links ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

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

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.legal-links a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.dpo-contact {
    background: rgba(255, 107, 53, 0.05);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-orange);
}

.dpo-contact p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.dpo-contact a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.dpo-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--neutral-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--primary-orange);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.cookie-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cookie-text h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--neutral-dark);
    font-weight: 600;
}

.cookie-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--primary-orange);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: var(--orange-dark);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-actions button {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-accept-all {
    background: var(--gradient-orange);
    color: var(--neutral-light);
    box-shadow: var(--shadow-orange);
    flex: 1;
}

.btn-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.btn-reject-optional {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.btn-reject-optional:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-configure {
    background: var(--neutral-dark);
    color: var(--neutral-light);
}

.btn-configure:hover {
    background: #000;
}

/* Modal Zcal - Calendário de Agendamento */
.modal-zcal {
    max-width: 1000px;
    width: 95%;
}

.modal-zcal .modal-content {
    padding: 0;
    overflow: hidden;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

.modal-zcal .modal-header {
    padding: 25px 20px 18px;
    background: var(--gradient-orange);
    color: var(--neutral-light);
    flex-shrink: 0;
}

.modal-zcal .modal-header h2 {
    color: var(--neutral-light);
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.modal-zcal .modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.modal-zcal .modal-close {
    top: 12px;
    right: 12px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    color: var(--neutral-light);
    width: 36px;
    height: 36px;
}

.modal-zcal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--neutral-light);
}

.zcal-container {
    width: 100%;
    padding: 0;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

/* Loading Indicator do Zcal */
.zcal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.zcal-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 53, 0.1);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.zcal-loading p {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.zcal-inline-widget {
    width: 100%;
    min-height: 850px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zcal-inline-widget.loaded {
    opacity: 1;
}

/* Forçar iframe do Zcal a respeitar container */
.zcal-inline-widget iframe {
    max-width: 100% !important;
    width: 100% !important;
    min-height: 850px !important;
    height: 850px !important;
    border: none !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Forçar todos os elementos dentro do Zcal a respeitarem o container */
.zcal-inline-widget > * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.zcal-inline-widget a {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hero responsivo */
    .hero {
        padding: 100px 0 100px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .lead-content {
        padding: 40px 28px;
    }
    
    .testimonial-box {
        padding: 40px 28px;
    }
    
    .qualification-grid {
        grid-template-columns: 1fr;
    }
    
    .qualification-box {
        padding: 32px 24px;
    }
    
    .step {
        flex-direction: column;
        gap: 16px;
    }
    
    .modal-content {
        padding: 40px 28px;
    }
    
    .cta-button {
        padding: 22px 48px;
        font-size: 1.3rem;
    }
    
    .benefit-card {
        padding: 36px 28px;
    }
    
    .offer-section,
    .how-it-works,
    .qualification-section,
    .lead-section,
    .social-proof {
        padding: 80px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    /* Footer responsivo */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    /* Cookie Banner responsivo */
    .cookie-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-actions button {
        width: 100%;
        justify-content: center;
    }
    
    /* Consent Container responsivo */
    .consent-container {
        padding: 20px;
    }
    
    .consent-info {
        margin-left: 0;
    }
    
    /* Logos carousel responsivo */
    .logos-track {
        gap: 40px;
    }
    
    .logo-item {
        min-width: 140px;
        height: 80px;
        padding: 16px;
    }
    
    .logo-item img {
        max-width: 120px;
        max-height: 50px;
    }
    
    .carousel-fade {
        width: 60px;
    }
    
    /* Who Section responsivo */
    .who-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .who-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .who-text h3 {
        font-size: 2rem;
    }
    
    .who-subtitle {
        font-size: 1.05rem;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .who-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    /* Modal Zcal responsivo */
    .modal-zcal {
        max-width: 95%;
        width: 95%;
        margin: 10px auto;
    }
    
    .modal-zcal .modal-content {
        max-height: 95vh;
    }
    
    .modal-zcal .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-zcal .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-zcal .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .zcal-container {
        padding: 0;
    }
    
    .zcal-inline-widget {
        min-height: 750px;
    }
    
    .zcal-inline-widget iframe {
        min-height: 750px !important;
        height: 750px !important;
    }
}

@media (max-width: 480px) {
    /* Hero mobile pequeno */
    .hero {
        padding: 80px 0 80px;
    }
    
    .hero-badge {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .scarcity-box {
        padding: 40px 24px;
    }
    
    .lead-content {
        padding: 32px 24px;
    }
    
    .testimonial-box {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .qualification-box {
        padding: 28px 20px;
    }
    
    .modal-content {
        padding: 32px 24px;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    /* Logos carousel mobile pequeno */
    .clients-heading {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .logos-track {
        gap: 32px;
    }
    
    .logo-item {
        min-width: 120px;
        height: 70px;
        padding: 12px;
    }
    
    .logo-item img {
        max-width: 100px;
        max-height: 45px;
    }
    
    /* Who Section mobile pequeno */
    .who-heading {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .who-photo {
        max-width: 240px;
    }
    
    .who-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .who-badge i {
        font-size: 1rem;
    }
    
    .who-text h3 {
        font-size: 1.7rem;
    }
    
    .who-subtitle {
        font-size: 1rem;
    }
    
    .highlight-item p {
        font-size: 0.92rem;
    }
    
    .who-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Modal Zcal mobile pequeno */
    .modal-zcal {
        width: 98%;
    }
    
    .modal-zcal .modal-header {
        padding: 12px 15px;
    }
    
    .modal-zcal .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-zcal .modal-subtitle {
        font-size: 0.8rem;
    }
    
    .zcal-container {
        padding: 0;
    }
    
    .zcal-inline-widget {
        min-height: 700px;
    }
    
    .zcal-inline-widget iframe {
        min-height: 700px !important;
        height: 700px !important;
    }
}
