/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo Black', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Variáveis CSS para cores */
:root {
    --gold: #D4AF37; /* Dourado original do React */
    --gold-light: #FFD700; /* Amarelo dourado original do React */
    --gold-dark: #B8860B; /* Dourado escuro original do React */
    --gold-20: rgba(212, 175, 55, 0.2);
    --gold-25: rgba(212, 175, 55, 0.25);
    --gold-30: rgba(212, 175, 55, 0.3);
    --gold-40: rgba(212, 175, 55, 0.4);
    --gold-50: rgba(212, 175, 55, 0.5);
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-800: #1f2937;
}

/* Utilitários responsivos */
.min-h-screen {
    min-height: 100vh;
    min-height: 100dvh; /* Para mobile */
}

.bg-black {
    background-color: #000;
}

.text-white {
    color: #fff;
}

.text-gray-300 {
    color: var(--gray-300);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.overflow-hidden {
    overflow: hidden;
}

/* Layout responsivo */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
}

/* Grid responsivo automático */
.gap-12 {
    gap: clamp(1rem, 3vw, 3rem);
}

.gap-8 {
    gap: clamp(0.75rem, 2vw, 2rem);
}

.space-y-6 > * + * {
    margin-top: clamp(0.75rem, 2vw, 1.5rem);
}

.space-y-8 > * + * {
    margin-top: clamp(1rem, 2.5vw, 2rem);
}

.space-y-10 > * + * {
    margin-top: clamp(1.25rem, 3vw, 2.5rem);
}

.space-y-12 > * + * {
    margin-top: clamp(1.5rem, 3.5vw, 3rem);
}

/* Espaçamento responsivo automático */
.px-4 {
    padding-left: clamp(0.5rem, 2vw, 1rem);
    padding-right: clamp(0.5rem, 2vw, 1rem);
}

.px-6 {
    padding-left: clamp(0.75rem, 2.5vw, 1.5rem);
    padding-right: clamp(0.75rem, 2.5vw, 1.5rem);
}

