/* ========================================
   VDM - VIVENDO DE MÉTODOS
   Landing Page Styles
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors - Brand Guide VDM */
    --black-absolute: #050505;
    --graphite-deep: #2C2D32;
    --orange-vibrant: #FF7C00;
    --scarlet-red: #DE1C02;
    --white: #FFFFFF;
    --gray-light: #A0A0A0;
    --gray-medium: #6B6B6B;
    
    /* Derived Colors */
    --card-bg: rgba(44, 45, 50, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --orange-glow: rgba(255, 124, 0, 0.3);
    --scarlet-glow: rgba(222, 28, 2, 0.3);
    
    /* Typography */
    --font-heading: 'BBH Sans', 'Gilroy', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Zalando Sans', 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes - Mobile First */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--orange-glow);
}

/* ========== CSS RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black-absolute);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ========== UTILITY CLASSES ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.highlight {
    color: var(--orange-vibrant);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange-vibrant);
    background: rgba(255, 124, 0, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-base);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn--primary {
    background: var(--orange-vibrant);
    color: var(--white);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn--primary:hover {
    background: var(--scarlet-red);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 60px var(--scarlet-glow);
}

.btn--primary:active {
    transform: translateY(0) scale(0.98);
}

.btn--large {
    font-size: var(--text-lg);
    padding: var(--space-lg) var(--space-2xl);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../imagens/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.5) 50%, rgba(5, 5, 5, 0.85) 100%);
}

.hero__geometric {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.5;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero__logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.hero__badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--scarlet-red);
    border: 1px solid rgba(222, 28, 2, 0.4);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    background: rgba(222, 28, 2, 0.08);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.hero__cta {
    margin-bottom: var(--space-3xl);
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
    padding: var(--space-md);
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========== DELAY ESPORTIVO SECTION ========== */
.delay-esportivo {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--black-absolute);
    overflow: hidden;
}

.delay-esportivo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 0% 30%, rgba(222, 28, 2, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 70%, rgba(255, 124, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.delay-esportivo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--scarlet-red) 30%, var(--scarlet-red) 70%, transparent 100%);
}

.delay-esportivo__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    align-items: center;
}

.delay-esportivo__content {
    flex: 1;
}

.delay-esportivo__header {
    margin-bottom: var(--space-xl);
}

.delay-esportivo__alert {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--scarlet-red);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.delay-esportivo__alert svg {
    width: 48px;
    height: 48px;
    color: var(--scarlet-red);
    animation: pulse-alert 2s ease-in-out infinite;
}

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

.delay-esportivo__text {
    font-size: var(--text-lg);
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.delay-esportivo__text strong {
    color: var(--white);
}

.delay-esportivo__text--highlight {
    color: var(--white);
    font-size: var(--text-xl);
}

.delay-esportivo__text--highlight strong {
    color: var(--orange-vibrant);
}

.delay-esportivo__exclusivo {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: 
        linear-gradient(135deg, rgba(255, 124, 0, 0.1) 0%, rgba(5, 5, 5, 0.95) 50%, rgba(222, 28, 2, 0.08) 100%);
    border: 1px solid rgba(255, 124, 0, 0.3);
    border-radius: var(--radius-xl);
    margin-top: var(--space-xl);
}

.delay-esportivo__exclusivo-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 124, 0, 0.15);
    border-radius: var(--radius-lg);
}

.delay-esportivo__exclusivo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange-vibrant);
}

.delay-esportivo__exclusivo-content {
    flex: 1;
}

.delay-esportivo__exclusivo-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-vibrant);
    margin-bottom: var(--space-sm);
}

.delay-esportivo__exclusivo-content p {
    font-size: var(--text-base);
    color: var(--gray-light);
    line-height: 1.7;
}

.delay-esportivo__image {
    position: relative;
    flex-shrink: 0;
    max-width: 100%;
}

.delay-esportivo__image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 124, 0, 0.4);
    box-shadow: 0 8px 40px rgba(222, 28, 2, 0.3), 0 0 80px rgba(255, 124, 0, 0.15);
}

.delay-esportivo__image-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    background: var(--scarlet-red);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(222, 28, 2, 0.5);
    padding: var(--space-sm);
}

.delay-esportivo__image-badge span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.1;
    max-width: 95px;
}

