/* ========================================
   RESET E VARIÁVEIS
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gold: #D4AF37;
    --color-gold-light: #E8C547;
    --color-gold-dark: #B8960F;
    --color-dark: #111111;
    --color-gray: #333333;
    --color-light-gray: #aaaaaa;
    
    /* Cores Adicionais */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Gradientes */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #FFD700 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 20px 40px rgba(212, 175, 55, 0.4);
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-black);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* Seleção de texto com cor dourada */
::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

::-moz-selection {
    background: var(--color-gold);
    color: var(--color-black);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Garantir que todos os elementos principais respeitem o viewport */
main, section, article, aside, header, footer, nav {
    max-width: 100%;
    box-sizing: border-box;
}

/* Imagens responsivas - garantir que nunca ultrapassem o container */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tabelas responsivas */
table {
    width: 100%;
    max-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
}

/* Prevenir overflow horizontal - aplicar apenas a elementos de bloco principais */
div, p, span, a, ul, ol, li, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Exceções para elementos que precisam de largura específica */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="time"],
select,
textarea {
    max-width: 100%;
    box-sizing: border-box;
}

/* Garantir que elementos flex e grid respeitem o container */
.flex-container,
.grid-container {
    max-width: 100%;
    overflow-x: hidden;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
}

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: var(--spacing-md);
}

.gold-accent {
    color: var(--color-gold);
}

.section-title.gold {
    color: var(--color-gold);
}

/* ========================================
   BUTTONS ENHANCEMENT - TODOS DOURADOS
   ======================================== */
/* Estilo base para TODOS os botões - Padrão Dourado */
.btn,
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
button:not([type="reset"]):not(.menu-toggle):not(.navbar-toggler):not(.btn-close),
input[type="submit"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid var(--color-gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: var(--gradient-gold) !important;
    color: var(--color-black) !important;
    box-shadow: var(--shadow-gold);
    font-family: 'Inter', 'Poppins', sans-serif;
}

/* Efeito de brilho para TODOS os botões */
.btn::before,
.btn-primary::before,
.btn-secondary::before,
button:not([type="reset"]):not(.menu-toggle):not(.navbar-toggler)::before,
input[type="submit"]::before,
input[type="button"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
button:not([type="reset"]):not(.menu-toggle):not(.navbar-toggler):hover::before,
input[type="submit"]:hover::before,
input[type="button"]:hover::before {
    width: 400px;
    height: 400px;
}

/* Hover para TODOS os botões */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
button:not([type="reset"]):not(.menu-toggle):not(.navbar-toggler):hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black) !important;
    text-decoration: none;
    background: var(--gradient-gold) !important;
    border-color: var(--color-gold) !important;
}

.btn:active,
.btn-primary:active,
.btn-secondary:active,
button:not([type="reset"]):not(.menu-toggle):not(.navbar-toggler):active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(-1px);
}

.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
button:not([type="reset"]):not(.menu-toggle):not(.navbar-toggler):focus,
input[type="submit"]:focus,
input[type="button"]:focus {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
    background: var(--gradient-gold) !important;
    color: var(--color-black) !important;
}

.btn-primary {
    background: var(--gradient-gold) !important;
    color: var(--color-black) !important;
    box-shadow: var(--shadow-gold);
    border-color: var(--color-gold) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--gradient-gold) !important;
    color: var(--color-black) !important;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-light {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.btn-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-light:hover::before {
    width: 400px;
    height: 400px;
}

.btn-light:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black);
    text-decoration: none;
    border-color: var(--color-gold);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
}

.navbar {
    padding: 1.25rem 0;
    transition: padding var(--transition-base);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo,
.navbar-brand {
    font-size: 1.75rem;
    color: var(--color-white);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    transition: all var(--transition-base);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo:hover,
.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--color-white);
    text-decoration: none;
}