.px-8 {
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

.px-16 {
    padding-left: clamp(1rem, 4vw, 4rem);
    padding-right: clamp(1rem, 4vw, 4rem);
}

.px-20 {
    padding-left: clamp(1rem, 5vw, 5rem);
    padding-right: clamp(1rem, 5vw, 5rem);
}

.py-3 {
    padding-top: clamp(0.5rem, 1.5vw, 0.75rem);
    padding-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.py-8 {
    padding-top: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.py-10 {
    padding-top: clamp(2rem, 4vw, 2.5rem);
    padding-bottom: clamp(2rem, 4vw, 2.5rem);
}

.py-12 {
    padding-top: clamp(2.5rem, 5vw, 3rem);
    padding-bottom: clamp(2.5rem, 5vw, 3rem);
}

.py-20 {
    padding-top: clamp(3rem, 8vw, 5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.pt-8 {
    padding-top: clamp(1.5rem, 3vw, 2rem);
}

.pb-8 {
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.mb-4 {
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.mb-6 {
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.mb-16 {
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.mt-8 {
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.ml-2 {
    margin-left: clamp(0.25rem, 1vw, 0.5rem);
}

.ml-3 {
    margin-left: clamp(0.5rem, 1.5vw, 0.75rem);
}

.mr-3 {
    margin-right: clamp(0.5rem, 1.5vw, 0.75rem);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Tamanhos responsivos automáticos */
.w-1\/3 {
    width: 33.333333%;
}

.w-5 {
    width: clamp(1rem, 2.5vw, 1.25rem);
}

.w-6 {
    width: clamp(1.25rem, 3vw, 1.5rem);
}

.w-8 {
    width: clamp(1.5rem, 4vw, 2rem);
}

.w-16 {
    width: clamp(2.5rem, 8vw, 4rem);
}

.w-24 {
    width: clamp(3rem, 12vw, 6rem);
}

.w-48 {
    width: clamp(8rem, 24vw, 12rem);
}

.w-52 {
    width: clamp(8.5rem, 26vw, 13rem);
}

.h-5 {
    height: clamp(1rem, 2.5vw, 1.25rem);
}

.h-6 {
    height: clamp(1.25rem, 3vw, 1.5rem);
}

.h-8 {
    height: clamp(1.5rem, 4vw, 2rem);
}

.h-16 {
    height: clamp(2.5rem, 8vw, 4rem);
}

.h-96 {
    height: clamp(16rem, 48vw, 24rem);
}

.max-w-3xl {
    max-width: clamp(20rem, 96vw, 48rem);
}

.max-w-4xl {
    max-width: clamp(24rem, 112vw, 56rem);
}

.max-w-6xl {
    max-width: clamp(32rem, 144vw, 72rem);
}

.max-w-7xl {
    max-width: clamp(40rem, 160vw, 80rem);
}

/* Tipografia responsiva automática */
.text-base {
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.text-sm {
    font-size: clamp(0.75rem, 1.75vw, 0.875rem);
}

.text-lg {
    font-size: clamp(1rem, 2.25vw, 1.125rem);
}

.text-xl {
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
}

.text-2xl {
    font-size: clamp(1rem, 3vw, 1.5rem);
}

.text-3xl {
    font-size: clamp(1.25rem, 3.75vw, 1.875rem);
}

.text-4xl {
    font-size: clamp(1.5rem, 4.5vw, 2.25rem);
}

.text-5xl {
    font-size: clamp(1.75rem, 6vw, 3rem);
}

.text-6xl {
    font-size: clamp(2rem, 7.5vw, 3.75rem);
}

.text-7xl {
    font-size: clamp(2.5rem, 9vw, 4.5rem);
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.font-light {
    font-weight: 300;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

/* Cores e gradientes */
.bg-gradient-to-r {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
}

.from-gold-30 {
    background: linear-gradient(to right, var(--gold-30), var(--gold-20));
}

.to-gold-20 {
    background: linear-gradient(to right, var(--gold-30), var(--gold-20));
}

.from-gold {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
}

.via-gold-light {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
}

.to-gold-dark {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
}

.from-green-500 {
    background: linear-gradient(to right, var(--green-500), var(--green-600));
}

.to-green-600 {
    background: linear-gradient(to right, var(--green-500), var(--green-600));
}

.hover\:from-green-600:hover {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
}

.hover\:to-green-700:hover {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
}

/* Classes específicas para gradientes */
.bg-gradient-to-r.from-gold-30.to-gold-20 {
    background: linear-gradient(to right, var(--gold-30), var(--gold-20));
}

.bg-gradient-to-r.from-gold.via-gold-light.to-gold-dark {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
}

.bg-gradient-to-r.from-green-500.to-green-600 {
    background: linear-gradient(to right, var(--green-500), var(--green-600));
}

.bg-gradient-to-r.hover\:from-green-600.hover\:to-green-700:hover {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
}

/* Backgrounds */
.bg-gold-20 {
    background-color: var(--gold-20);
}

.bg-gold-40 {
    background-color: var(--gold-40);
}

.bg-green-500 {
    background-color: var(--green-500);
}

.hover\:bg-green-600:hover {
    background-color: var(--green-600);
}

.hover\:bg-gold-40:hover {
    background-color: var(--gold-40);
}

/* Bordas */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border-gold-30 {
    border-color: var(--gold-30);
}

.border-gold-40 {
    border-color: var(--gold-40);
}

.border-gold-50 {
    border-color: var(--gold-50);
}

.border-green-400\/30 {
    border-color: rgba(74, 222, 128, 0.3);
}

.border-gray-800 {
    border-color: var(--gray-800);
}

.border-t {
    border-top-width: 1px;
}

/* Bordas arredondadas */
.rounded-lg {
    border-radius: clamp(0.25rem, 1vw, 0.5rem);
}

.rounded-xl {
    border-radius: clamp(0.375rem, 1.5vw, 0.75rem);
}

.rounded-2xl {
    border-radius: clamp(0.5rem, 2vw, 1rem);
}

.rounded-3xl {
    border-radius: clamp(0.75rem, 3vw, 1.5rem);
}

.rounded-full {
    border-radius: 9999px;
}

/* Sombras */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-gold-25 {
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.25), 0 4px 6px -2px rgba(212, 175, 55, 0.25);
}

.shadow-gold-30 {
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3), 0 4px 6px -2px rgba(212, 175, 55, 0.3);
}

.shadow-gold-50 {
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.5), 0 4px 6px -2px rgba(212, 175, 55, 0.5);
}

.shadow-green-500\/50 {
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.5), 0 4px 6px -2px rgba(16, 185, 129, 0.5);
}

.shadow-green-400\/30 {
    box-shadow: 0 10px 15px -3px rgba(74, 222, 128, 0.3), 0 4px 6px -2px rgba(74, 222, 128, 0.3);
}

/* Efeitos */
.opacity-10 {
    opacity: 0.1;
}

.pointer-events-none {
    pointer-events: none;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.drop-shadow-2xl {
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* Carrossel responsivo */
.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 clamp(0.25rem, 1vw, 0.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    justify-content: flex-start;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 0 clamp(0.125rem, 0.5vw, 0.25rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desktop: 3 slides visíveis */
@media (min-width: 769px) {
    .carousel-slide {
        width: calc(100% / 3);
        min-width: calc(100% / 3);
    }
    
    .carousel-track {
        width: calc(100% * 7 / 3); /* 7 slides * (100% / 3) */
        justify-content: flex-start;
    }
    
    /* Centralizar imagens no desktop */
    .carousel-slide .bg-black {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Centralizar bolinhas no desktop */
    .carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .carousel-dot.active {
        /* Sem box-shadow */
    }
    
    /* Garantir que text-gold-neon funcione no desktop */
    .text-gold-neon {
        background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        background-size: 200% 100%;
        /* Fallback para desktop */
        color: var(--gold-light);
    }
}

/* Mobile: 1 slide visível */
@media (max-width: 768px) {
    .carousel-slide {
        width: 100%;
        min-width: 100%;
    }
    
    .carousel-track {
        width: 700%; /* 7 slides * 100% */
        justify-content: flex-start;
    }
    
    /* Centralizar imagens no mobile */
    .carousel-slide .bg-black {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Ajustes para as imagens dos feedbacks */
.carousel-slide .w-48 {
    width: clamp(6rem, 16vw, 12rem);
    height: auto;
    min-height: clamp(12rem, 32vw, 24rem);
}

.carousel-slide .h-96 {
    height: auto;
    min-height: clamp(12rem, 32vw, 24rem);
}

/* Efeito gradiente para texto dourado (como estava no React) */
.text-gold-neon {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Garantir que funcione em todos os dispositivos */
    display: inline-block;
    background-size: 200% 100%;
    /* Fallback para navegadores que não suportam background-clip */
    color: var(--gold-light);
}

/* Fallback para navegadores que não suportam background-clip */
@supports not (background-clip: text) {
    .text-gold-neon {
        color: var(--gold-light) !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
}

/* Garantir que as imagens do carrossel sejam exibidas corretamente */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: clamp(0.5rem, 2vw, 1rem);
    display: block; /* Garantir que a imagem seja exibida */
    max-width: 100%;
    max-height: 100%;
    /* Forçar exibição da imagem */
    visibility: visible !important;
    opacity: 1 !important;
}

/* CSS específico para a última imagem */
.carousel-slide:last-child img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Container do mockup do celular */
.carousel-slide .bg-black {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: clamp(2px, 1vw, 4px) solid var(--gold-30);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Garantir que as imagens não saiam do container */
}

/* Botões responsivos */
.cta-button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: clamp(280px, 80vw, 400px);
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
    margin: 0 clamp(0.25rem, 1vw, 0.5rem);
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Navegação do carrossel responsiva */
.carousel-nav-button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    padding: clamp(0.25rem, 1vw, 0.5rem);
}

.carousel-nav-button svg {
    width: clamp(0.75rem, 2vw, 1rem);
    height: clamp(0.75rem, 2vw, 1rem);
}

/* Centralizar as bolinhas do carrossel */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    width: clamp(0.375rem, 1.5vw, 0.5rem);
    height: clamp(0.375rem, 1.5vw, 0.5rem);
    margin: 0;
    border-radius: 50%;
    background-color: var(--gold-30);
}

.carousel-dot:hover {
    background-color: var(--gold-50);
}

.carousel-dot.active {
    background-color: var(--gold);
    width: clamp(0.5rem, 2vw, 0.75rem);
    height: clamp(0.5rem, 2vw, 0.75rem);
}

/* Grid responsivo automático - APENAS para seção de vantagens */
.md\:grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 80vw, 300px), 1fr));
    gap: clamp(0.75rem, 2vw, 1.5rem);
    padding: 0 clamp(0.25rem, 1vw, 0.5rem);
    margin: 0 clamp(0.25rem, 1vw, 0.5rem);
}

/* Cards responsivos */
.bg-gold-20 {
    padding: clamp(0.5rem, 2vw, 1rem);
    margin: 0 clamp(0.125rem, 0.5vw, 0.25rem);
    border-radius: clamp(0.25rem, 1vw, 0.5rem);
}

.bg-gold-20 h3 {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    line-height: 1.2;
    margin-bottom: clamp(0.375rem, 1.5vw, 0.5rem);
}

.bg-gold-20 p {
    font-size: clamp(0.625rem, 2vw, 0.875rem);
    line-height: 1.3;
}

.bg-gold-20 .w-16 {
    width: clamp(1.5rem, 4vw, 2rem);
    height: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(0.375rem, 1.5vw, 0.5rem);
}

.bg-gold-20 .w-8 {
    width: clamp(0.75rem, 2vw, 1rem);
    height: clamp(0.75rem, 2vw, 1rem);
}

/* Animações responsivas */
.hero-content {
    animation: fadeInSlide 1s ease-out forwards;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-2.5rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Posicionamento responsivo */
.left-4 {
    left: clamp(0.25rem, 1vw, 1rem);
}

.right-4 {
    right: clamp(0.25rem, 1vw, 1rem);
}

.top-1\/2 {
    top: 50%;
}

/* Transformação */
.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.-translate-x-10 {
    transform: translateX(-2.5rem);
}

.translate-x-0 {
    transform: translateX(0);
}

/* Utilitários adicionais responsivos */
.inline-flex {
    display: inline-flex;
}

.inline {
    display: inline;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.object-cover {
    object-fit: cover;
}

.scale-110 {
    transform: scale(1.1);
}

.transform {
    transform: translateZ(0);
}

.transition-all {
    transition-property: all;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Classe para texto com gradiente */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Classes específicas para texto com gradiente */
.bg-gradient-to-r.from-gold.via-gold-light.to-gold-dark.bg-clip-text {
    background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

/* Remover a animação de brilho */
@keyframes neon-glow {
    from {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8)) 
                drop-shadow(0 0 20px rgba(212, 175, 55, 0.6))
                drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    }
    to {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8)) 
                drop-shadow(0 0 20px rgba(212, 175, 55, 0.6))
                drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    }
}

/* Centralizar as bolinhas do carrossel */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    width: clamp(0.375rem, 1.5vw, 0.5rem);
    height: clamp(0.375rem, 1.5vw, 0.5rem);
    margin: 0;
    border-radius: 50%;
    background-color: var(--gold-30);
}

.carousel-dot:hover {
    background-color: var(--gold-50);
}

.carousel-dot.active {
    background-color: var(--gold);
    min-width: 16px;
    min-height: 16px;
}

/* Espaçamento entre elementos responsivo */
.space-x-2 > * + * {
    margin-left: clamp(0.375rem, 1.5vw, 0.5rem);
}

.space-x-3 > * + * {
    margin-left: clamp(0.5rem, 2vw, 0.75rem);
}

/* Hover states */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:border-gold-50:hover {
    border-color: var(--gold-50);
}

.hover\:bg-green-600:hover {
    background-color: var(--green-600);
}

.hover\:bg-gold-40:hover {
    background-color: var(--gold-40);
}

/* Estados ativos */
.active {
    background-color: var(--gold);
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.5), 0 4px 6px -2px rgba(212, 175, 55, 0.5);
}

/* Melhorias para mobile automático */
@media (max-width: 639px) {
    /* Melhorar área de toque */
    button, .carousel-dot {
        min-height: clamp(32px, 8vw, 44px);
        min-width: clamp(32px, 8vw, 44px);
    }
    
    /* Melhorar legibilidade */
    .text-gray-300, .text-gray-400 {
        color: #e5e7eb;
    }
    
    /* Ajustar espaçamento para toque */
    .space-x-2 > * + * {
        margin-left: clamp(0.5rem, 2vw, 0.75rem);
    }
    
    .space-x-3 > * + * {
        margin-left: clamp(0.75rem, 2.5vw, 1rem);
    }
    
    /* Layout específico para mobile */
    .flex {
        flex-direction: column;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Ajustar containers para mobile */
    .max-w-3xl, .max-w-4xl, .max-w-6xl, .max-w-7xl {
        max-width: 95vw;
        margin: 0 auto;
    }
    
    /* Melhorar espaçamento vertical */
    .py-20 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-12 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .py-8 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    /* Ajustar padding horizontal para mobile */
    .px-20, .px-16, .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Melhorar carrossel mobile */
    .carousel-container {
        padding: 0 0.5rem;
        margin: 0 auto;
        max-width: 95vw;
        justify-content: center;
    }
    
    .carousel-slide {
        padding: 0 0.25rem;
        justify-content: center;
        align-items: center;
    }
    
    /* Corrigir carrossel mobile */
    .carousel-track {
        width: 700%;
        justify-content: flex-start;
    }
    
    .carousel-slide {
        width: 100%;
        min-width: 100%;
    }
    
    /* Centralizar imagens no mobile */
    .carousel-slide .bg-black {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .carousel-slide img {
        object-fit: contain;
        border-radius: 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    /* Ajustar botões para mobile */
    .cta-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        min-height: 48px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* Melhorar navegação do carrossel */
    .carousel-nav-button {
        min-width: 48px;
        min-height: 48px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        backdrop-filter: blur(10px);
    }
    
    .carousel-dot {
        min-width: 12px;
        min-height: 12px;
        margin: 0;
        border-radius: 50%;
        background-color: var(--gold-30);
    }
    
    .carousel-dot:hover {
        background-color: var(--gold-50);
    }
    
    .carousel-dot.active {
        background-color: var(--gold);
        min-width: 16px;
        min-height: 16px;
    }
    
    /* Centralizar bolinhas no mobile */
    .carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        width: 100%;
    }
    
    /* Ajustar cards para mobile */
    .bg-gold-20 {
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 0.75rem;
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    }
    
    /* Melhorar tipografia mobile */
    .text-7xl {
        font-size: 2rem;
        line-height: 1.1;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .text-6xl {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .text-5xl {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .text-4xl {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .text-3xl {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .text-2xl {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .text-xl {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Garantir que text-gold-neon funcione em mobile */
    .text-gold-neon {
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
        -webkit-text-fill-color: initial;
        display: inline-block;
        /* Cor sólida para mobile */
        color: var(--gold-light);
    }
    
    /* Garantir que as imagens sejam exibidas em mobile */
    .carousel-slide img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        border-radius: 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    /* Ajustar espaçamento entre elementos */
    .space-y-6 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-8 > * + * {
        margin-top: 1.5rem;
    }
    
    .space-y-10 > * + * {
        margin-top: 2rem;
    }
    
    .space-y-12 > * + * {
        margin-top: 2.5rem;
    }
    
    /* Melhorar grid de vantagens */
    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Ajustar imagens para mobile */
    .carousel-slide img {
        border-radius: 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    /* Melhorar contraste e legibilidade */
    .text-gray-300 {
        color: #f3f4f6;
    }
    
    .text-gray-400 {
        color: #e5e7eb;
    }
    
    /* Ajustar sombras para mobile */
    .shadow-lg, .shadow-2xl {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* Melhorar bordas arredondadas */
    .rounded-2xl, .rounded-3xl {
        border-radius: 0.75rem;
    }
    
    /* Ajustar margens para mobile */
    .mb-16 {
        margin-bottom: 2rem;
    }
    
    .mb-6 {
        margin-bottom: 1rem;
    }
    
    .mb-4 {
        margin-bottom: 0.75rem;
    }
    
    /* Melhorar espaçamento horizontal */
    .gap-12 {
        gap: 1.5rem;
    }
    
    .gap-8 {
        gap: 1rem;
    }
}

/* Melhorias específicas para tablets */
@media (min-width: 640px) and (max-width: 1023px) {
    /* Layout intermediário para tablets */
    .flex {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Ajustar tamanhos para tablets */
    .text-7xl {
        font-size: 3rem;
    }
    
    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-5xl {
        font-size: 2rem;
    }
    
    /* Melhorar espaçamento para tablets */
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .px-20, .px-16 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Ajustar carrossel para tablets */
    .carousel-slide {
        width: calc(100% / 2);
        min-width: calc(100% / 2);
    }
    
    .carousel-track {
        width: 350%; /* 7 slides * 50% */
    }
    
    /* Centralizar bolinhas em tablets */
    .carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .carousel-dot.active {
        /* Sem box-shadow */
    }
    
    /* Garantir que text-gold-neon funcione em tablets */
    .text-gold-neon {
        background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        background-size: 200% 100%;
        /* Fallback para tablets */
        color: var(--gold-light);
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 375px) {
    /* Ajustes específicos para smartphones pequenos */
    .text-7xl {
        font-size: 1.75rem;
    }
    
    .text-6xl {
        font-size: 1.5rem;
    }
    
    .text-5xl {
        font-size: 1.25rem;
    }
    
    /* Reduzir padding para telas muito pequenas */
    .px-20, .px-16, .px-8 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .py-20 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    /* Ajustar botões para telas pequenas */
    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Melhorar espaçamento para telas pequenas */
    .space-y-6 > * + * {
        margin-top: 0.75rem;
    }
    
    .space-y-8 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-10 > * + * {
        margin-top: 1.5rem;
    }
    
    .space-y-12 > * + * {
        margin-top: 2rem;
    }
}

/* Melhorias para orientação landscape em mobile */
@media (max-width: 768px) and (orientation: landscape) {
    /* Ajustar layout para orientação landscape */
    .py-20 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .py-12 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    /* Reduzir tamanhos de fonte em landscape */
    .text-7xl {
        font-size: 1.5rem;
    }
    
    .text-6xl {
        font-size: 1.25rem;
    }
    
    .text-5xl {
        font-size: 1.125rem;
    }
    
    /* Ajustar espaçamento vertical */
    .space-y-6 > * + * {
        margin-top: 0.5rem;
    }
    
    .space-y-8 > * + * {
        margin-top: 0.75rem;
    }
    
    .space-y-10 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-12 > * + * {
        margin-top: 1.5rem;
    }
}

/* Prevenir overflow horizontal */
@media (max-width: 1023px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .carousel-container,
    .max-w-3xl,
    .max-w-4xl,
    .max-w-6xl,
    .max-w-7xl {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Garantir que imagens não causem overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ajustar containers para evitar overflow */
    .px-20, .px-16, .px-8, .px-6, .px-4 {
        box-sizing: border-box;
        width: 100%;
    }
}

/* Melhorias de acessibilidade para mobile */
@media (max-width: 768px) {
    /* Melhorar contraste */
    .text-gray-300 {
        color: #f9fafb;
    }
    
    .text-gray-400 {
        color: #f3f4f6;
    }
    
    /* Aumentar área de toque para elementos interativos */
    button,
    .carousel-dot,
    .carousel-nav-button,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Melhorar feedback visual */
    .cta-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .carousel-dot:active {
        transform: scale(0.9);
        transition: transform 0.1s ease;
    }
    
    /* Melhorar navegação por toque */
    .carousel-nav-button {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid var(--gold);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    }
    
    /* Ajustar espaçamento para melhor usabilidade */
    .space-x-2 > * + * {
        margin-left: 1rem;
    }
    
    .space-x-3 > * + * {
        margin-left: 1.5rem;
    }
    
    /* Melhorar legibilidade do texto */
    .text-7xl, .text-6xl, .text-5xl, .text-4xl {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    /* Ajustar sombras para melhor contraste */
    .shadow-lg {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    
    .shadow-2xl {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    }
}

/* Classes específicas para responsividade */
.sm\:px-6 {
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
}

.sm\:text-2xl {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
}

.sm\:text-5xl {
    font-size: clamp(2.5rem, 6vw, 3rem);
}

.sm\:text-6xl {
    font-size: clamp(3rem, 7.5vw, 3.75rem);
}

/* Grid responsivo APENAS para seção de vantagens */
.md\:grid-cols-3:not(.carousel-container *) {
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 80vw, 300px), 1fr));
}

.lg\:px-8 {
    padding-left: clamp(1.5rem, 4vw, 2rem);
    padding-right: clamp(1.5rem, 4vw, 2rem);
}

.lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg\:text-6xl {
    font-size: clamp(3rem, 7.5vw, 3.75rem);
}

.lg\:text-7xl {
    font-size: clamp(3.5rem, 9vw, 4.5rem);
}

/* Breakpoints responsivos automáticos */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: clamp(1rem, 3vw, 1.5rem);
        padding-right: clamp(1rem, 3vw, 1.5rem);
    }
    
    .sm\:text-2xl {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    }
    
    .sm\:text-5xl {
        font-size: clamp(2.5rem, 6vw, 3rem);
    }
    
    .sm\:text-6xl {
        font-size: clamp(3rem, 7.5vw, 3.75rem);
    }
}

@media (min-width: 768px) {
    /* Grid apenas para seção de vantagens, não para carrossel */
    .md\:grid-cols-3:not(.carousel-container *) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1.5rem, 3vw, 2rem);
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: clamp(1.5rem, 4vw, 2rem);
        padding-right: clamp(1.5rem, 4vw, 2rem);
    }
    
    .lg\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .lg\:text-6xl {
        font-size: clamp(3rem, 7.5vw, 3.75rem);
    }
    
    .lg\:text-7xl {
        font-size: clamp(3.5rem, 9vw, 4.5rem);
    }
}