.delay-esportivo__image-badge strong {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--white);
    line-height: 0.9;
    margin: 2px 0;
}

/* ========== VIP BENEFITS CAROUSEL SECTION ========== */
.vip-benefits {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--black-absolute);
    overflow: hidden;
}

.vip-benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(255, 124, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(222, 28, 2, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vip-benefits__carousel-container {
    position: relative;
    padding: 0 var(--space-md);
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.vip-benefits__carousel {
    width: 100%;
    overflow: hidden;
    padding: var(--space-xl) 0;
    container-type: inline-size;
}

.vip-benefits__track {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-controls {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    width: 100%;
    margin-top: var(--space-md);
}

.carousel-control {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 124, 0, 0.1);
    border: 1px solid rgba(255, 124, 0, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-control:hover {
    background: var(--scarlet-red);
    border-color: var(--scarlet-red);
    box-shadow: 0 0 20px rgba(222, 28, 2, 0.4);
    transform: scale(1.1);
}

.carousel-control svg {
    width: 28px;
    height: 28px;
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Removendo animação antiga */
@keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.vip-card {
    flex: 0 0 100cqw;
    background: 
        linear-gradient(180deg, rgba(255, 124, 0, 0.08) 0%, rgba(5, 5, 5, 0.98) 40%);
    border: 1px solid rgba(255, 124, 0, 0.25);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.vip-card:hover {
    transform: translateY(-6px);
    border-color: var(--scarlet-red);
    box-shadow: 0 12px 40px rgba(222, 28, 2, 0.4);
}

.vip-card__image {
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 124, 0, 0.15) 0%, rgba(10, 10, 10, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vip-card__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.vip-card__placeholder {
    width: 64px;
    height: 64px;
    color: var(--gray-medium);
    opacity: 0.5;
}

.vip-card__placeholder svg {
    width: 100%;
    height: 100%;
}

.vip-card__content {
    padding: var(--space-lg);
    text-align: center;
}

.vip-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* ========== BENEFÍCIOS SECTION ========== */
.beneficios {
    padding: var(--space-4xl) 0;
    position: relative;
    background: var(--black-absolute);
    overflow: hidden;
    border-bottom: 2px solid var(--scarlet-red);
}

.beneficios::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 0% 0%, rgba(255, 124, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 100% 100%, rgba(255, 124, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 1px,
            rgba(255, 124, 0, 0.02) 1px,
            rgba(255, 124, 0, 0.02) 2px
        );
    pointer-events: none;
}

.beneficios::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(255, 124, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.beneficios__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.beneficio-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl);
    background: 
        linear-gradient(135deg, rgba(255, 124, 0, 0.08) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(255, 124, 0, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 124, 0, 0.2);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
    z-index: 1;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-vibrant), transparent);
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.beneficio-card:hover {
    transform: translateY(-4px);
    border-color: var(--scarlet-red);
    box-shadow: 0 8px 40px rgba(222, 28, 2, 0.3);
}

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

.beneficio-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 124, 0, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    color: var(--orange-vibrant);
}

.beneficio-card__icon svg {
    width: 28px;
    height: 28px;
}

.beneficio-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.beneficio-card__description {
    font-size: var(--text-sm);
    color: var(--gray-light);
    line-height: 1.7;
}

/* ========== PROVA SOCIAL SECTION ========== */
.prova-social {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--black-absolute);
}

.prova-social__carousel-container {
    position: relative;
    padding: 0 var(--space-md);
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.prova-social__carousel {
    width: 100%;
    overflow: hidden;
    padding: var(--space-xl) 0;
    container-type: inline-size;
}

.prova-social__track {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    max-width: 95%;
    max-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 2px solid var(--orange-vibrant);
    box-shadow: 0 0 50px rgba(255, 124, 0, 0.3);
}

.lightbox__close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.lightbox__close:hover {
    color: var(--orange-vibrant);
    transform: scale(1.1);
}

.prova-card {
    flex: 0 0 100cqw;
    background: 
        linear-gradient(180deg, rgba(255, 124, 0, 0.08) 0%, rgba(5, 5, 5, 0.98) 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 124, 0, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: zoom-in;
}

.prova-card:hover {
    transform: translateY(-4px);
    border-color: var(--scarlet-red);
    box-shadow: 0 8px 32px rgba(222, 28, 2, 0.25);
}

.prova-card__image {
    aspect-ratio: 9/16;
    background: 
        linear-gradient(135deg, rgba(255, 124, 0, 0.15) 0%, rgba(10, 10, 10, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prova-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.prova-card:hover .prova-card__image img {
    transform: scale(1.05);
}

.prova-card__placeholder {
    width: 64px;
    height: 64px;
    color: var(--gray-medium);
}

.prova-card__placeholder svg {
    width: 100%;
    height: 100%;
}

/* ========== OFERTA SECTION ========== */
.oferta {
    padding: var(--space-4xl) 0;
    position: relative;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(255, 124, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(255, 124, 0, 0.05) 0%, transparent 50%),
        var(--black-absolute);
    overflow: hidden;
}

.oferta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.008) 1px,
            rgba(255, 255, 255, 0.008) 2px
        );
    pointer-events: none;
}

.oferta__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.oferta__content {
    text-align: center;
}

.oferta__lista {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.oferta__lista li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-base);
    color: var(--gray-light);
}

.oferta__lista svg {
    width: 20px;
    height: 20px;
    color: var(--orange-vibrant);
    flex-shrink: 0;
}

.oferta__box {
    position: relative;
    background: 
        linear-gradient(145deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.4) 100%),
        url('../imagens/card-pagamento.png');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid var(--orange-vibrant);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: 0 0 60px rgba(255, 124, 0, 0.3), 0 0 120px rgba(255, 124, 0, 0.1);
}

.oferta__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--orange-vibrant);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.oferta__titulo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
    margin-top: var(--space-md);
    line-height: 1.2;
}

.oferta__subtitulo {
    font-size: var(--text-sm);
    color: var(--gray-light);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.oferta__preco {
    margin-bottom: var(--space-lg);
}

.oferta__preco-intro {
    display: block;
    font-size: var(--text-base);
    color: var(--gray-light);
    margin-bottom: var(--space-sm);
}

.oferta__preco-por {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
}

.oferta__preco-por strong {
    font-size: var(--text-6xl);
    font-weight: 900;
    line-height: 1;
}

.oferta__preco-por small {
    font-size: var(--text-2xl);
    font-weight: 400;
}

.oferta__preco-avista {
    display: block;
    font-size: var(--text-sm);
    color: var(--gray-light);
    margin-top: var(--space-md);
}

.oferta__garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--gray-light);
    margin-bottom: var(--space-xl);
}

.oferta__garantia svg {
    width: 18px;
    height: 18px;
    color: var(--orange-vibrant);
}

.oferta__cta {
    width: 100%;
    margin-bottom: var(--space-xl);
    font-size: var(--text-lg);
    padding: var(--space-lg) var(--space-2xl);
}

.oferta__trust-badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.oferta__trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.65rem;
    color: var(--gray-light);
    text-align: center;
    line-height: 1.2;
}

.oferta__trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--gray-light);
    flex-shrink: 0;
}

