/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-gold: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --accent-gradient: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
}

.header__logo img {
    height: 40px;
    width: auto;
}

/* Section Titles */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.highlight-gold {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SEÇÃO 1: FOTOS DA EMPRESA - SLIDER ARRASTÁVEL */
.company-photos {
    padding: 120px 0 60px;
    background: var(--primary-bg);
}

.photos-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.photos-slider {
    display: flex;
    gap: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

.photos-slider::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.photo-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.photo-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Setas de Navegação */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.slider-arrow svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.slider-arrow:hover svg {
    color: #000;
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

/* Desktop com mais espaço */
@media (min-width: 1200px) {
    .slider-arrow-prev {
        left: -28px;
    }
    
    .slider-arrow-next {
        right: -28px;
    }
}

/* Tablet - esconder setas */
@media (max-width: 1024px) {
    .slider-arrow {
        display: none;
    }
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-gold);
    width: 32px;
    border-radius: 6px;
}

/* SEÇÃO 2: REDLINE */
.redline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a00, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.redline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

.redline-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.redline-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.redline-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card.highlight {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-arrow {
    font-size: 48px;
    color: var(--accent-gold);
    font-weight: bold;
}

.redline-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    line-height: 1.6;
}

.redline-subtitle strong {
    color: var(--accent-gold);
    font-weight: 700;
}

/* SEÇÃO 3: VÍDEO */
.video-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

/* Video overlay removido - autoplay ativo */

/* Overlay com Blur para VSL */
.video-overlay-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.4s ease;
}

.video-overlay-blur.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Botão de Play com Áudio - Compacto */
.play-audio-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-audio-button:hover {
    transform: scale(1.1);
}

.play-audio-button svg {
    width: 80px;
    height: 80px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(244, 228, 166, 0.95));
    border-radius: 50%;
    color: #000;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.6));
    animation: pulsePlay 2s ease-in-out infinite;
}

.play-audio-button:hover svg {
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.8));
}

.play-audio-button span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

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

@media (max-width: 768px) {
    .play-audio-button svg {
        width: 70px;
        height: 70px;
        padding: 18px;
    }
    
    .play-audio-button span {
        font-size: 12px;
    }
}

/* SEÇÃO 4: GATILHOS */
.triggers-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

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

.trigger-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.trigger-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.trigger-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
}

.trigger-card:hover .trigger-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.trigger-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.trigger-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.trigger-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.investment-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 166, 0.05));
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.investment-highlight h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.investment-item .label {
    font-size: 18px;
    color: var(--text-secondary);
}

.investment-item .value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

/* SEÇÃO 5: PROVA SOCIAL */
.social-proof {
    padding: 80px 0;
    background: var(--secondary-bg);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.5);
    flex-shrink: 0;
}

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

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.result-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.proof-stat:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.proof-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proof-icon svg {
    width: 32px;
    height: 32px;
    color: #000;
}

.proof-content {
    flex: 1;
    text-align: left;
}

.proof-number {
    font-size: 36px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
}

.proof-label {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* SEÇÃO 6: FORMULÁRIO */
.form-section {
    padding: 80px 0;
    background: var(--primary-bg);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

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

.form-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
    border: 2px solid #ef4444;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.urgency-icon {
    width: 22px;
    height: 22px;
    color: #ef4444;
    flex-shrink: 0;
}

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

.form-benefits h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    font-size: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.benefits-list li svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.benefits-list li span {
    flex: 1;
}

.form-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    width: 100%;
}

.cta-highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-highlight-icon svg {
    width: 24px;
    height: 24px;
    color: #000;
}

.cta-highlight-text {
    text-align: left;
    flex: 1;
}

.cta-highlight-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent-gold);
}

