/* ============================================
   RESET E CONFIGURAÇÕES GERAIS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --color-primary: #d91518;
    --color-primary-dark: #bd1313;
    --color-secondary: #3fc99b;
    --color-accent: #f2b900;
    
    /* Cores Dark Theme */
    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #050505;
    --color-bg-section: #111111;
    --color-text-light: #ffffff;
    --color-text-gray: #b7b7b7;
    --color-text-dark: #2a2a2a;
    
    /* Efeitos Neon */
    --neon-red: #ff3366;
    --neon-pink: #ff006e;
    --neon-blue: #00d4ff;
    --neon-purple: #9d4edd;
    --neon-green: #39ff14;
    
    /* Tipografia */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Prevenir scroll jump */
    overflow-x: hidden;
    overflow-y: scroll; /* Force scrollbar sempre visível */
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text-gray);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
    /* Prevenir janky scroll */
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    /* Prevenir overflow */
    overflow: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    user-select: none;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

/* Seções - Isolamento global */
section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 20px 0;
    transition: var(--transition-smooth);
    will-change: transform, background;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    contain: layout style paint;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(217, 21, 24, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-text-light);
    letter-spacing: 4px;
    position: relative;
    text-shadow: 0 0 10px var(--neon-red);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
}

.neon-line {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-red) 0%, transparent 100%);
    margin-top: 5px;
    box-shadow: 0 0 10px var(--neon-red);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-red);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-header {
    background: var(--color-primary);
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(217, 21, 24, 0.5);
}

.cta-header::after {
    display: none;
}

.cta-header:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 0 30px rgba(217, 21, 24, 0.8);
    transform: translateY(-2px);
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Prevenir interferência com scroll */
    contain: layout style paint;
    isolation: isolate;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* CRÍTICO: Não permitir transform que afete scroll */
    transform: translateZ(0) translateY(0);
    pointer-events: none; /* Hero não deve capturar eventos de scroll */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(217, 21, 24, 0.4) 0%, 
        rgba(10, 10, 10, 0.8) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    pointer-events: auto; /* Permitir interação com botões */
}

.hero-logo {
    margin: 0 auto 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7));
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-text {
    color: #ff5577;
    text-shadow: 0 0 3px rgba(255, 85, 119, 0.8),
                 0 0 8px rgba(255, 85, 119, 0.5);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text-gray);
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 21, 24, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-tag .icon {
    font-size: 2rem;
}

/* ============================================
   BOTÕES CTA
   ============================================ */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--color-primary);
    color: var(--color-text-light);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(217, 21, 24, 0.5),
                0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(217, 21, 24, 0.8),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-button .arrow {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5),
                0 4px 15px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0a5d52 100%);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.8),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-button.whatsapp .icon {
    font-size: 2rem;
}

.whatsapp-logo {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Hero Buttons - Mobile first (column) */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.hero-buttons .cta-button {
    min-width: 320px;
    justify-content: center;
}

/* Desktop - Botões lado a lado */
@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons .cta-button {
        min-width: 280px;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(217, 21, 24, 0.5),
                    0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(217, 21, 24, 0.8),
                    0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

/* ============================================
   HERO MARQUEE GALERIA
   ============================================ */

.hero-marquee-container {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    padding: 10px 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3), transparent);
}

.hero-marquee {
    display: flex;
    gap: 0;
    width: fit-content;
    will-change: transform;
}

.hero-marquee-track {
    display: flex;
    gap: 15px;
    animation: marqueeScroll 60s linear infinite;
    will-change: transform;
}

.hero-marquee-track img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.hero-marquee-track img:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(217, 21, 24, 0.6);
    z-index: 10;
}

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

/* Pausar animação ao hover */
.hero-marquee-container:hover .hero-marquee-track {
    animation-play-state: paused;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-marquee-container {
        bottom: 40px;
        padding: 8px 0;
    }
    
    .hero-marquee-track {
        gap: 10px;
        animation-duration: 45s;
    }
    
    .hero-marquee-track img {
        width: 150px;
        height: 90px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .hero-marquee-track img {
        width: 120px;
        height: 75px;
    }
    
    .hero-marquee-track {
        animation-duration: 35s;
    }
}

/* ============================================
   HERO - AJUSTES RESPONSIVOS ESPECÍFICOS
   ============================================ */

@media (max-width: 1250px) {
    /* Hero content */
    #hero .hero-content {
        height: 1075px;
    }
    
    /* Hero */
    #hero {
        height: 1000px;
        min-height: 594px;
    }
    
    /* Hero marquee container */
    #hero .hero-marquee-container {
        height: 149px;
    }
}