.oferta__trust-badge span {
    color: var(--gray-light);
}

.oferta__trust-badge strong {
    color: var(--white);
    font-weight: 700;
    font-size: 0.7rem;
}

.oferta__footer-text {
    font-size: var(--text-xs);
    color: var(--gray-light);
    line-height: 1.5;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.oferta__footer-text strong {
    color: var(--orange-vibrant);
}

/* ========== AUTOR SECTION ========== */
.autor {
    padding: var(--space-4xl) 0;
    position: relative;
    background: var(--black-absolute);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 124, 0, 0.3);
}

.autor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 0% 50%, rgba(255, 124, 0, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 0%, rgba(255, 124, 0, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 1px,
            rgba(255, 124, 0, 0.015) 1px,
            rgba(255, 124, 0, 0.015) 2px
        );
    pointer-events: none;
}

.autor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-vibrant), transparent);
}

.autor__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
    text-align: center;
}

.autor__image {
    position: relative;
}

.autor__placeholder {
    width: 180px;
    height: 180px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 124, 0, 0.2) 0%, var(--black-absolute) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--orange-vibrant);
    box-shadow: 0 0 40px rgba(255, 124, 0, 0.3);
}

.autor__placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--gray-medium);
}

.autor__badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--scarlet-red);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    line-height: 1.2;
}

.autor__badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
}

.autor__badge small {
    font-size: var(--text-xs);
    opacity: 0.9;
}

