/* ==========================================================================
   Atelier PSP - CSS Premium Design - Fiel ao Original
   ========================================================================== */

/* Variables Premium - Cores extraídas do design original */
:root {
    /* Cores primárias premium */
    --primary-dark: #0D2B1D;      /* Verde escuro principal */
    --primary-medium: #344C3D;     /* Verde médio */
    --primary-light: #BFCFBB;      /* Verde claro */
    --accent-gold: #DDB670;        /* Dourado/âmbar premium */
    --white-alpha: #FFFFFFBD;      /* Branco com transparência */
    --text-light: #CACACA;         /* Texto claro */
    --text-medium: #F0F0F0;        /* Texto médio */
    --text-dark: #334155;          /* Texto escuro */
    --background-light: #F0F5FA;   /* Fundo claro */
    --black-overlay: rgba(0, 0, 0, 0.55); /* Overlay preto */
    --black-heavy: rgba(0, 0, 0, 0.75);   /* Overlay pesado */
    --green-light: #EFFFEC;        /* Verde muito claro */
    --beige-light: #F5F5DC;        /* Bege claro */
    
    /* Typography Premium - Fontes otimizadas */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-heading: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Font-specific optimization for hero title */
    --font-hero: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    
    /* Spacing Premium */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --element-spacing: 2rem;
    
    /* Efeitos Premium */
    --border-radius: 25px;
    --border-radius-small: 10px;
    --shadow-premium: 0px 0px 32px 0px rgba(0, 0, 0, 0.58);
    --shadow-gold: 0 10px 30px rgba(221, 182, 112, 0.3);
    --shadow-green: 0 10px 30px rgba(13, 43, 29, 0.3);
    
    /* Transitions Premium */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Premium */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #000000;
    overflow-x: hidden;
    letter-spacing: 0.025em;
}

/* Typography Premium - Mais elegante */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-light);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    font-weight: 700;
}
h2 { 
    font-size: clamp(2rem, 4vw, 3.5rem); 
    font-weight: 600;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2.5rem); 
}
h4 { 
    font-size: clamp(1.25rem, 2.5vw, 2rem); 
}
h5 { 
    font-size: clamp(1.125rem, 2vw, 1.5rem); 
}
h6 { 
    font-size: clamp(1rem, 1.5vw, 1.25rem); 
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.7;
}

/* Container Premium - Melhor responsividade */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    width: 100%;
}