.cta-highlight-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.btn-form-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-form-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-form-primary svg {
    width: 24px;
    height: 24px;
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.form-note svg {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.form-guarantee {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-badge {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.form-guarantee p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Final */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0a00, #0a0a0a);
    text-align: center;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-text {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-cta-final {
    display: inline-block;
    padding: 24px 60px;
    background: var(--accent-gradient);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.7);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--secondary-bg);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    height: 40px;
    margin: 0 auto 16px;
    display: block;
}

.footer-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Video CTA Button */
.video-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-video-cta svg {
    width: 20px;
    height: 20px;
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.4s ease, fadeOut 0.4s ease 4.6s;
    opacity: 1;
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.toast-content {
    flex: 1;
}

.toast-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.toast-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 30px rgba(239, 68, 68, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.urgency-badge {
    animation: pulse 2.5s ease-in-out infinite;
}

.urgency-badge strong {
    color: #ef4444;
    font-size: 1.1em;
}

/* Efeito hover nos botões */
.btn-form-primary,
.btn-cta-final {
    position: relative;
    overflow: hidden;
}

.btn-form-primary::before,
.btn-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-form-primary:hover::before,
.btn-cta-final:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 16px 0;
    }
    
    .header__logo img {
        height: 32px;
    }
    
    .company-photos {
        padding: 100px 0 40px;
    }
    
    .photos-slider-wrapper {
        max-width: 100%;
    }
    
    .photo-slide {
        border-radius: 12px;
    }
    
    .photo-slide img {
        height: 280px;
    }
    
    /* Esconder setas no mobile */
    .slider-arrow {
        display: none;
    }
    
    .slider-dots {
        gap: 8px;
        margin-top: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .redline-section {
        padding: 60px 0;
    }
    
    .redline-stats {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }
    
    .stat-card {
        padding: 30px 40px;
        width: 100%;
    }
    
    .stat-arrow {
        transform: rotate(90deg);
        font-size: 36px;
    }
    
    .video-section {
        padding: 60px 0;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 30px;
        height: 30px;
    }
    
    .triggers-section {
        padding: 60px 0;
    }
    
    .triggers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trigger-card {
        padding: 24px;
    }
    
    .trigger-icon {
        width: 48px;
        height: 48px;
    }
    
    .investment-highlight {
        padding: 24px;
    }
    
    .investment-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px 16px;
    }
    
    .investment-item .label {
        font-size: 14px;
    }
    
    .investment-item .value {
        font-size: 20px;
    }
    
    .social-proof {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proof-stat {
        padding: 24px 20px;
        gap: 16px;
    }
    
    .proof-icon {
        width: 56px;
        height: 56px;
    }
    
    .proof-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .proof-number {
        font-size: 32px;
    }
    
    .proof-label {
        font-size: 14px;
    }
    
    #toast-container {
        left: 16px;
        right: 16px;
        bottom: 20px;
        max-width: calc(100% - 32px);
    }
    
    .toast {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .toast-icon {
        width: 36px;
        height: 36px;
    }
    
    .toast-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .toast-name {
        font-size: 14px;
    }
    
    .toast-message {
        font-size: 12px;
    }
    
    .toast-time {
        font-size: 10px;
    }
    
    .btn-video-cta {
        padding: 18px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .form-section {
        padding: 60px 0;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-wrapper {
        padding: 32px 24px;
    }
    
    .btn-form-primary {
        padding: 18px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .cta-highlight {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .cta-highlight-text {
        text-align: center;
    }
    
    .cta-highlight-text h4 {
        font-size: 16px;
    }
    
    .cta-highlight-text p {
        font-size: 13px;
    }
    
    .benefits-list li {
        padding: 12px;
        font-size: 14px;
    }
    
    .urgency-badge {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .btn-cta-final {
        padding: 20px 40px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .urgency-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .redline-title {
        font-size: 32px;
    }
    
    .stat-card {
        padding: 24px 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .trigger-card h3 {
        font-size: 18px;
    }
    
    .trigger-card p {
        font-size: 14px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-info h4 {
        font-size: 16px;
    }
    
    .result-value {
        font-size: 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}


/* Form Multi-Step Styles */
.lead-form {
    position: relative;
    min-height: 500px;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

.form-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group select option {
    background: #ffffff;
    color: #000;
    padding: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6);
}

.btn-back {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
}

.btn-next svg,
.btn-back svg,
.btn-submit svg {
    width: 20px;
    height: 20px;
}

.form-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Investment Info */
.investment-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 166, 0.05));
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.investment-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.investment-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.investment-amount {
    font-size: 32px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
}

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

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--accent-gold);
}

.radio-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-label strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.radio-label small {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Progress Bar */
.form-progress {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 33.33%;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-title {
        font-size: 22px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .form-buttons {
        flex-direction: column-reverse;
    }
    
    .btn-next,
    .btn-back,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .investment-value {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .investment-amount {
        font-size: 28px;
    }
    
    .radio-option {
        padding: 16px;
    }
}


/* Mensagens de Sucesso e Erro */
.success-message-overlay,
.error-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.success-message-overlay.show,
.error-message-overlay.show {
    opacity: 1;
}

.success-message-content,
.error-message-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.95));
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.success-message-overlay.show .success-message-content,
.error-message-overlay.show .error-message-content {
    transform: scale(1);
}

.success-icon,
.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.error-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.success-icon svg,
.error-icon svg {
    width: 48px;
    height: 48px;
    color: #000;
}

.success-message-content h2,
.error-message-content h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 16px;
    line-height: 1.2;
}

.error-message-content h2 {
    color: #ef4444;
}

.success-message-content p,
.error-message-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.success-note {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

@media (max-width: 768px) {
    .success-message-content,
    .error-message-content {
        padding: 36px 28px;
    }
    
    .success-icon,
    .error-icon {
        width: 64px;
        height: 64px;
    }
    
    .success-icon svg,
    .error-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .success-message-content h2,
    .error-message-content h2 {
        font-size: 24px;
    }
    
    .success-message-content p,
    .error-message-content p {
        font-size: 14px;
    }
}