.autor__content {
    max-width: 600px;
}

.autor__nome {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.autor__bio {
    font-size: var(--text-base);
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.autor__credenciais {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--card-border);
}

.autor__credencial {
    text-align: center;
}

.autor__credencial strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--orange-vibrant);
    margin-bottom: var(--space-xs);
}

.autor__credencial span {
    font-size: var(--text-sm);
    color: var(--gray-light);
}

/* ========== FAQ SECTION ========== */
.faq {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--black-absolute);
}

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

.faq__item {
    border-bottom: 1px solid var(--card-border);
}

.faq__item:first-child {
    border-top: 1px solid var(--card-border);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition-fast);
}

.faq__question:hover {
    color: var(--orange-vibrant);
}

.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--scarlet-red);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding-bottom: var(--space-lg);
    font-size: var(--text-base);
    color: var(--gray-light);
    line-height: 1.8;
}

/* ========== FOOTER ========== */
.footer {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--black-absolute);
    border-top: 3px solid var(--scarlet-red);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 150% at 50% 0%, rgba(255, 124, 0, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 1px,
            rgba(255, 124, 0, 0.02) 1px,
            rgba(255, 124, 0, 0.02) 2px
        );
    pointer-events: none;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--card-border);
}

.footer__brand {
    text-align: center;
}

.footer__logo {
    max-width: 120px;
    height: auto;
}

.footer__tagline {
    font-size: var(--text-sm);
    color: var(--gray-light);
    margin-top: var(--space-xs);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    color: var(--gray-light);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--orange-vibrant);
    border-color: var(--orange-vibrant);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    text-align: center;
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--gray-light);
    margin-bottom: var(--space-md);
}

.footer__disclaimer {
    font-size: var(--text-xs);
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== SECTION SEPARATORS ========== */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--orange-vibrant) 20%, var(--scarlet-red) 50%, var(--orange-vibrant) 80%, transparent 100%);
    z-index: 10;
}

.vip-benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--orange-vibrant) 30%, var(--orange-vibrant) 70%, transparent 100%);
}

.prova-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--orange-vibrant) 30%, var(--orange-vibrant) 70%, transparent 100%);
}

.prova-social::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--orange-vibrant) 30%, var(--orange-vibrant) 70%, transparent 100%);
}

.oferta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--scarlet-red) 15%, var(--scarlet-red) 85%, transparent 100%);
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 124, 0, 0.4) 30%, rgba(255, 124, 0, 0.4) 70%, transparent 100%);
}

/* ========== DECORATIVE ELEMENTS ========== */
.decorative-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    max-width: 500px;
    width: 40vw;
    height: auto;
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Elemento 1 tem fundo branco - blend mode para integrar */
.decorative-element.element--blend {
    mix-blend-mode: multiply;
    opacity: 0.5;
}

/* Posições */
.decorative-element.element--top-right {
    top: -10%;
    right: -15%;
}

.decorative-element.element--top-left {
    top: -10%;
    left: -15%;
}

.decorative-element.element--bottom-right {
    bottom: -10%;
    right: -15%;
}

.decorative-element.element--bottom-left {
    bottom: -10%;
    left: -15%;
}

/* Garantir que sections tenham overflow hidden e position relative */
.hero,
.delay-esportivo,
.beneficios,
.oferta,
.faq {
    position: relative;
    overflow: hidden;
}

/* Ajuste específico para o elemento da seção FAQ - menos à direita */
.faq .decorative-element.element--top-right {
    right: -5%;
    top: 5%;
    opacity: 0.3;
}

/* Responsividade - elementos menores em tablet */
@media (max-width: 1024px) {
    .decorative-element {
        opacity: 0.25;
        max-width: 350px;
        width: 50vw;
    }
}

