/* ========================================
   ESPAÇO SOUZA - IDENTIDADE VISUAL
   Paleta: Preto + Dourado/Bronze
======================================== */

:root {
    /* Cores Douradas */
    --gold: #C9A86C;
    --gold-light: #E8D5B0;
    --gold-dark: #8B7355;
    --gold-muted: #A69060;

    /* Cores Escuras */
    --black: #000000;
    --dark: #0a0a0a;
    --dark-light: #111111;
    --dark-lighter: #1a1a1a;
    --dark-card: #0d0d0d;

    /* Cores de Texto */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;

    /* Cores de Status */
    --success: #4a9d6e;
    --warning: #C9A86C;
    --danger: #c45c5c;

    /* Gradientes Dourados */
    --gradient-gold: linear-gradient(135deg, #E8D5B0 0%, #C9A86C 50%, #8B7355 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(201, 168, 108, 0.1) 0%, rgba(139, 115, 85, 0.1) 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);

    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 5px 30px rgba(201, 168, 108, 0.15);
    --shadow-gold-lg: 0 10px 50px rgba(201, 168, 108, 0.2);

    /* Bordas */
    --border-subtle: 1px solid rgba(201, 168, 108, 0.1);
    --border-gold: 1px solid rgba(201, 168, 108, 0.3);
    --border-light: 1px solid rgba(255, 255, 255, 0.05);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;

    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET E BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   PARTÍCULAS DE FUNDO ELEGANTES
======================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particles::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.03) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: floatGlow 25s ease-in-out infinite;
}

.particles::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.02) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatGlow 30s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    25% { transform: translate(30px, 30px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(0, 60px) scale(1); opacity: 1; }
    75% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.8; }
}

/* ========================================
   PÁGINAS
======================================== */
.pagina {
    display: none;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.pagina.ativa {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   NAVBAR ELEGANTE
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========================================
   HERO SECTION - IMPACTANTE
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 50px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid rgba(201, 168, 108, 0.2);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 35px;
    animation: slideDown 0.8s ease;
}

.hero-badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

.hero-badge span {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.3;
    animation: slideUp 0.8s ease;
}

.title-highlight {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: slideUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 0.4s both;
    max-width: 500px;
}

/* Botões do Hero */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.5s both;
}

.btn-agendar-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold-lg);
}

.btn-agendar-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 108, 0.4);
}

.btn-agendar-hero .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: #25D366;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

.btn-duvidas-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.btn-duvidas-hero:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 108, 0.05);
}