.logo span,
.navbar-brand span {
    color: var(--color-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo {
    transition: all var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.menu-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.menu-toggle-label span {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style: none;
    grid-gap: 2rem; /* Fallback para browsers antigos */
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.nav-link.active {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
    border-radius: var(--radius-full);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-agendar-nav {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0.95rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-agendar-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-agendar-nav:hover::before {
    width: 300px;
    height: 300px;
}

.btn-agendar-nav:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black);
    text-decoration: none;
}

.btn-agendar-nav:active {
    transform: translateY(-1px);
}

.btn-login-nav {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-login-nav:hover::before {
    width: 400px;
    height: 400px;
}

.btn-login-nav:hover {
    background: var(--gradient-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-3px);
    border-color: var(--color-gold);
    text-decoration: none;
}

.btn-login-nav:active {
    transform: translateY(-1px);
}

/* ========================================
   USER GREETING & LOGOUT
   ======================================== */
.user-greeting-wrapper {
    display: inline-flex;
    align-items: center;
    grid-gap: 1rem; /* Fallback para browsers antigos */
    gap: 1rem;
}

.user-greeting {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-logout-small {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-logout-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.btn-logout-small:hover::before {
    width: 300px;
    height: 300px;
}

.btn-logout-small:hover {
    background: var(--gradient-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-3px) scale(1.1);
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold-light);
    transform: scale(1.1);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    transition: all var(--transition-base);
    border-radius: var(--radius-full);
}

.menu-toggle.active span {
    background: var(--color-gold-light);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 0;
}

/* IMPORTANTE: Overlay do hero não deve bloquear formulário */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0; /* Z-index baixo para não bloquear formulário */
    pointer-events: none; /* Não bloquear cliques */
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 100%;
    margin: 0;
    padding: var(--spacing-xl);
    text-align: left;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 30%, #d4af37 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both, titleShine 3s ease-in-out infinite;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--color-gold);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(212, 175, 55, 0.4), 0 0 25px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 0.8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--color-black);
    padding: 1.125rem 2.75rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black);
    text-decoration: none;
}

.btn-hero:active {
    transform: translateY(-2px) scale(1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-alt > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title.gold {
    color: var(--color-gold);
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: var(--spacing-md) auto;
    border-radius: var(--radius-full);
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.title-line.gold-bg {
    background: var(--color-gold);
}

.section-subtitle {
    color: var(--color-gray);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--color-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about > .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem; /* Fallback para browsers antigos */
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
    border-radius: var(--radius-2xl);
}

.about-image:hover::before {
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 0;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.about-text strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.services > .container {
    position: relative;
    z-index: 1;
}

.services .section-title {
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services .title-line {
    background: var(--gradient-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem; /* Fallback para browsers antigos */
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: var(--spacing-2xl);
    text-align: center;
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    border: 2px solid rgba(212, 175, 55, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
}

.service-icon {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(8deg);
    color: var(--color-gold-light);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.6));
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    /* Fallback para IE11 - usar background-image se necessário */
    object-fit: cover;
    -o-object-fit: cover; /* Opera antigo */
    transition: transform 0.3s ease;
}

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

.service-name {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--color-light-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-price {
    color: var(--color-gold);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: var(--spacing-sm);
}

.service-duration {
    color: var(--color-light-gray);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem; /* Fallback para browsers antigos */
    gap: 0.5rem;
}

.service-duration i {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-services {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--color-black);
    padding: 1.125rem 2.75rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.btn-services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-services:hover::before {
    width: 400px;
    height: 400px;
}

.btn-services:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black);
    text-decoration: none;
}

.btn-services:active {
    transform: translateY(-2px) scale(1);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.gallery > .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem; /* Fallback para browsers antigos */
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
    background: var(--color-dark);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    -o-object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
    filter: grayscale(40%) contrast(1.15) brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.18) translateY(-5px);
    filter: grayscale(0%) contrast(1.2) brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.98) 0%, rgba(232, 197, 71, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(0px);
}

.gallery-overlay i {
    font-size: 3.5rem;
    color: var(--color-black);
    animation: pulse 2s infinite;
}

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

/* ========================================
   CONTACT INFO SECTION
   ======================================== */
.contact-info {
    background: var(--color-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem; /* Fallback para browsers antigos */
    gap: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-details {
    display: flex;
    flex-direction: column;
    grid-gap: 2rem; /* Fallback para browsers antigos */
    gap: 2rem;
}

.contact-item {
    display: flex;
    grid-gap: 1.5rem; /* Fallback para browsers antigos */
    gap: 1.5rem;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact-text {
    color: var(--color-white);
}

.contact-text h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--color-light-gray);
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    grid-gap: 1rem; /* Fallback para browsers antigos */
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid rgba(212, 175, 55, 0.2);
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--color-black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-gold);
    text-decoration: none;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 1.5rem; /* Fallback para browsers antigos */
    gap: 1.5rem;
}

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

.map-description-text {
    color: var(--color-light-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.map-description-text strong {
    color: var(--color-gold);
    font-weight: 600;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--color-black);
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-base);
}

.map-container:hover {
    box-shadow: var(--shadow-gold-lg);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-link-container {
    text-align: center;
    margin-top: 0.5rem;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--color-black);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.map-link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.map-link-btn:hover::before {
    width: 300px;
    height: 300px;
}

.map-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    text-decoration: none;
    color: var(--color-black);
}

.map-link-btn i {
    font-size: 1.1rem;
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking {
    background: var(--color-white);
    /* IMPORTANTE: Padding-top para não ficar atrás do header fixo */
    padding-top: 100px;
    position: relative;
    z-index: 1;
    /* Garantir que nenhum overlay bloqueie o formulário */
    overflow: visible;
    isolation: isolate;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    /* IMPORTANTE: Não usar overflow:hidden - pode cortar o botão */
    overflow: visible !important;
    position: relative;
    z-index: 1;
    /* Garantir que formulário não seja bloqueado por overlays */
    pointer-events: auto !important;
}

/* IMPORTANTE: Inputs do formulário devem ser sempre clicáveis */
.booking-form input,
.booking-form select,
.booking-form textarea {
    position: relative;
    z-index: 1;
    pointer-events: auto !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem; /* Fallback para browsers antigos */
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--color-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--color-white);
    color: var(--color-black);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    background: var(--color-white);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--color-gray-300);
}

.form-group textarea {
    resize: vertical;
}

/* ========================================
   CALENDÁRIO VISUAL DE AGENDAMENTO
   Design Responsivo e Otimizado
   ======================================== */

/* Container Principal */
.calendar-visual-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.calendar-visual-container label {
    color: var(--color-black);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
    width: 100%;
}

/* Container de Scroll */
.calendar-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    margin: 0 auto;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(0, 0, 0, 0.1);
    position: relative;
    box-sizing: border-box;
}

/* Scrollbar Personalizada */
.calendar-container::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.calendar-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.calendar-container::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.calendar-container::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/* Tabela do Calendário - Base */
.calendar {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
    table-layout: fixed;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Desktop: Layout Flexível */
@media (min-width: 769px) {
    .calendar {
        min-width: 600px;
        table-layout: auto;
    }
    
    .calendar th:not(:first-child),
    .calendar td:not(:first-child) {
        min-width: 100px;
    }
}

/* Células da Tabela - Base */
.calendar th,
.calendar td {
    padding: 12px 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Cabeçalhos */
.calendar th {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    padding: 1rem 0.75rem;
    position: relative;
    white-space: nowrap;
}

/* Células de Dados */
.calendar td {
    height: 60px;
    min-height: 60px;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.02);
    transition: background-color 0.2s ease;
    position: relative;
}

.calendar td:hover {
    background: rgba(0, 0, 0, 0.03);
}

/* Botões de Horário - Base - Agora também dourado quando disponível */
.time-slot {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    min-width: 80px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(40, 167, 69, 0.3);
}

/* Quando selecionado, usar dourado */
.time-slot.selected {
    background: var(--gradient-gold) !important;
    color: var(--color-black) !important;
    box-shadow: var(--shadow-gold-lg) !important;
    font-weight: 700;
    border: 2px solid var(--color-gold);
    animation: pulseSelected 0.3s ease;
    transform: scale(1.05);
}

/* Efeito de Brilho no Hover */
.time-slot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
}

.time-slot:hover::before,
.time-slot:focus::before {
    width: 300px;
    height: 300px;
}

/* Estados do Botão */
.time-slot:hover,
.time-slot:focus {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.5);
    z-index: 1;
    outline: none;
}

.time-slot:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.time-slot.selected:hover,
.time-slot.selected:focus {
    background: var(--gradient-gold) !important;
    color: var(--color-black) !important;
    box-shadow: var(--shadow-gold-lg) !important;
    transform: scale(1.1);
}

@keyframes pulseSelected {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.time-slot.disabled {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.5;
}

.time-slot.disabled:hover,
.time-slot.disabled:focus,
.time-slot.disabled:active {
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.05);
}

/* Hint Text */
.calendar-hint {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem; /* Fallback para browsers antigos */
    gap: 0.5rem;
    flex-wrap: wrap;
}

.calendar-hint i {
    color: var(--color-gold);
    font-size: 1rem;
}

/* Container do botão submit - sempre acessível */
/* Container do botão - garantir que nunca seja bloqueado */
.form-submit {
    position: relative;
    z-index: 9999;
    pointer-events: auto;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
    /* CRÍTICO: overflow visible para não cortar botão */
    overflow: visible !important;
    /* Garantir que nenhum overlay invisível bloqueie */
    isolation: isolate;
    /* Garantir que está acima de tudo */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* ========================================
   BOTÃO DE SUBMIT - 100% COMPATÍVEL
   Funciona em TODOS os dispositivos mobile
   ======================================== */
.btn-submit {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    padding: 1.125rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible !important;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-base);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

/* Garantir que o botão específico tenha prioridade máxima */
#btn-submit-booking.btn-submit {
    z-index: 99999 !important;
    position: relative !important;
    pointer-events: auto !important;
}

.btn-submit:hover {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black);
    text-decoration: none;
}

.btn-submit:active {
    background: var(--color-gold-dark);
    box-shadow: var(--shadow-md);
}

.btn-submit:focus {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* REMOVIDO: ::before com animação - pode causar problemas em Android antigo */

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--color-black);
    border-radius: 10px;
    color: var(--color-white);
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-light-gray);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem; /* Fallback para browsers antigos */
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-footer {
    font-size: 1.5rem;
    color: var(--color-white);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--color-gold, #D4AF37);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    grid-gap: 1rem; /* Fallback para browsers antigos */
    gap: 1rem;
}

.footer-social > div {
    display: flex;
    grid-gap: 1rem; /* Fallback para browsers antigos */
    gap: 1rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid rgba(212, 175, 55, 0.2);
    font-size: 1.125rem;
}

.footer-social-link:hover {
    background: var(--gradient-gold);
    color: var(--color-black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-gold);
    text-decoration: none;
}

.footer-title {
    color: var(--color-white) !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-heading {
    color: var(--color-white) !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #d1d5db !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-text a {
    color: var(--color-light-gray) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    position: relative;
}

.footer-text a::after {
    display: none !important;
    content: none !important;
}

.footer-text a:hover {
    color: var(--color-gold) !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.footer-text a:hover::after {
    display: none !important;
    content: none !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-gold) !important;
    text-decoration: none !important;
    transition: all var(--transition-base);
    display: inline-block;
    border-bottom: none !important;
    position: relative;
}

.footer-links a::after {
    display: none !important;
    content: none !important;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--color-gold-light) !important;
    transform: translateX(5px);
    border-bottom: none !important;
    text-decoration: none !important;
}

.footer-links a:hover::after,
.footer-links a:focus::after {
    display: none !important;
    content: none !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #d1d5db !important;
    font-size: 0.9rem;
    margin: 0;
}

.admin-login-link {
    color: var(--color-light-gray) !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    border-bottom: none !important;
    position: relative;
}

.admin-login-link::after {
    display: none !important;
    content: none !important;
}

.admin-login-link:hover {
    color: var(--color-gold) !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.admin-login-link:hover::after {
    display: none !important;
    content: none !important;
}


/* ========================================
   UTILITY CLASSES & ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-hero-entrance {
    animation: heroEntrance 1.2s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease 0.3s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    margin: var(--spacing-xl) 0;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-width: 120px;
    transition: all var(--transition-base);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-2xl);
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(20px);
}

.hero-image-container:hover::before {
    opacity: 0.4;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    transition: transform var(--transition-slow), filter var(--transition-base);
    filter: brightness(0.95) contrast(1.1);
    border: 3px solid rgba(212, 175, 55, 0.2);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.08) translateY(-5px);
    filter: brightness(1) contrast(1.15);
}

/* Premium Card */
.premium-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(212, 175, 55, 0.05);
    transition: all var(--transition-base);
    border: 2px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.premium-card:hover::after {
    opacity: 1;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
    z-index: 1;
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: var(--spacing-3xl);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.process-step:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto var(--spacing-lg);
    box-shadow: var(--shadow-gold);
    position: relative;
    transition: all var(--transition-base);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity var(--transition-base);
}

.process-step:hover .step-number::before {
    opacity: 0.6;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    font-family: 'Playfair Display', serif;
}

.step-description {
    color: var(--color-gray-600);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Booking Card */
.booking-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: var(--spacing-4xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-gold);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.booking-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.booking-card:hover::after {
    opacity: 1;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--color-white);
    padding: var(--spacing-md) 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.urgency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    text-align: center;
}

.urgency-banner strong {
    font-weight: 700;
    font-size: 1.1rem;
}

.countdown {
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.stats-section .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-3xl);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.4);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-gold);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    animation: statPulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--color-light-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes statPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Additional Button Styles */
.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-secondary:hover {
    background: var(--gradient-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-black);
    text-decoration: none;
}

/* Lead Text */
.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-gray-700);
}