@media (max-width: 768px) {
    /* Hero */
    #hero {
        min-height: 965px;
        height: 829px;
        max-height: 985px;
    }
    
    /* Hero content */
    #hero .hero-content {
        height: 1182px;
        transform: translateX(0px) translateY(0px);
        padding-bottom: 80px;
    }
    
    /* Hero marquee container */
    #hero .hero-marquee-container {
        height: 226px;
    }
}

@media (min-width: 1251px) {
    /* Hero */
    #hero {
        min-height: 975px;
    }
    
    /* Hero content */
    #hero .hero-content {
        height: 1087px;
    }
    
    /* Hero marquee container */
    #hero .hero-marquee-container {
        height: 191px;
    }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--neon-red), transparent);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* ============================================
   SEÇÃO DE VÍDEOS XENON - MARQUEE HORIZONTAL
   ============================================ */

.xenon-videos-marquee {
    padding: 80px 0;
    background: var(--color-bg-dark);
    overflow: hidden;
    position: relative;
    /* Isolamento e contenção para performance */
    isolation: isolate;
    contain: layout style paint;
    will-change: auto; /* Não usar will-change na section */
}

.xenon-videos-marquee .section-title {
    font-size: 6rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
    /* Contenção de título */
    contain: layout style paint;
}

.videos-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Performance crítica */
    contain: strict;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.videos-marquee-wrapper::before,
.videos-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* GPU acceleration para gradientes */
    transform: translateZ(1px);
    backface-visibility: hidden;
}

.videos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, transparent 100%);
}

.videos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-bg-dark) 100%);
}

.videos-marquee-track {
    display: flex;
    flex-direction: row;
    gap: 30px;
    animation: marquee-horizontal 25s linear infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    /* Otimizações críticas de performance */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    /* Force hardware acceleration */
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

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

@keyframes marquee-horizontal {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
    }
}