/* Buttons Premium - Melhor responsividade */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(12px, 3vw, 15px) clamp(30px, 8vw, 50px);
    border: 1px solid transparent;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    min-width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(124, 124, 124, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(124, 124, 124, 0.8);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn-secondary {
    background: rgba(124, 124, 124, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(124, 124, 124, 0.8);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.btn-outline {
    background: rgba(124, 124, 124, 0);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(124, 124, 124, 0.3);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 15px 50px;
    font-size: 1.5rem;
}

/* Navigation Premium - Efeito Vidro Blur Flutuante */
.navbar {
    position: fixed;
    top: 20px; /* Espaçamento flutuante do topo */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    /* Efeito glassmorphism - vidro escuro translúcido */
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all var(--transition-medium);
    /* Navbar completamente flutuante com bordas arredondadas */
    border-radius: 25px;
    margin-top: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
}

/* Efeito hover sofisticado no navbar */
.navbar:hover {
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%) translateY(-2px);
}

/* Efeito quando scrolling - navbar flutuante */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    backdrop-filter: blur(15px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    top: 10px; /* Menor espaçamento quando scrolling */
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(221, 182, 112, 0.3)) brightness(1.1);
    margin-top: 5px;
    padding-top: 5px;
    transition: all var(--transition-fast);
}

.logo:hover {
    filter: drop-shadow(0 8px 20px rgba(221, 182, 112, 0.6)) brightness(1.3);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(221, 182, 112, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Ocultar nav-toggle em desktop */
.nav-toggle {
    display: none;
}

/* Hero Section Premium - Fundo No-Logo.jpg */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/No-Logo.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Mobile - alinhar imagem à esquerda */
@media (max-width: 768px) {
    /* Ajuste para imagem do .contact no mobile: manter cover, alinhar à esquerda */
    .contact {
        background-position: left center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-attachment: fixed !important;
        padding: 70px 0 40px;
        min-height: 320px;
    }
    .hero {
        background: url('../images/No-Logo.jpg') left center/cover no-repeat;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-overlay);
    z-index: 1;
}

.hero-background {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease;
    margin: 0 auto;
}

/* Hero Title - Classe única específica para evitar conflitos de tipografia */
.hero-main-title {
    font-family: var(--font-hero) !important;
    font-size: clamp(2.8rem, 6vw, 5.2rem) !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem;
    color: var(--white-alpha) !important;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    /* Força aplicação da fonte específica */
    font-display: swap !important;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 100px;
    color: var(--text-medium);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

/* Regras específicas para desktop - garantir centralização absoluta */
@media (min-width: 769px) {
    /* Configurações de Desktop - Garantir que menu mobile seja oculto */
    .nav-menu {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        top: auto !important;
        left: auto !important;
        z-index: auto !important;
        gap: 2rem;
    }
    
    .hero .container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero-main-title {
        font-size: 5.2rem !important;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* About Section Premium - Gradiente Verde */
.about {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    padding: 150px 0 50px;
    position: relative;
}

/* Global Section Title - Definição unificada */
.section-title {
    font-family: var(--font-accent);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--primary-light);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Cores específicas por seção */
.about .section-title {
    color: var(--primary-light);
}

.gallery .section-title {
    color: var(--green-light);
}

.cases .section-title {
    color: var(--primary-light);
}

.results .section-title {
    color: var(--primary-light);
}

.services .section-title,
.services-text .section-title {
    color: var(--primary-light);
}

.contact .section-title {
    color: var(--primary-light);
}

.about .section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Container Premium - Tamanhos uniformes e maiores */
.video-container,
.cases-video {
    max-width: 900px;
    margin: 3rem auto;
    width: 100%;
}

/* Tamanho maior para desktop */
@media (min-width: 1024px) {
    .video-container,
    .cases-video {
        max-width: 1000px;
    }
}

/* Mobile - tamanho responsivo */
@media (max-width: 768px) {
    .video-container,
    .cases-video {
        max-width: 100%;
        margin: 2rem auto;
    }
}

.video-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform var(--transition-medium);
}

.video-wrapper:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.8);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    background: var(--primary-dark);
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-thumbnail:hover .video-thumb-img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    transition: all var(--transition-medium);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* YouTube Player Styles */
.youtube-player,
.youtube-player-clean {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: var(--border-radius);
    background: var(--primary-dark);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    position: relative;
    overflow: hidden;
}

/* Container do player customizado */
.custom-video-player {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--primary-dark);
}

/* Linha dourada simples e elegante embaixo do player */
.custom-video-player::before,
.video-wrapper.playing::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

/* Mostrar linha quando o vídeo estiver carregado */
.custom-video-player.playing::before,
.video-wrapper.playing::after {
    opacity: 1;
}

/* Overlay para ocultar elementos do YouTube */
.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
}

/* Ocultar elementos do YouTube para experiência mais limpa */
.video-wrapper iframe {
    position: relative;
    z-index: 1;
}

/* Remover overlay que causava faixas verdes - desabilitado */
.video-wrapper::after {
    display: none;
}

/* Estilo para player em tela cheia */
.video-wrapper.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
}

.video-wrapper.fullscreen .youtube-player,
.video-wrapper.fullscreen .youtube-player-clean {
    border-radius: 0;
}

/* Remover elementos específicos do YouTube via CSS */
.custom-video-player iframe[src*="youtube.com"] {
    filter: contrast(1.1) brightness(1.05);
}

/* Esconder controles do YouTube temporariamente para transição mais suave */
.youtube-player-clean {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
}

.video-thumbnail[role="button"]:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
}

.video-thumbnail[role="button"]:focus .play-button {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section Premium - Fundo com gradiente */
.gallery-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}
.gallery {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    padding: 100px 0 150px;
    position: relative;
}

.gallery .section-divider {
    width: 21%;
    height: 3.3px;
    background: var(--accent-gold);
    margin: 15px auto;
    border-radius: 2px;
}

.gallery .section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Gallery Carousel Premium - Imagens em formato portrait */
.gallery-carousel {
    margin: 3rem 0;
    overflow: hidden;
    padding: 0 40px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.gallery-slide {
    width: 250px;
    height: 350px; /* Formato portrait para manter proporção */
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-medium);
    position: relative;
}

.gallery-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(221, 182, 112, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.gallery-slide:hover::before {
    opacity: 1;
}

.gallery-slide:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

/* Cases Section Premium - Fundo com imagem 16x9_Generate_an_image_of_a_sleek__mo-1-1.png */
.cases {
    background: url('../images/16x9_Generate_an_image_of_a_sleek__mo-1-1.png') center/cover no-repeat;
    padding: 100px 0 150px;
    position: relative;
}

.cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-heavy);
    z-index: 1;
}