/* Button Outline - Agora também dourado */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.75rem;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left var(--transition-base);
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    text-decoration: none;
}

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: var(--spacing-lg) auto;
    border-radius: var(--radius-full);
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    pointer-events: none;
}

/* PRELOADER REMOVIDO - Não é mais necessário */

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet - Large Mobile (Portrait) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem; /* Fallback para browsers antigos */
    gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        grid-gap: 2rem; /* Fallback para browsers antigos */
    gap: 2rem;
        text-align: center;
    }
    
    .footer-social > div {
        justify-content: center;
    }
}

/* Tablet - Mobile Landscape */
@media (max-width: 968px) {
    /* NAVIGATION */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 35px !important;
    }
    
    .navbar-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--gradient-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        gap: 1.5rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .menu-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
    }
    
    .menu-toggle-label span {
        width: 100%;
        height: 3px;
        background: var(--color-white);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    #menu-toggle:checked ~ .navbar-menu {
        display: flex;
        left: 0;
    }
    
    #menu-toggle:checked ~ .menu-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    #menu-toggle:checked ~ .menu-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ .menu-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .navbar-menu li {
        width: 100%;
        text-align: center;
    }
    
    .navbar-menu .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-menu .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    .btn-agendar-nav {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 1rem auto 0;
        padding: 0.75rem 1.5rem;
    }
    
    .user-greeting-wrapper {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
    }

    /* HERO SECTION */
    .hero {
        min-height: 85vh;
        height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
    
    .hero-image {
        height: 400px !important;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-stat {
        min-width: 100px;
        padding: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .d-flex.gap-3.flex-wrap {
        justify-content: center;
        gap: 1rem !important;
    }
    
    .btn-hero, .btn-outline {
        width: 100%;
        max-width: 250px;
    }

    /* ABOUT SECTION */
    .about-content {
        grid-template-columns: 1fr;
        grid-gap: 2rem; /* Fallback para browsers antigos */
    gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem; /* Fallback para browsers antigos */
    gap: 1.5rem;
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem; /* Fallback para browsers antigos */
    gap: 1rem;
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr;
        grid-gap: 2rem; /* Fallback para browsers antigos */
    gap: 2rem;
    }

    /* BOOKING FORM */
    .booking-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-row,
    .row {
        margin: 0;
    }
    
    .form-row > *,
    .row > * {
        padding: 0.5rem 0;
    }
    
    .time-slot-label {
        flex: 0 0 auto;
        min-width: 80px;
    }
    
    .time-slot {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    /* FOOTER */
    .footer-content {
        flex-direction: column;
        grid-gap: 1rem; /* Fallback para browsers antigos */
    gap: 1rem;
        text-align: center;
    }
}

/* Mobile - Large */
@media (max-width: 768px) {
    /* TYPOGRAPHY */
    .section-title {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* SECTIONS */
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* HERO */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 1rem 0.5rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.25rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        height: 300px !important;
    }
    
    .hero-stats {
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .hero-stat {
        min-width: 90px;
        padding: 0.75rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .btn-hero, .btn-outline {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 220px;
    }
    
    /* ABOUT */
    .premium-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    /* STATS */
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* SERVICES */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    /* PROCESS */
    .process-step {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-gap: 1rem; /* Fallback para browsers antigos */
    gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* CONTACT */
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .map-wrapper {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .map-container,
    iframe {
        height: 300px;
        width: 100%;
        border-radius: 15px;
    }
    
    .map-link-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    /* BOOKING */
    .booking-card {
        padding: 1.5rem;
    }
    
    .booking-form {
        padding: 0;
    }
    
    .form-control,
    .form-select {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .time-slot-label {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
    
    .time-slot {
        width: 100%;
        text-align: center;
    }
    
    .btn-submit,
    button[type="submit"] {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    /* ========================================
       CALENDÁRIO VISUAL - MOBILE (max-width: 768px)
       Layout Compacto e Otimizado
       ======================================== */
    .calendar-visual-container {
        padding: 1rem;
        margin: 1.5rem 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .calendar-visual-container label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .calendar-container {
        padding: 10px;
        margin: 0 -10px;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        width: calc(100% + 20px);
        max-width: 100vw;
    }
    
    .calendar {
        min-width: 100%;
        width: 100%;
        font-size: 14px;
        display: table;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0;
    }
    
    .calendar th,
    .calendar td {
        padding: 10px 6px;
        font-size: 13px;
        text-align: center;
        vertical-align: middle;
        box-sizing: border-box;
    }
    
    /* Coluna de horários fixa (sticky) em mobile */
    .calendar th.time-header-column,
    .calendar th:first-child {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        z-index: 10;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2)) !important;
        min-width: 70px;
        width: 70px;
        max-width: 70px;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15);
        border-right: 2px solid rgba(212, 175, 55, 0.3);
    }
    
    .calendar td.time-column,
    .calendar td:first-child {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        z-index: 5;
        background: rgba(255, 255, 255, 0.98) !important;
        font-weight: 600;
        color: var(--color-gold);
        min-width: 70px;
        width: 70px;
        max-width: 70px;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
        border-right: 2px solid rgba(212, 175, 55, 0.2);
    }
    
    .calendar td {
        height: 50px;
        min-height: 50px;
        max-height: 50px;
    }
    
    .calendar th {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Colunas de dias com largura igual distribuída */
    .calendar th:not(:first-child),
    .calendar td:not(:first-child) {
        width: calc((100% - 70px) / 5);
        min-width: 80px;
        max-width: none;
    }
    
    /* Garantir que células não quebrem */
    .calendar td:not(:first-child) {
        overflow: visible;
        white-space: nowrap;
    }
    
    .time-slot {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-width: 60px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: inline-block;
        line-height: 1.3;
    }
    
    .time-slot:hover,
    .time-slot:focus {
        transform: scale(1.03);
    }
    
    .time-slot:active {
        transform: scale(0.98);
    }
    
    .calendar-hint {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        flex-wrap: wrap;
    }
    
    .calendar-hint i {
        font-size: 0.9rem;
    }
    
    /* FOOTER */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        color: var(--color-gold) !important;
        text-decoration: none !important;
        transition: color 0.3s ease;
        border-bottom: none !important;
    }
    
    .footer-links a:hover {
        color: var(--color-gold-light) !important;
        border-bottom: none !important;
    }
    
    .footer-links a::after {
        display: none !important;
        content: none !important;
    }
    
    .footer-title {
        color: var(--color-white) !important;
    }
    
    .footer-heading {
        color: var(--color-white) !important;
    }
    
    .footer-text {
        color: #d1d5db !important;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-login-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--color-light-gray);
        text-decoration: none;
        font-size: 0.85rem;
    }
    
    .admin-login-link:hover {
        color: var(--color-gold);
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* FLOATING CTA */
}

/* ========================================
   MOBILE - SMALL (max-width: 640px)
   Ajustes Adicionais para Telas Pequenas
   ======================================== */
@media (max-width: 640px) {
    /* CONTAINER */
    .container {
        padding: 0 1rem;
    }
    
    /* TYPOGRAPHY */
    .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    /* HEADER */
    .logo {
        font-size: 1.3rem;
    }
    
    /* SERVICES */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    /* BUTTONS */
    .btn-hero,
    .btn-services,
    .btn-submit {
        padding: 0.8rem 1.75rem;
        font-size: 0.95rem;
    }
    
    /* CONTACT */
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    /* CALENDÁRIO - Ajustes Adicionais */
    .calendar-visual-container {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .calendar-container {
        padding: 8px;
        margin: 0 -8px;
        width: calc(100% + 16px);
    }
    
    .calendar th:first-child,
    .calendar td:first-child {
        min-width: 65px;
        width: 65px;
        max-width: 65px;
        font-size: 0.75rem;
    }
    
    .calendar th:not(:first-child),
    .calendar td:not(:first-child) {
        width: calc((100% - 65px) / 5);
        min-width: 75px;
    }
    
    .calendar th,
    .calendar td {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .calendar td {
        height: 45px;
        min-height: 45px;
        max-height: 45px;
    }
    
    .time-slot {
        padding: 6px 8px;
        font-size: 0.75rem;
        min-width: 55px;
    }
}

/* Mobile - Small */
@media (max-width: 480px) {
    /* HERO */
    .hero {
        padding: 1rem 0.5rem;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1.1rem);
    }
    
    .hero-image {
        height: 250px !important;
    }
    
    .hero-stats {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .hero-stat {
        min-width: 80px;
        padding: 0.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    .btn-hero, .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* SECTIONS */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* ABOUT */
    .about-image img {
        border-radius: 8px;
    }
    
    /* SERVICES */
    .service-card {
        padding: 1.25rem 1rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-price {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    /* GALLERY */
    .gallery-item {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    /* PROCESS */
    .process-step {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    /* CONTACT */
    .map-wrapper {
        grid-gap: 0.75rem; /* Fallback para browsers antigos */
    gap: 0.75rem;
    }
    
    .map-description-text {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-link-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
        grid-gap: 0.5rem; /* Fallback para browsers antigos */
    gap: 0.5rem;
    }
    
    /* BOOKING */
    .booking-card {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-control,
    .form-select {
        padding: 0.75rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .time-slot-label {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
    }
    
    .time-slot {
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .btn-submit,
    button[type="submit"] {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    button[name="load_times"] {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* FOOTER */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .logo-footer {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        color: #d1d5db !important;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-title {
        color: var(--color-white) !important;
    }
    
    .footer-heading {
        color: var(--color-white) !important;
    }
    
    .footer-text {
        color: #d1d5db !important;
    }
    
    .footer-links a {
        color: var(--color-gold) !important;
        border-bottom: none !important;
    }
    
    .footer-links a::after {
        display: none !important;
        content: none !important;
    }
    
    .admin-login-link {
        font-size: 0.75rem;
    }
    
    /* FLOATING CTA */
    
    /* URGENCY BANNER */
    .urgency-banner {
        font-size: 0.85rem;
        padding: 0.75rem 0;
    }
    
    .urgency-banner-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .urgency-banner .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ========================================
   MOBILE - EXTRA SMALL (max-width: 320px)
   Layout Mínimo para iPhone 4/5 antigos
   ======================================== */
@media (max-width: 320px) {
    /* CALENDÁRIO - Layout Ultra Compacto */
    .calendar-visual-container {
        padding: 0.25rem;
        margin: 0.25rem 0;
    }
    
    .calendar-container {
        padding: 3px;
    }
    
    .calendar th:first-child,
    .calendar td:first-child {
        min-width: 50px;
        width: 50px;
        max-width: 50px;
        font-size: 0.6rem;
    }
    
    .calendar th:not(:first-child),
    .calendar td:not(:first-child) {
        width: calc((100% - 50px) / 5);
        min-width: 60px;
    }
    
    .calendar th,
    .calendar td {
        padding: 4px 2px;
        font-size: 9px;
    }
    
    .calendar td {
        height: 35px;
        min-height: 35px;
        max-height: 35px;
    }
    
    .time-slot {
        padding: 3px 4px;
        font-size: 0.6rem;
        min-width: 40px;
    }
    
    /* Outros elementos para telas ultra pequenas */
    .hero-title {
        font-size: 1.35rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
    }
    
    .btn-hero,
    .btn-services,
    .btn-submit {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   MOBILE - MINI (max-width: 360px)
   Layout Mínimo para Telas Muito Pequenas
   ======================================== */
@media (max-width: 360px) {
    /* CALENDÁRIO - Layout Mínimo */
    .calendar-visual-container {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .calendar-container {
        padding: 5px;
    }
    
    .calendar th:first-child,
    .calendar td:first-child {
        min-width: 55px;
        width: 55px;
        max-width: 55px;
        font-size: 0.65rem;
    }
    
    .calendar th:not(:first-child),
    .calendar td:not(:first-child) {
        width: calc((100% - 55px) / 5);
        min-width: 65px;
    }
    
    .calendar th,
    .calendar td {
        padding: 5px 2px;
        font-size: 10px;
    }
    
    .calendar td {
        height: 38px;
        min-height: 38px;
        max-height: 38px;
    }
    
    .time-slot {
        padding: 4px 5px;
        font-size: 0.65rem;
        min-width: 45px;
    }
    
    /* Outros elementos para telas muito pequenas */
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .service-card {
        padding: 1.25rem 0.9rem;
    }
    
    .btn-hero,
    .btn-services,
    .btn-submit {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Desktop - Garantir que não há overflow horizontal */
@media (min-width: 1025px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1200px;
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }
    
    /* Garantir que todos os grids respeitem o container */
    .services-grid,
    .gallery-grid,
    .contact-grid,
    .about-content,
    .form-row {
        max-width: 100%;
        width: 100%;
    }
    
    .navbar-menu {
        display: flex !important;
    }
    
    .menu-toggle-label {
        display: none !important;
    }
}

/* Garantir responsividade geral */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .row {
        margin: 0;
    }
    
    .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
        width: 100%;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