.video-marquee-item {
    position: relative;
    width: 300px;
    height: 550px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(217, 21, 24, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Isolamento e contenção */
    isolation: isolate;
    contain: layout style paint;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.video-marquee-item:hover {
    transform: scale(1.05) translateZ(0);
    -webkit-transform: scale(1.05) translateZ(0);
    box-shadow: 0 15px 50px rgba(217, 21, 24, 0.5);
}

.video-marquee-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
    /* Performance de vídeo otimizada */
    will-change: auto; /* Deixar o browser decidir */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Contenção de vídeo */
    contain: strict;
}

.video-marquee-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-marquee-item:hover .video-marquee-overlay {
    opacity: 1;
}

.video-marquee-overlay p {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* ============================================
   SEÇÃO INTRODUÇÃO
   ============================================ */

.intro {
    padding: 120px 0;
    background: var(--color-bg-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.intro-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 50px;
}

.intro-text strong {
    color: var(--neon-red);
    font-weight: 700;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

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

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.neon-border {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(217, 21, 24, 0.3),
                inset 0 0 20px rgba(217, 21, 24, 0.1);
}

.image-frame img {
    width: 100%;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* ============================================
   SEÇÃO SUÍTES
   ============================================ */

.suites {
    padding: 120px 0;
    background: var(--color-bg-section);
}

.suites .container {
    max-width: 1400px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--color-text-gray);
    font-weight: 300;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.suite-card {
    background: var(--color-bg-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(217, 21, 24, 0.2);
}

.suite-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suite-card:hover .suite-image img {
    transform: scale(1.1);
}

.suite-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(217, 21, 24, 0.6);
}

.suite-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.suite-card:hover .suite-overlay {
    transform: translateY(0);
}

.suite-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suite-features span {
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.suite-content {
    padding: 30px;
}

.suite-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.suite-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-gray);
    margin-bottom: 20px;
}

.suite-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amenity {
    background: rgba(217, 21, 24, 0.1);
    border: 1px solid rgba(217, 21, 24, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    color: var(--color-text-gray);
}

/* ============================================
   DETALHES DA SUÍTE - ABAS E PREÇOS
   ============================================ */

.suite-details {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 21, 24, 0.3);
    border-radius: 8px;
    color: var(--color-text-gray);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.tab-btn:hover {
    background: rgba(217, 21, 24, 0.1);
    border-color: var(--color-primary);
}

.tab-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(217, 21, 24, 0.4);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

/* Grid de Comodidades */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 1.3rem;
    color: var(--color-text-gray);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: rgba(217, 21, 24, 0.1);
    border-color: rgba(217, 21, 24, 0.3);
    transform: translateX(5px);
}

.amenity-item .icon {
    font-size: 1.8rem;
}

/* Tabela de Preços */
.price-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-period {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.period-header {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.period-header.special {
    background: rgba(217, 21, 24, 0.1);
    border-bottom-color: rgba(217, 21, 24, 0.2);
}

.period-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-list {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

.price-item.highlight {
    background: rgba(217, 21, 24, 0.15);
    border: 1px solid rgba(217, 21, 24, 0.3);
}

.price-item.highlight:hover {
    background: rgba(217, 21, 24, 0.25);
    box-shadow: 0 0 15px rgba(217, 21, 24, 0.3);
}

.price-item .time {
    font-size: 1.4rem;
    color: var(--color-text-gray);
    font-weight: 500;
}

.price-item .amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon-red);
}

.price-note {
    padding: 0 20px 15px;
    font-size: 1.2rem;
    color: var(--color-text-gray);
    font-style: italic;
    text-align: center;
}

.cta-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.cta-center .cta-button {
    margin: 0 auto;
}

/* ============================================
   GALERIA DE VÍDEOS - MARQUEE
   ============================================ */

.video-marquee {
    padding: 80px 0;
    background: var(--color-bg-dark);
    overflow: hidden;
    position: relative;
    /* Isolamento de layer para performance */
    isolation: isolate;
    contain: layout style paint;
    will-change: auto;
}

.video-marquee-reverse {
    padding: 0 0 80px 0;
}

.video-marquee-reverse .video-marquee-track {
    animation: marquee-reverse 40s linear infinite;
    -webkit-animation: marquee-reverse 40s linear infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes marquee-reverse {
    0% {
        transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes marquee-reverse {
    0% {
        -webkit-transform: translate3d(-50%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

.video-marquee::before,
.video-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* GPU para gradientes */
    transform: translateZ(1px);
    backface-visibility: hidden;
}

.video-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, transparent 100%);
}

.video-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-bg-dark) 100%);
}

.video-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    /* Contenção e isolamento */
    contain: strict;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.video-marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee 40s linear infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    width: fit-content;
    /* Otimizações de performance */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

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

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

.video-card {
    position: relative;
    width: 400px;
    height: 500px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Otimizações de performance */
    will-change: auto;
    isolation: isolate;
    contain: layout style paint;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.video-card:hover {
    transform: scale(1.05) translateZ(0);
    -webkit-transform: scale(1.05) translateZ(0);
    box-shadow: 0 15px 40px rgba(217, 21, 24, 0.3);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    /* Performance de vídeo */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: strict;
}
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-card:hover .video-overlay {
    transform: translateY(0);
}

.video-description {
    color: var(--color-text-light);
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SEÇÃO EXPERIÊNCIA
   ============================================ */

.experience {
    padding: 120px 0;
    background: var(--color-bg-dark);
    position: relative;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(217, 21, 24, 0.05), transparent 70%);
    pointer-events: none;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-item.reverse {
    direction: rtl;
}

.experience-item.reverse > * {
    direction: ltr;
}

.experience-image {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.experience-content p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--color-text-gray);
}

/* ============================================
   MARQUEE GASTRONOMIA
   ============================================ */

.gastronomia-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: var(--color-bg-dark);
}

.gastronomia-marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
    width: fit-content;
    will-change: transform;
}

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

.gastro-card {
    position: relative;
    width: 450px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gastro-card:hover {
    transform: scale(1.05);
}

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

.gastro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gastro-card:hover .gastro-overlay {
    opacity: 1;
}

.gastro-overlay p {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* ============================================
   SEÇÃO DIFERENCIAIS
   ============================================ */

.diferenciais {
    padding: 120px 0;
    background: var(--color-bg-section);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.diferencial-card {
    background: var(--color-bg-dark);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.diferencial-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(217, 21, 24, 0.2);
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    filter: grayscale(0%);
}

.diferencial-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.diferencial-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-gray);
}

/* ============================================
   SEÇÃO BENEFÍCIOS
   ============================================ */

.beneficios {
    padding: 120px 0;
    background: var(--color-bg-dark);
}

.beneficios-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.beneficio-before h3,
.beneficio-after h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 30px;
    text-align: center;
}

.pain-points,
.benefits {
    list-style: none;
}

.pain-points li,
.benefits li {
    font-size: 1.6rem;
    line-height: 2;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-points li {
    color: #999;
}

.benefits li {
    color: var(--color-text-gray);
}

.beneficio-arrow {
    font-size: 6rem;
    text-align: center;
}

/* ============================================
   SEÇÃO PROVA SOCIAL
   ============================================ */

.social-proof {
    padding: 120px 0;
    background: var(--color-bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--color-bg-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 1.3rem;
    color: var(--color-text-gray);
    font-weight: 600;
}

.booking-badge {
    text-align: center;
    padding: 40px;
    background: var(--color-bg-dark);
    border-radius: 8px;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 40px rgba(217, 21, 24, 0.2);
}

.badge-score {
    display: block;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.badge-text {
    font-size: 2rem;
    color: var(--color-text-gray);
    font-weight: 600;
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    padding: 120px 0;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-final-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 21, 24, 0.1), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.cta-final-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-final-subtitle {
    font-size: 2rem;
    color: var(--color-text-gray);
    margin-bottom: 60px;
}

.cta-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.cta-option {
    background: var(--color-bg-section);
    padding: 40px;
    border-radius: 8px;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.cta-option.highlight {
    border-color: var(--color-primary);
    box-shadow: 0 0 40px rgba(217, 21, 24, 0.3);
    transform: scale(1.05);
}

.cta-option:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(217, 21, 24, 0.4);
}

.cta-option h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 1.6rem;
    color: var(--color-text-gray);
    margin-bottom: 10px;
}

.price .neon-text {
    font-size: 3.5rem;
    font-weight: 900;
}

.price-info {
    font-size: 1.3rem;
    color: var(--color-text-gray);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.whatsapp {
    background: #25d366;
}

.whatsapp:hover {
    background: #1fb855;
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

.phone {
    background: var(--color-bg-section);
    border: 2px solid var(--color-primary);
}

.phone:hover {
    background: var(--color-primary);
}

.contact-info {
    text-align: center;
}

.address,
.hours {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 15px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
}

.footer-logo h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text-light);
    margin-bottom: 10px;
    text-shadow: 0 0 8px var(--neon-red);
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.2));
}

.footer-logo p {
    font-size: 1.4rem;
    color: var(--color-text-gray);
}

.footer-info {
    flex: 1;
    text-align: right;
}

.footer-info p {
    font-size: 1.4rem;
    color: var(--color-text-gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-info .address {
    margin-bottom: 15px;
}

.footer-info .hours,
.footer-info .phone {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 1.3rem;
    color: var(--color-text-gray);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .intro-grid,
    .experience-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .suites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        overflow-x: hidden;
        position: relative;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        touch-action: pan-y;
    }
    
    /* Otimizações de performance mobile */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    /* Container otimizado mobile */
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevenir overflow em seções */
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Melhorar rendering de imagens e vídeos */
    img, video {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        max-width: 100%;
        height: auto;
    }
    
    .nav {
        display: flex;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 6px 10px;
        letter-spacing: 0.5px;
    }
    
    /* Esconder "Diferenciais" no mobile */
    .nav-link:nth-child(2) {
        display: none;
    }
    
    /* Botão Reservar Agora otimizado mobile */
    .cta-header {
        font-size: 1rem;
        padding: 8px 14px;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* Header fixo otimizado para mobile */
    .header {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        position: relative;
        overflow: hidden;
    }
    
    .hero-content {
        padding-top: 25vh;
        padding-bottom: 10vh;
        transform: translateZ(0);
    }
    
    .hero-slider {
        position: absolute;
        inset: 0;
    }
    
    .hero-logo {
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    /* Prevenir scroll horizontal em grids */
    .suites-grid,
    .diferenciais-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Cards não podem ultrapassar viewport */
    .suite-card,
    .diferencial-card,
    .testimonial-card {
        max-width: 100%;
        width: 100%;
    }
    
    /* Abas e detalhes mobile */
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .price-table {
        gap: 15px;
    }
    
    .price-item {
        padding: 10px 12px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .beneficios-content {
        grid-template-columns: 1fr;
    }
    
    .beneficio-arrow {
        transform: rotate(90deg);
    }
    
    .cta-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .hero-buttons {
        gap: 15px;
        margin-top: 20px;
    }
    
    .hero-buttons .cta-button {
        min-width: 280px;
        font-size: 1.4rem;
        padding: 16px 30px;
    }
    
    .whatsapp-logo {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .floating-whatsapp-logo {
        width: 26px;
        height: 26px;
    }

    /* Vídeos Marquee Mobile */
    .video-marquee::before,
    .video-marquee::after {
        width: 50px;
    }

    .video-card {
        width: 280px;
        height: 400px;
    }

    .gastro-card {
        width: 320px;
        height: 250px;
    }

    .gastro-overlay p {
        font-size: 1.4rem;
    }

    /* Vídeos Xenon Mobile */
    .xenon-videos-marquee {
        padding: 60px 0;
    }

    .xenon-videos-marquee .section-title {
        font-size: 4rem;
        margin-bottom: 40px;
    }

    .videos-marquee-wrapper::before,
    .videos-marquee-wrapper::after {
        width: 50px;
    }

    .video-marquee-item {
        width: 220px;
        height: 400px;
    }

    .video-marquee-overlay {
        opacity: 1;
        padding: 20px 15px;
    }

    .video-marquee-overlay p {
        font-size: 1.4rem;
    }

    .videos-marquee-track {
        gap: 20px;
        animation: marquee-horizontal 20s linear infinite;
        /* Otimizações mobile críticas */
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        will-change: transform;
    }

    .video-marquee-track {
        gap: 20px;
        animation: marquee 30s linear infinite;
        -webkit-animation: marquee 30s linear infinite;
        /* Otimizações mobile críticas */
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        will-change: transform;
    }

    .video-marquee-reverse .video-marquee-track {
        animation: marquee-reverse 30s linear infinite;
        -webkit-animation: marquee-reverse 30s linear infinite;
    }

    .video-description {
        font-size: 1.4rem;
    }
    
    /* Fix para scroll suave no mobile */
    .hero,
    section {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        /* Contenção para evitar conflitos */
        contain: layout style;
    }
    
    /* Desabilitar hover effects no mobile */
    .video-card:hover,
    .video-marquee-item:hover {
        transform: none;
    }
    
    .suite-card:hover {
        transform: none;
    }
    
    /* Melhorar touch para botões */
    .cta-button,
    a {
        -webkit-tap-highlight-color: rgba(217, 21, 24, 0.3);
        touch-action: manipulation;
    }
    
    /* Reduzir complexidade de animações no mobile */
    body.is-scrolling * {
        animation-play-state: paused !important;
    }
    
    body.is-scrolling .videos-marquee-track,
    body.is-scrolling .video-marquee-track {
        animation-play-state: running !important;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-final-title {
        font-size: 3.5rem;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-logo {
        width: 30px;
        height: 30px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

.text-center {
    text-align: center;
}

.mb-small {
    margin-bottom: 20px;
}

.mb-medium {
    margin-bottom: 40px;
}

/* ============================================
   WHATSAPP COMPONENTS
   ============================================ */

/* Botão Flutuante WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp-logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

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

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Modal WhatsApp */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 85, 119, 0.2);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #b7b7b7;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-content h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal-content p {
    color: var(--color-text-gray);
    margin-bottom: 30px;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-content input {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1.6rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.modal-content input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
}

.modal-content input::placeholder {
    color: rgba(183, 183, 183, 0.7);
    font-size: 1.4rem;
}

.modal-content .date-label {
    color: #ff5577;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

.modal-content input[type="date"] {
    color-scheme: dark;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 18px 20px;
    position: relative;
}

.modal-content input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    width: 24px;
    height: 24px;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.modal-content .date-input {
    background: rgba(255, 85, 119, 0.15);
    border: 2px solid rgba(255, 85, 119, 0.3);
    cursor: pointer;
}

.modal-content .date-input:hover {
    background: rgba(255, 85, 119, 0.2);
    border-color: rgba(255, 85, 119, 0.5);
}

.modal-content .date-input:focus {
    background: rgba(255, 85, 119, 0.25);
    border-color: var(--color-primary);
}

.modal-content .cta-button {
    margin-top: 10px;
}

/* ============================================
   ACESSIBILIDADE E PERFORMANCE
   ============================================ */

/* Otimizar durante scroll */
body.is-scrolling .videos-marquee-track,
body.is-scrolling .video-marquee-track {
    /* Reduzir will-change durante scroll para melhor performance */
    will-change: auto;
}

body.is-scrolling section:not(.hero) {
    /* Reduzir re-paint durante scroll */
    pointer-events: none;
}

/* Reduzir motion para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .videos-marquee-track,
    .video-marquee-track {
        animation: none !important;
    }
}

/* Focus visível para acessibilidade */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Otimizar renderização em telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ============================================
   FIM WHATSAPP COMPONENTS
   ============================================ */

.mb-large {
    margin-bottom: 60px;
}