.cases .container {
    position: relative;
    z-index: 2;
}

.cases .section-divider {
    width: 21%;
    height: 3.3px;
    background: var(--accent-gold);
    margin: 15px auto;
    border-radius: 2px;
}

.cases .section-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

.cases-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonial Section Premium - Gradiente inverso */
.testimonial {
    background: linear-gradient(180deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
}

.testimonial-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--green-light);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.testimonial .section-divider {
    width: 21%;
    height: 3.3px;
    background: var(--accent-gold);
    margin: 15px auto;
    border-radius: 2px;
}

.testimonial-author {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Results Section Premium - Fundo verde escuro */
.results {
    background: var(--primary-dark);
    padding: 100px 0 50px;
}

.results .section-divider {
    width: 21%;
    height: 3.3px;
    background: var(--accent-gold);
    margin: 15px auto;
    border-radius: 2px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(221, 182, 112, 0.2);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 182, 112, 0.1), transparent);
    transition: left 0.8s;
}

.result-card:hover::before {
    left: 100%;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}

.result-company {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.result-metric {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.1rem;
}

.result-roi {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(221, 182, 112, 0.3);
}

.results-cta {
    text-align: center;
    margin-top: 3rem;
}

.mobile-booking-cta {
    display: none;
    text-align: center;
    margin-top: 2rem;
}

/* Services Section Premium - Fundo com imagem 16x9_Generate_an_image_of_a_modern_of-1-1.png */
.services {
    background: url('../images/16x9_Generate_an_image_of_a_modern_of-1-1.png') center/cover no-repeat;
    padding: 150px 0 100px;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.services-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(221, 182, 112, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.services-image:hover::before {
    opacity: 1;
}

.services-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.services-image:hover .services-img {
    transform: scale(1.1);
}

.services-text {
    padding: 2rem 0;
}

.services-text .section-subtitle {
    margin-bottom: 1rem;
}

.services-text .section-divider {
    width: 20%;
    height: 1px;
    background: var(--accent-gold);
    margin: 15px 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.services-list {
    margin-bottom: 2.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-small);
    border: 1px solid rgba(221, 182, 112, 0.2);
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateX(15px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.service-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(221, 182, 112, 0.5);
}

.service-item span {
    font-weight: 500;
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-cta {
    margin-bottom: 1.5rem;
}

.mobile-vip-cta {
    display: none;
}

/* Contact Section Premium - Fundo com No-Logo.jpg e gradiente */
.contact {
    background: url('../images/No-Logo.jpg') center/cover no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 110px 0 80px;
    position: relative;
    min-height: 60vh;
    max-width: 100vw;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 43, 29, 0.65) 0%, rgba(52, 76, 61, 0.65) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-divider {
    width: 21%;
    height: 3.3px;
    background: var(--accent-gold);
    margin: 15px auto;
    border-radius: 2px;
}

.contact .section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(124, 124, 124, 0.5);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    background: rgba(124, 124, 124, 0.8);
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(221, 182, 112, 0.3);
}

.contact-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.1rem;
}

/* Footer Premium */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3e29 100%);
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/No-Logo.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(221, 182, 112, 0.3));
    margin-bottom: 1rem;
}

.footer-text {
    border-top: 1px solid rgba(221, 182, 112, 0.3);
    padding-top: 1.5rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 600px;
}

.footer-text p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-text p:first-child {
    font-weight: 500;
    color: var(--accent-gold);
}

/* Footer Links */
.footer-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    opacity: 1;
    color: var(--text-light);
    transform: translateY(-2px);
}

.footer-separator {
    color: var(--text-light);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Scroll to Top Premium */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 1000;
    box-shadow: var(--shadow-gold);
    font-size: 1.2rem;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    color: var(--accent-gold);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(221, 182, 112, 0.5);
}

