/* Inter Font - Local */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/Inter-Black.woff2') format('woff2');
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0c0a09;
    color: #e5e7eb;
}

.gradient-text {
    background: -webkit-linear-gradient(45deg, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bg {
    position: relative;
    overflow: hidden;
    background-color: #111827;
    background-image: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.15), transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5), 0 0 15px rgba(236, 72, 153, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.8), 0 0 25px rgba(236, 72, 153, 0.8);
}

.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.ai-background .line {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(79, 70, 229, 0.3), rgba(236, 72, 153, 0.3), transparent);
    width: 1px;
    animation: move-up 20s infinite linear;
}

@keyframes move-up {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background-color: #374151;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#veo-intro,
#ferramentas-ia {
    position: relative;
    height: 150vh;
    opacity: 1 !important;
    visibility: visible !important;
}

.veo-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veo-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    color: white;
    text-align: center;
    z-index: 10;
}

.veo-card {
    background: rgba(10, 8, 9, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    visibility: visible !important;
}

.flow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('https://storage.googleapis.com/deepmind-media/Flow/Flow_Sizzle_Thumbnail_1280_x_720_.width-700.format-webp.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1) !important;
    filter: blur(0px) brightness(0.7) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sheen-card {
    position: relative;
    overflow: hidden;
}

.sheen-card::after {
    content: '';
    position: absolute;
    top: 0;
    transform: translateX(-150%) skewX(-25deg);
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}

.sheen-card:hover::after {
    transform: translateX(250%) skewX(-25deg);
}

#depoimento-imgs-container img {
    max-height: 220px;
    width: auto;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    background: #18181b;
    object-fit: contain;
    transition: box-shadow 0.3s;
}
#depoimento-imgs-container img:hover {
    box-shadow: 0 4px 32px #4F46E5, 0 4px 32px #EC4899;
}

#depoimentos-carousel-img {
    height: 260px;
    display: flex;
    align-items: center;
}

#depoimento-imgs-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 640px) {
    #depoimentos-carousel-img {
        height: 200px;
    }
    #depoimento-imgs-container img {
        max-width: 90vw;
        max-height: 160px;
    }
}
@media (min-width: 641px) and (max-width: 1023px) {
    #depoimentos-carousel-img {
        height: 220px;
    }
    #depoimento-imgs-container img {
        max-width: 45vw;
        max-height: 180px;
    }
}
@media (min-width: 1024px) {
    #depoimentos-carousel-img {
        height: 260px;
    }
    #depoimento-imgs-container img {
        max-width: 30vw;
        max-height: 220px;
    }
}

/* Tool Badges - Hero Section */
.tool-badge {
    transition: all 0.3s ease;
}

.tool-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* Proof Section - Prova Social */
.proof-section {
    background: linear-gradient(180deg, #000000 0%, #050509 100%);
}

.video-card {
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.2);
}

.video-card video {
    background: #0a0a0a;
}

.insight-card {
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-2px);
    border-color: rgba(79, 70, 229, 0.5);
}

/* Tool Showcase Cards */
.tool-showcase-card {
    transition: all 0.3s ease;
}

.tool-showcase-card:hover {
    transform: translateY(-4px);
}