.btn-duvidas-hero i {
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: slideUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 108, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image Area */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.image-placeholder {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(201, 168, 108, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px dashed rgba(201, 168, 108, 0.08);
    border-radius: 50%;
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.6;
}

.floating-card {
    position: absolute;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 108, 0.15);
    padding: 18px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
}

.floating-card i {
    font-size: 1.3rem;
    color: var(--gold);
}

.floating-card span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.floating-card.card-1 {
    top: 30px;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 160px;
    right: -20px;
    animation-delay: 1.3s;
}

.floating-card.card-3 {
    bottom: 80px;
    left: 30px;
    animation-delay: 2.6s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   MAIN CONTENT
======================================== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

/* ========================================
   FEATURES - CARDS ELEGANTES
======================================== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 100px;
}

.feature-card {
    background: var(--dark-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 108, 0.25);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid rgba(201, 168, 108, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(201, 168, 108, 0.12);
    border-color: rgba(201, 168, 108, 0.3);
}

.feature-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   CHAT SECTION - ELEGANTE
======================================== */
.chat-section {
    margin-bottom: 100px;
}

/* Chat Principal - Design Premium */
.chat-destaque {
    padding: 80px 30px;
    margin-bottom: 60px;
}

.chat-destaque .section-header {
    margin-bottom: 40px;
}

.chat-destaque .section-header h2 {
    font-size: 2.4rem;
    font-weight: 500;
}

.chat-destaque .section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 450px;
    margin: 0 auto;
}

.chat-destaque .chat-container {
    max-width: 550px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-header h2 i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 1.8rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.chat-container {
    max-width: 520px;
    margin: 0 auto;
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: var(--border-subtle);
    box-shadow: var(--shadow-lg);
}

.chat-header {
    background: linear-gradient(135deg, var(--dark-lighter) 0%, var(--dark-light) 100%);
    border-bottom: var(--border-subtle);
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    width: 55px;
    height: 55px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    font-size: 1.5rem;
    color: var(--gold);
}

.chat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.chat-status {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-status i {
    font-size: 0.5rem;
    color: var(--success);
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 25px;
    background: var(--dark);
}

.mensagem {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    animation: messageIn 0.4s ease;
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.mensagem.user {
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 38px;
    height: 38px;
    background: rgba(201, 168, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msg-avatar i {
    font-size: 0.95rem;
    color: var(--gold);
}

.mensagem.user .msg-avatar {
    background: rgba(201, 168, 108, 0.15);
}

.msg-content {
    background: var(--dark-light);
    border: var(--border-light);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    max-width: 80%;
}

.mensagem.user .msg-content {
    background: rgba(201, 168, 108, 0.1);
    border-color: rgba(201, 168, 108, 0.15);
}

.msg-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.msg-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}

.opcoes-rapidas {
    padding: 18px 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--dark-light);
    border-top: var(--border-light);
}

.opcao-btn {
    background: transparent;
    border: 1px solid rgba(201, 168, 108, 0.2);
    color: var(--gold);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.opcao-btn:hover {
    background: rgba(201, 168, 108, 0.1);
    border-color: var(--gold);
}

.opcao-btn i {
    font-size: 0.85rem;
}

.chat-input {
    display: flex;
    padding: 18px 25px;
    background: var(--dark-light);
    gap: 12px;
    border-top: var(--border-light);
}

.chat-input input {
    flex: 1;
    background: var(--dark);
    border: var(--border-light);
    padding: 16px 22px;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.chat-input input:focus {
    border-color: rgba(201, 168, 108, 0.3);
}

.chat-input input::placeholder {
    color: var(--text-muted);
}

.chat-input button {
    width: 52px;
    height: 52px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.05) 0%, rgba(139, 115, 85, 0.03) 100%);
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 70px 50px;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-agendar {
    position: relative;
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    padding: 20px 55px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-duvidas {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-duvidas:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   SEÇÃO SOBRE
======================================== */
.sobre-section {
    padding: 80px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-content {
    margin-top: 40px;
}

.sobre-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.sobre-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sobre-text strong {
    color: var(--gold-light);
}

.sobre-destaques {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding: 25px;
    background: var(--gradient-gold-subtle);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.destaque-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 25px;
}

/* ========================================
   SEÇÃO GALERIA
======================================== */
.galeria-section {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-content {
    margin-top: 40px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.galeria-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: var(--dark-card);
    border: var(--border-subtle);
}

.galeria-item img,
.galeria-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.galeria-item:hover img,
.galeria-item:hover video {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none; /* Permite cliques passarem para o elemento abaixo */
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    font-size: 2.5rem;
    color: var(--gold);
}

/* Modal de Mídia */
.modal-midia {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-midia.ativo {
    display: flex;
}

.modal-fechar {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(201, 168, 108, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10001;
}

.modal-fechar:hover {
    background: var(--gold);
    color: var(--dark);
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.modal-content img,
.modal-content video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold-lg);
}

#modal-img,
#modal-video {
    display: none;
}

#modal-img.ativo,
#modal-video.ativo {
    display: block;
}

/* ========================================
   SEÇÃO CONTATO
======================================== */
.contato-section {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-content {
    margin-top: 40px;
}

.contato-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contato-item {
    background: var(--dark-card);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.contato-item:hover {
    border-color: rgba(201, 168, 108, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.contato-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold-subtle);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contato-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contato-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contato-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: var(--transition);
}

.contato-link:hover {
    color: var(--gold-light);
}

.contato-link i {
    font-size: 0.85rem;
}

/* ========================================
   FOOTER ELEGANTE
======================================== */
.footer {
    background: var(--dark-light);
    border-top: var(--border-subtle);
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.footer-info h3 i {
    color: var(--gold);
    font-size: 1.4rem;
}

.footer-info p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
    font-size: 0.95rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold);
}

.footer-link i {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 108, 0.05);
    border: 1px solid rgba(201, 168, 108, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: rgba(201, 168, 108, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: var(--border-light);
    padding: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   PÁGINA DE AGENDAMENTO
======================================== */
#pagina-agendamento {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    overflow-y: auto;
}

#pagina-agendamento.ativa {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
}

.agendamento-container {
    position: relative;
    background: var(--dark-light);
    border-radius: var(--radius-xl);
    padding: 45px;
    max-width: 620px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: var(--border-subtle);
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.btn-fechar {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-fechar:hover {
    background: rgba(196, 92, 92, 0.1);
    border-color: rgba(196, 92, 92, 0.3);
    color: var(--danger);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 45px;
}

.progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 25px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    width: 33%;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: var(--transition);
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-step.completed .step-icon {
    background: var(--success);
    border-color: var(--success);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.progress-step.active .step-icon {
    background: rgba(201, 168, 108, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.progress-step span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.progress-step.active span {
    color: var(--text-primary);
}

/* Etapas */
.etapa {
    display: none;
    animation: fadeIn 0.5s ease;
}

.etapa.ativa {
    display: block;
}

.etapa-header {
    text-align: center;
    margin-bottom: 35px;
}

.etapa-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.etapa-header h2 i {
    color: var(--gold);
    margin-right: 12px;
}

.etapa-header p {
    color: var(--text-muted);
}

.form-card {
    background: var(--dark);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 10px;
    color: var(--gold);
}

.form-group input,
.form-group select {
    width: 100%;
    background: var(--dark-light);
    border: var(--border-light);
    padding: 16px 22px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(201, 168, 108, 0.4);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Horários Grid */
.horarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.horario-btn {
    padding: 14px;
    background: var(--dark-light);
    border: var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.horario-btn:hover {
    border-color: rgba(201, 168, 108, 0.3);
    color: var(--gold);
}

.horario-btn.selected {
    background: rgba(201, 168, 108, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* Horário fixo (dia inteiro) */
.horario-fixo {
    display: flex;
    justify-content: center;
}

.horario-fixo .horario-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.horario-fixo .horario-btn i {
    font-size: 1.5rem;
    color: var(--gold);
}

.horario-detalhe {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.horario-btn.selected .horario-detalhe {
    color: var(--gold-light);
}

/* Preview de preços */
.info-preco {
    background: var(--dark-light);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    margin-top: 15px;
}

.preco-linha {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.preco-linha:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preco-linha i {
    color: var(--gold);
    margin-right: 8px;
}

.preco-linha strong {
    color: var(--gold);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(201, 168, 108, 0.05);
    border: 1px solid rgba(201, 168, 108, 0.1);
    padding: 18px;
    border-radius: var(--radius-sm);
    margin-top: 22px;
}

.info-box i {
    color: var(--gold);
    font-size: 1.2rem;
}

.info-box span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Botões de Navegação */
.btn-group {
    display: flex;
    gap: 18px;
}

.btn-next,
.btn-back,
.btn-confirmar {
    flex: 1;
    padding: 16px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-next {
    background: var(--gradient-gold);
    color: var(--dark);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-back {
    background: transparent;
    border: var(--border-light);
    color: var(--text-secondary);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.03);
}

.btn-confirmar {
    background: var(--success);
    color: #fff;
}

.btn-confirmar:hover {
    box-shadow: 0 10px 30px rgba(74, 157, 110, 0.3);
}

/* Modal de Senha Admin */
.modal-senha {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.modal-senha.ativo {
    display: flex;
}

.modal-senha-content {
    background: var(--dark-light);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-senha-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.modal-senha-content h2 i {
    margin-right: 10px;
}

.modal-senha-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.modal-senha-content input {
    width: 100%;
    padding: 15px;
    background: var(--dark);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.modal-senha-content input:focus {
    outline: none;
    border-color: var(--gold);
}

.modal-senha-buttons {
    display: flex;
    gap: 15px;
}

.modal-senha-buttons button {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancelar {
    background: transparent;
    border: var(--border-subtle);
    color: var(--text-secondary);
}

.btn-cancelar:hover {
    border-color: var(--text-muted);
}

.btn-entrar {
    background: var(--gradient-gold);
    border: none;
    color: var(--dark);
}

.btn-entrar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-entrar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Login Form */
.login-form {
    margin-bottom: 25px;
}

.login-field {
    display: flex;
    align-items: center;
    background: var(--dark);
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.login-field:focus-within {
    border-color: var(--gold);
}

.login-field i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
}

.login-field input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 12px;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: left;
    letter-spacing: normal;
    margin-bottom: 0;
}

.login-field input:focus {
    outline: none;
}

.login-field input::placeholder {
    color: var(--text-muted);
}

.login-erro {
    background: rgba(196, 92, 92, 0.1);
    border: 1px solid rgba(196, 92, 92, 0.3);
    color: var(--danger);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 10px;
}

.btn-loading {
    margin-left: 8px;
}

/* Timer de Pagamento */
.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 30px;
    margin-bottom: 25px;
}

.timer-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 108, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.timer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.timer-display {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

/* PIX Card */
.pix-card {
    background: var(--dark);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    margin-bottom: 30px;
}

/* Resumo de valores */
.valores-resumo {
    background: var(--dark);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.valor-linha {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.valor-linha:last-child {
    border-bottom: none;
}

.valor-linha.valor-total-linha {
    border-top: 1px solid rgba(201, 168, 108, 0.3);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.valor-linha.valor-total-linha span:last-child {
    color: var(--gold);
}

#tipo-dia {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pix-valor {
    margin-bottom: 35px;
}

.valor-label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.valor-numero {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    display: block;
}

.valor-restante {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.valor-restante strong {
    color: var(--text-secondary);
}

.qr-code-container {
    margin-bottom: 30px;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: var(--radius-md);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-code i {
    font-size: 5rem;
    color: var(--dark);
    opacity: 0.3;
}

.qr-code span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.qr-code-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.pix-chave {
    margin-bottom: 28px;
}

.chave-label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.chave-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--dark-light);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.chave-box span {
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 0.7rem;
    word-break: break-all;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
}

.btn-copiar {
    background: rgba(201, 168, 108, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 108, 0.2);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-copiar:hover {
    background: rgba(201, 168, 108, 0.15);
    border-color: var(--gold);
}

.pix-instrucoes {
    text-align: left;
}

.pix-instrucoes p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.pix-instrucoes i {
    color: var(--gold);
    width: 20px;
}

/* ========================================
   PÁGINA DE CONFIRMAÇÃO
======================================== */
#pagina-confirmacao {
    background: var(--dark);
}

.confirmacao-container {
    max-width: 520px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.confirmacao-animation {
    margin-bottom: 40px;
}

.checkmark-circle {
    width: 110px;
    height: 110px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease, pulseSuccess 2s infinite;
}

.checkmark-circle i {
    font-size: 3.5rem;
    color: #fff;
}

.checkmark-circle.aguardando {
    background: var(--gold);
    animation: scaleIn 0.5s ease, pulseAguardando 2s infinite;
}

@keyframes pulseSuccess {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 157, 110, 0.4); }
    50% { box-shadow: 0 0 0 25px rgba(74, 157, 110, 0); }
}

@keyframes pulseAguardando {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 108, 0.4); }
    50% { box-shadow: 0 0 0 25px rgba(201, 168, 108, 0); }
}

.confirmacao-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.confirmacao-subtitle {
    color: var(--text-muted);
    margin-bottom: 45px;
    font-size: 1.05rem;
}

.resumo-card {
    background: var(--dark-light);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 35px;
    text-align: left;
}

.resumo-header {
    background: var(--gradient-gold);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 600;
}

.resumo-header i {
    font-size: 1.2rem;
}

.resumo-body {
    padding: 25px;
}

.resumo-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: var(--border-light);
}

.resumo-item:last-child {
    border-bottom: none;
}

.resumo-item i {
    width: 45px;
    height: 45px;
    background: rgba(201, 168, 108, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.resumo-item div {
    display: flex;
    flex-direction: column;
}

.item-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.item-value {
    font-weight: 500;
    color: var(--text-primary);
}

.confirmacao-aviso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(201, 168, 108, 0.05);
    border: var(--border-subtle);
    padding: 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 35px;
}

.confirmacao-aviso i {
    color: var(--gold);
    font-size: 1.1rem;
}

.confirmacao-aviso p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.confirmacao-aviso.aguardando {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.confirmacao-aviso.aguardando i {
    color: #25D366;
}

/* Aviso PIX */
.pix-aviso {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    margin-bottom: 25px;
}

.pix-aviso i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 2px;
}

.pix-aviso p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Botão WhatsApp Comprovante */
.btn-whatsapp-comprovante {
    background: #25D366 !important;
    color: white !important;
}

.btn-whatsapp-comprovante:hover {
    background: #20bd5a !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* ========================================
   CHAT COM MODERADOR (FULL)
======================================== */
#pagina-chat-moderador {
    background: var(--dark);
}

.chat-full-container {
    max-width: 620px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.chat-full-header {
    background: var(--dark-light);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: var(--border-subtle);
}

.btn-voltar-chat {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-voltar-chat:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.chat-full-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.chat-full-avatar {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-full-avatar i {
    font-size: 1.3rem;
    color: var(--gold);
}

.chat-full-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.chat-full-status {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chat-full-status i {
    color: var(--success);
    font-size: 0.5rem;
    margin-right: 6px;
}

.chat-full-actions button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px;
    cursor: pointer;
}

.chat-full-messages {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    background: var(--dark);
}

.chat-full-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: var(--dark-light);
    border-top: var(--border-light);
}

.chat-full-input input {
    flex: 1;
    background: var(--dark);
    border: var(--border-light);
    padding: 16px 22px;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
}

.chat-full-input input::placeholder {
    color: var(--text-muted);
}

.btn-emoji,
.btn-attach {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.btn-emoji:hover,
.btn-attach:hover {
    color: var(--gold);
}

.btn-send {
    width: 52px;
    height: 52px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.btn-send:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   PÁGINA ADMIN
======================================== */
#pagina-admin {
    background: var(--dark);
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 270px;
    background: var(--dark-light);
    padding: 28px;
    display: flex;
    flex-direction: column;
    border-right: var(--border-subtle);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 45px;
    padding-bottom: 22px;
    border-bottom: var(--border-light);
    color: var(--gold);
}

.admin-logo i {
    color: var(--gold);
}

.admin-nav {
    flex: 1;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    transition: var(--transition);
}

.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.admin-nav a.active {
    background: rgba(201, 168, 108, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 108, 0.2);
}

.admin-nav a i {
    width: 22px;
}

.admin-nav .badge {
    background: var(--danger);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 9px;
    border-radius: 10px;
    margin-left: auto;
}

.admin-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid rgba(196, 92, 92, 0.2);
    color: var(--danger);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.admin-logout:hover {
    background: rgba(196, 92, 92, 0.08);
}

.admin-main {
    flex: 1;
    padding: 35px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.admin-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--text-primary);
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-user span {
    color: var(--text-secondary);
}

.admin-avatar {
    width: 45px;
    height: 45px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

.stat-card {
    background: var(--dark-light);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.blue { background: rgba(100, 150, 200, 0.1); color: #6496c8; }
.stat-icon.green { background: rgba(74, 157, 110, 0.1); color: var(--success); }
.stat-icon.orange { background: rgba(201, 168, 108, 0.1); color: var(--gold); }
.stat-icon.purple { background: rgba(140, 100, 180, 0.1); color: #8c64b4; }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-table-container {
    background: var(--dark-light);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: var(--border-light);
}

.table-header h2 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.table-actions {
    display: flex;
    gap: 12px;
}

.search-input {
    background: var(--dark);
    border: var(--border-light);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: rgba(201, 168, 108, 0.3);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.btn-filter {
    background: var(--dark);
    border: var(--border-light);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter:hover {
    color: var(--gold);
    border-color: rgba(201, 168, 108, 0.3);
}

.btn-refresh {
    background: var(--gold);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-refresh:hover {
    background: var(--gold-light);
    transform: scale(1.02);
}

.btn-refresh i {
    transition: transform 0.3s ease;
}

.btn-refresh:hover i {
    transform: rotate(180deg);
}

/* Botões de ação da tabela admin */
.acoes-cell {
    display: flex;
    gap: 8px;
}

.btn-action {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-action:hover {
    transform: scale(1.05);
}

.btn-action.btn-confirm {
    color: var(--success);
    border-color: rgba(74, 157, 110, 0.3);
}

.btn-action.btn-confirm:hover {
    background: rgba(74, 157, 110, 0.15);
    border-color: var(--success);
}

.btn-action.btn-delete {
    color: var(--danger);
    border-color: rgba(196, 92, 92, 0.3);
}

.btn-action.btn-delete:hover {
    background: rgba(196, 92, 92, 0.15);
    border-color: var(--danger);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 18px 28px;
    text-align: left;
}

.admin-table th {
    background: var(--dark);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tr {
    border-bottom: var(--border-light);
}

.admin-table tr:hover:not(.empty-row) {
    background: rgba(255, 255, 255, 0.01);
}

.empty-state {
    text-align: center;
    padding: 70px 0;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 18px;
    opacity: 0.2;
    color: var(--gold);
}

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 60px;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        min-height: 420px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .title-line {
        font-size: 1.6rem;
    }

    .title-highlight {
        font-size: 2.8rem;
    }

    .chat-destaque {
        padding: 50px 20px;
    }

    .chat-destaque .section-header h2 {
        font-size: 1.7rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-agendar,
    .btn-duvidas {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .horarios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 18px;
    }

    .admin-nav {
        display: flex;
        gap: 10px;
        width: 100%;
        overflow-x: auto;
    }

    .admin-nav a {
        white-space: nowrap;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 14px 18px;
    }

    .sobre-section {
        padding: 60px 20px;
    }

    .sobre-text h3 {
        font-size: 1.5rem;
    }

    .contato-section {
        padding: 60px 20px;
    }

    .contato-card {
        grid-template-columns: 1fr;
    }

    .contato-item {
        flex-direction: column;
        text-align: center;
    }

    .contato-icon {
        margin: 0 auto;
    }

    .galeria-section {
        padding: 60px 20px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .modal-fechar {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 40px;
    }

    .title-line {
        font-size: 1.4rem;
    }

    .title-highlight {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .stat:not(:last-child)::after {
        display: none;
    }

    .image-placeholder {
        width: 280px;
        height: 280px;
    }

    .image-placeholder i {
        font-size: 4rem;
    }

    .floating-card {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .agendamento-container {
        padding: 28px;
    }

    .horarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   BOTÃO FLUTUANTE AGENDAR
======================================== */
.agendar-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 62px;
    height: 62px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4),
                0 0 0 0 rgba(201, 168, 108, 0.4);
    transition: var(--transition);
    animation: agendar-pulse 2s infinite;
}

.agendar-float i {
    color: var(--dark);
    font-size: 26px;
    transition: transform 0.3s ease;
}

.agendar-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 168, 108, 0.5),
                0 0 0 0 rgba(201, 168, 108, 0);
    animation: none;
}

.agendar-float:hover i {
    transform: scale(1.1);
}

.agendar-tooltip {
    position: absolute;
    left: 78px;
    background: var(--dark-light);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    border: var(--border-subtle);
}

.agendar-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--dark-light);
}

.agendar-float:hover .agendar-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes agendar-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4),
                    0 0 0 0 rgba(201, 168, 108, 0.4);
    }
    70% {
        box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4),
                    0 0 0 15px rgba(201, 168, 108, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4),
                    0 0 0 0 rgba(201, 168, 108, 0);
    }
}

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float i {
    color: #ffffff;
    font-size: 30px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5),
                0 0 0 0 rgba(37, 211, 102, 0);
    animation: none;
}

.whatsapp-float:hover i {
    transform: rotate(15deg) scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    background: var(--dark-light);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    pointer-events: none;
    border: var(--border-subtle);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-light);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                    0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                    0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                    0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botão WhatsApp no Hero */
.btn-whatsapp-hero {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    text-decoration: none;
    display: inline-flex;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
    padding: 16px 35px !important;
    font-size: 0.95rem !important;
}

.btn-whatsapp-hero:hover {
    background: rgba(37, 211, 102, 0.08) !important;
    border-color: rgba(37, 211, 102, 0.35) !important;
    color: #25d366 !important;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.btn-whatsapp-hero i {
    font-size: 1.1rem;
    color: #25d366;
}

/* Responsivo Agendar */
@media (max-width: 768px) {
    .agendar-float {
        bottom: 22px;
        left: 22px;
        width: 58px;
        height: 58px;
    }

    .agendar-float i {
        font-size: 24px;
    }

    .agendar-tooltip {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-agendar-hero,
    .btn-whatsapp-hero,
    .btn-duvidas-hero {
        justify-content: center;
        width: 100%;
    }
}

/* Responsivo WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 22px;
        right: 22px;
        width: 58px;
        height: 58px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ========================================
   SCROLLBAR PERSONALIZADA
======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 108, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 168, 108, 0.35);
}

/* ========================================
   SELEÇÃO DE TEXTO
======================================== */
::selection {
    background: rgba(201, 168, 108, 0.3);
    color: var(--text-primary);
}