/* Ocultar em mobile para melhor performance */
@media (max-width: 768px) {
    .decorative-element {
        display: none;
    }

    .hero__logo {
        margin-left: auto;
        margin-right: auto;
    }
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== MEDIA QUERIES ========== */

/* Tablet */
@media (min-width: 768px) {
    .vip-benefits__carousel-container,
    .prova-social__carousel-container {
        flex-direction: row;
        padding: 0 var(--space-xl);
    }

    .carousel-controls {
        display: contents;
    }

    .vip-benefits__carousel,
    .prova-social__carousel {
        order: 2;
    }

    .carousel-control.prev {
        order: 1;
    }

    .carousel-control.next {
        order: 3;
    }

    .carousel-control {
        width: 48px;
        height: 48px;
    }

    .carousel-control svg {
        width: 24px;
        height: 24px;
    }

    :root {
        --text-3xl: 2.5rem;
        --text-4xl: 3rem;
        --text-5xl: 3.5rem;
    }
    
    .container {
        padding: 0 var(--space-xl);
    }
    
    /* Hero */
    .hero__title {
        font-size: var(--text-5xl);
    }
    
    .hero__stats {
        gap: var(--space-3xl);
    }
    
    .hero__stat-number {
        font-size: var(--text-3xl);
    }
    
    /* Delay Esportivo */
    .delay-esportivo__wrapper {
        flex-direction: row-reverse;
        gap: var(--space-3xl);
        align-items: center;
    }
    
    .delay-esportivo__content {
        flex: 1;
    }
    
    .delay-esportivo__image {
        flex: 0 0 45%;
    }
    
    .delay-esportivo__alert {
        font-size: var(--text-2xl);
    }
    
    /* VIP Benefits - Show ~2-3 cards on tablet */
    .vip-card {
        flex: 0 0 calc((100cqw - 48px) / 3);
        max-width: 280px;
    }
    
    .vip-card__title {
        font-size: var(--text-lg);
    }
    
    /* Benefícios */
    .beneficios__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Prova Social - Show 2 cards on tablet to keep them large */
    .prova-card {
        flex: 0 0 calc((100cqw - 24px) / 2);
        max-width: 380px;
    }
    
    /* Oferta */
    .oferta__wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .oferta__content {
        flex: 1;
        text-align: left;
    }
    
    .oferta__lista {
        margin-left: 0;
    }
    
    .oferta__box {
        flex: 0 0 380px;
    }
    
    /* Autor */
    .autor__wrapper {
        flex-direction: row;
        text-align: left;
    }
    
    .autor__credenciais {
        justify-content: flex-start;
    }
    
    /* FAQ */
    .faq__question {
        font-size: var(--text-lg);
    }
    
    /* Footer */
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer__brand {
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    :root {
        --text-4xl: 3.5rem;
        --text-5xl: 4rem;
        --text-6xl: 5rem;
    }
    
    .section-title {
        font-size: var(--text-4xl);
    }
    
    /* Hero */
    .hero {
        padding: var(--space-4xl) 0;
    }
    
    .hero__title {
        font-size: var(--text-6xl);
    }
    
    .hero__subtitle {
        font-size: var(--text-xl);
    }
    
    /* Delay Esportivo */
    .delay-esportivo__alert {
        font-size: var(--text-3xl);
    }
    
    .delay-esportivo__text {
        font-size: var(--text-xl);
    }
    
    .delay-esportivo__text--highlight {
        font-size: var(--text-2xl);
    }
    
    .delay-esportivo__image-badge {
        width: 120px;
        height: 120px;
    }

    .delay-esportivo__image-badge span {
        font-size: var(--text-xs);
        max-width: 110px;
    }
    
    .delay-esportivo__image-badge strong {
        font-size: var(--text-3xl);
    }
    
    /* VIP Benefits - Show 4 cards on desktop */
    .vip-card {
        flex: 0 0 calc((100cqw - 72px) / 4);
        max-width: 350px;
    }
    
    .vip-card__title {
        font-size: var(--text-lg);
    }
    
    /* Benefícios */
    .beneficios__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Prova Social - Show 3 cards on desktop for better visibility */
    .prova-card {
        flex: 0 0 calc((100cqw - 48px) / 3);
        max-width: 480px;
    }
    
    .prova-card__image {
        aspect-ratio: 9/16;
    }
    
    /* Oferta */
    .oferta__box {
        flex: 0 0 450px;
        padding: var(--space-3xl);
    }
    
    .oferta__titulo {
        font-size: var(--text-3xl);
    }
    
    .oferta__preco-por strong {
        font-size: 5rem;
    }
    
    /* Autor */
    .autor__placeholder {
        width: 220px;
        height: 220px;
    }
    
    .autor__nome {
        font-size: var(--text-4xl);
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
    
    .hero__geometric {
        width: 1000px;
        height: 1000px;
    }
}