/* Method Section */
.method-section {
    background: linear-gradient(180deg, #111827 0%, #0c0a09 100%);
}

/* ========================================
   IMMERSIVE HERO SECTION
   ======================================== */

.hero-immersive {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

/* Purple Gradient Overlay - Darker for better contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(30, 10, 50, 0.85) 0%,
        rgba(40, 15, 70, 0.80) 30%,
        rgba(30, 10, 55, 0.80) 50%,
        rgba(15, 5, 30, 0.90) 70%,
        rgba(10, 10, 15, 0.98) 100%
    );
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 120px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animated Logo */
.hero-logo {
    margin-bottom: 32px;
}

.hero-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 50%, #4f46e5 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Main Title */
.hero-title {
    font-size: clamp(1.6rem, 3.8vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 24px auto;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #e879f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 600;
}

/* Tool Badges */
.hero-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tool-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
}

.hero-tool-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    filter: brightness(1.1);
}

.hero-tool-badge:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-tool-badge-highlight {
    border-color: rgba(129, 140, 248, 0.5);
    box-shadow: 0 0 30px rgba(129, 140, 248, 0.2);
}

.hero-tool-badge-highlight:hover {
    border-color: rgba(232, 121, 249, 0.5);
    box-shadow: 0 0 40px rgba(232, 121, 249, 0.3);
}

/* hero-tool-badge-highlight mantém apenas borda e sombra especiais */

/* CTA Section */
.hero-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* CTA Button */
.hero-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    box-shadow:
        0 4px 15px rgba(79, 70, 229, 0.4),
        0 8px 30px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(79, 70, 229, 0.4),
            0 8px 30px rgba(236, 72, 153, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 4px 25px rgba(79, 70, 229, 0.6),
            0 8px 50px rgba(236, 72, 153, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    background-position: right center;
    box-shadow:
        0 8px 25px rgba(79, 70, 229, 0.5),
        0 16px 50px rgba(236, 72, 153, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta-text {
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
}

.hero-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: shine-sweep 3s ease-in-out infinite;
}

@keyframes shine-sweep {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Date Badge */
.hero-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #818cf8;
}

.hero-date-icon svg {
    width: 100%;
    height: 100%;
}

.hero-date-text {
    color: #ffffff;
}

.hero-date-separator {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.hero-date-time {
    color: #e879f9;
    font-weight: 700;
}

.hero-date-live {
    color: #34d399;
    font-weight: 700;
    position: relative;
}

.hero-date-live::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.5); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-indicator svg {
    width: 100%;
    height: 100%;
}

/* Bottom Gradient Transition */
.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

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

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-up-delay {
    animation: slideUp 1s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-scale-in {
    animation: scaleIn 0.8s ease 0.8s forwards;
    opacity: 0;
    transform: scale(0.9);
}

.animate-bounce-slow {
    animation: bounceSlow 2s ease-in-out infinite;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceSlow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   PHONE VIDEO FRAMES - Dobra 02
   ======================================== */

.phone-video-frame {
    position: relative;
    width: 180px;
    aspect-ratio: 9 / 16;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 24px;
    padding: 6px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.phone-video-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    z-index: 10;
}

.phone-video-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(79, 70, 229, 0.3),
        0 0 0 1px rgba(129, 140, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
    background-size: 200% 200%;
    animation: video-loading 2s ease infinite;
}

/* Hide ALL video controls completely - AGGRESSIVE */
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-fullscreen-button {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

video::-moz-media-controls {
    display: none !important;
    visibility: hidden !important;
}

/* Phone video specific - no poster, pure video */
.phone-video {
    object-fit: cover;
    background: #000;
    display: block;
}

/* Hide hero video controls too */
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
    -webkit-appearance: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hero-video::-moz-media-controls {
    display: none !important;
}

@keyframes video-loading {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CTA Button with Glow */
.cta-button-glow {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(147, 51, 234, 0.4),
        0 8px 40px rgba(236, 72, 153, 0.3);
    animation: cta-glow-pulse 2s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(147, 51, 234, 0.4),
            0 8px 40px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow:
            0 4px 30px rgba(147, 51, 234, 0.6),
            0 8px 60px rgba(236, 72, 153, 0.5);
    }
}

.cta-button-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 30px rgba(147, 51, 234, 0.5),
        0 12px 60px rgba(236, 72, 153, 0.4);
}

/* Insight Cards Modern */
.insight-card-modern {
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.insight-card-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(129, 140, 248, 0.3);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2);
}

.insight-card-modern img {
    transition: transform 0.3s ease;
}

.insight-card-modern:hover img {
    transform: scale(1.05);
}

/* Responsive Phone Frames - usando aspect-ratio 9:16 */
@media (max-width: 640px) {
    .phone-video-frame {
        width: 100px;
        /* aspect-ratio mantém proporção 9:16 automaticamente */
    }
}

@media (min-width: 641px) and (max-width: 767px) {
    .phone-video-frame {
        width: 140px;
    }
}

@media (min-width: 768px) {
    .phone-video-frame {
        width: 180px;
    }
}

@media (min-width: 1024px) {
    .phone-video-frame {
        width: 200px;
    }
}

/* ========================================
   HERO RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-logo-text {
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 32px;
    }

    .hero-tools {
        gap: 8px;
        margin-bottom: 36px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .hero-tool-badge {
        flex: 0 1 calc(33.333% - 10px);
        min-width: 0;
        max-width: none;
    }


    .hero-cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .hero-date-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 20px;
        gap: 8px;
        font-size: 0.75rem;
    }

    .hero-scroll-indicator {
        bottom: 24px;
    }
}

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

    .hero-tools {
        gap: 6px;
    }

    .hero-tool-badge {
        flex: 0 1 calc(33.333% - 8px);
    }

    .hero-cta-button {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    .hero-date-badge {
        gap: 6px;
    }

    .hero-date-live::before {
        display: none;
    }
}

/* ============================================
   SMOOTH SECTION TRANSITIONS - Seamless Blending
   ============================================ */

/* Base section styling */
section {
    position: relative;
    overflow: visible;
}

/* Universal dark base for all sections */
:root {
    --section-dark: #050508;
    --section-mid: #0a0a10;
    --section-indigo: #1e1b4b;
}

/* Proof Section - Fades from hero black */
.proof-section {
    background: var(--section-dark) !important;
    position: relative;
}

.proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom,
        rgba(5, 5, 8, 1) 0%,
        rgba(5, 5, 8, 0.8) 40%,
        rgba(5, 5, 8, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Comparison Section (Indigo) - Smooth entry and exit */
section.bg-indigo-950 {
    position: relative;
    background: linear-gradient(180deg,
        var(--section-dark) 0%,
        var(--section-indigo) 15%,
        var(--section-indigo) 85%,
        var(--section-dark) 100%
    ) !important;
    margin-top: -1px;
}

/* Method Section - Dark with subtle purple */
.method-section,
section:has(h2:contains("Eu vou dar uma aula")) {
    background: linear-gradient(180deg,
        var(--section-dark) 0%,
        #080810 50%,
        var(--section-dark) 100%
    );
}

/* Mentor Section */
.mentor-section {
    background: linear-gradient(180deg,
        var(--section-dark) 0%,
        var(--section-mid) 50%,
        var(--section-dark) 100%
    );
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(180deg,
        var(--section-dark) 0%,
        #08080f 50%,
        var(--section-dark) 100%
    );
}

/* Depoimentos section */
.depoimentos-section {
    background: var(--section-dark);
    position: relative;
}

/* Audience section (Para quem é) - flat dark to blend with method/mentor */
#para-quem {
    background: var(--section-dark);
}

/* Ferramenta/Conteudo section */
.ferramenta-section {
    background: linear-gradient(180deg,
        var(--section-dark) 0%,
        #0a0a12 30%,
        #0a0a12 70%,
        var(--section-dark) 100%
    );
}

/* Processo section (Na Prática) - Indigo theme */
.processo-section {
    background: linear-gradient(180deg,
        var(--section-dark) 0%,
        var(--section-indigo) 20%,
        var(--section-indigo) 80%,
        var(--section-dark) 100%
    );
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg,
        var(--section-dark) 0%,
        #0c0c14 50%,
        #080810 100%
    ) !important;
}

.footer-section {
    background:
        radial-gradient(circle at top center, rgba(129, 140, 248, 0.22) 0, transparent 55%),
        linear-gradient(180deg,
            #050508 0%,
            #050508 35%,
            #02010a 100%
        ) !important;
    border-top: 1px solid rgba(129, 140, 248, 0.4);
    box-shadow: 0 -10px 40px rgba(79, 70, 229, 0.35);
}

/* Mask overlay for smoother blending on all sections */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(5, 5, 8, 0.3) 50%,
        rgba(5, 5, 8, 0.6) 100%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ============================================
   PREMIUM PRICING CARD
   ============================================ */

.pricing-card-premium {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.pricing-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 25%, #e879f9 50%, #c084fc 75%, #818cf8 100%);
    background-size: 300% 300%;
    border-radius: 28px;
    animation: pricing-glow 4s ease infinite;
    filter: blur(2px);
    opacity: 0.8;
}

@keyframes pricing-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pricing-card-inner {
    position: relative;
    background: linear-gradient(180deg, rgba(30, 20, 50, 0.95) 0%, rgba(15, 10, 30, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 26px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #818cf8 0%, #e879f9 100%);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: white;
    box-shadow: 0 4px 20px rgba(129, 140, 248, 0.4);
}

.pricing-date-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.pricing-date-icon {
    width: 48px;
    height: 48px;
    background: rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-date-icon svg {
    width: 24px;
    height: 24px;
    color: #818cf8;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(129, 140, 248, 0.3) 50%, transparent 100%);
    margin: 20px 0;
}

.pricing-price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-value {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #c084fc 50%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pricing-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #e879f9 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(129, 140, 248, 0.4);
    text-decoration: none;
}

.pricing-cta-button:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(129, 140, 248, 0.5);
}

.pricing-trust {
    margin-top: 20px;
    text-align: center;
}