/* Animations Premium */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Indicator Premium */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
    transform: rotate(45deg);
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(221, 182, 112, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Responsive Design Premium */
@media (max-width: 1024px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-text .section-title {
        text-align: center;
    }
    
    .services-text .section-divider {
        margin: 1.5rem auto 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar .container {
        padding: 10px 20px;
    }
    
    /* Navbar responsivo - flutuante em mobile */
    .navbar {
        top: 10px; /* Menor espaçamento em mobile */
        width: calc(100% - 20px);
        border-radius: 20px; /* Bordas mais suaves em mobile */
        left: 50%;
        transform: translateX(-50%);
    }
    
    .navbar:hover {
        transform: translateX(-50%); /* Manter centralização sem movimento vertical */
    }
    
    .navbar.scrolled {
        top: 5px; /* Ainda menor quando scrolling em mobile */
    }
    
    .logo {
        height: 50px;
    }
    
    .about {
        padding: 50px 0;
    }
    
    .about .section-title {
        font-size: 2rem;
    }
    
    .gallery {
        padding: 50px 0;
    }
    
    .gallery .section-title {
        font-size: 1.7rem;
    }
    
    .cases {
        padding: 100px 0;
    }
    
    .cases .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-quote {
        font-size: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact {
        padding: 70px 0 40px;
        min-height: 320px;
        background-position: left center !important;
    }
    
    .contact .section-title {
        font-size: 2rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 50px 0 80px;
    }
    
    .footer .section-title {
        font-size: 1.7rem;
    }
    
    .mobile-booking-cta {
        display: block;
    }
    
    .mobile-vip-cta {
        display: block;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }

    /* Navigation Mobile - Posicionado abaixo do header */
    .nav-menu {
        position: fixed;
        top: 120px; /* Abaixo do navbar flutuante */
        left: 50%;
        transform: translateX(-50%) scale(0.9);
        width: 350px; /* Largura fixa original */
        max-width: 90vw; /* Máximo de 90% da largura da tela */
        height: 70vh; /* 70% da altura da tela */
        max-height: 70vh;
        /* Mesma transparência do navbar */
        background: rgba(0, 0, 0, 0.3);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-radius: 30px; /* Cantos mais arredondados */
        /* Layout original mantido */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1.5rem;
        transition: all var(--transition-medium);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 998; /* Abaixo do navbar */
    }
    
    .nav-menu.active {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    /* Overlay simples atrás do menu */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background: var(--accent-gold);
        transition: all var(--transition-medium);
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .gallery-slide {
        width: 200px;
        height: 280px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-to-top,
    .hero-cta,
    .cta-section,
    .gallery-cta,
    .cases-cta,
    .results-cta,
    .services-cta,
    .mobile-booking-cta,
    .mobile-vip-cta,
    .contact-options {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    section {
        padding: 2rem 0;
        break-inside: avoid;
    }
}

/* ==========================================================================
   RESPONSIVIDADE PREMIUM - Mobile First
   ========================================================================== */

/* Mobile Melhorado - Centralização e tipografia */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Centralização de todos os botões em mobile */
    .hero-cta,
    .cta-section,
    .gallery-cta,
    .cases-cta,
    .results-cta,
    .services-cta,
    .mobile-booking-cta,
    .mobile-vip-cta {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        padding: 18px 20px;
        font-size: 1.125rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    /* Tipografia específica para mobile sem afetar desktop */
    .hero-main-title {
        font-size: 2.25rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    /* Mobile - seções mais compactas */
    .section-title {
        font-size: 2.25rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Seções mais compactas */
    section {
        padding: 3rem 0;
    }
}

/* Tablet - Tipografia intermediária */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-main-title {
        font-size: 4rem !important;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .btn {
        padding: 16px 40px;
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   COOKIE CONSENT BANNER STYLES
   ========================================================================== */

/* Cookie Consent Banner */
.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 43, 29, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid rgba(221, 182, 112, 0.3);
    z-index: 10000;
    padding: 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.cookie-consent-logo {
    flex-shrink: 0;
}

.cookie-logo {
    width: 65px;
    height: auto;
    opacity: 0.9;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-info h3 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-family: var(--font-heading);
}

.cookie-consent-info p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: #FFA500;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.cookie-btn::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;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #FFA500);
    color: #000;
    box-shadow: 0 4px 15px rgba(221, 182, 112, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 182, 112, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Cookie Settings Panel */
.cookie-settings {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
}

.cookie-settings h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(221, 182, 112, 0.3);
}

.cookie-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    width: 100%;
}

.cookie-checkbox {
    margin-top: 2px;
    transform: scale(1.2);
    accent-color: var(--accent-gold);
}

.cookie-option-content strong {
    color: white;
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.cookie-option-content small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.3;
}

.cookie-settings-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cookie-consent-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-consent-logo {
        align-self: center;
    }
    
    .cookie-logo {
        width: 55px;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-settings-actions {
        justify-content: center;
    }
    
    .cookie-settings-actions .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-settings-actions {
        flex-direction: column;
    }
}
