:root {
    /* PALETA BARBEARIA ALBUQUERQUE */
    --gold: #D4AF37;           /* Dourado da Logo */
    --gold-dim: #8a6b1e;       /* Dourado escuro para degradês */
    --brand-green: #3E5F46;    /* Verde Musgo (Paredes/Logo) */
    --dark-green: #131F18;     /* Verde muito escuro para fundos */
    --dark: #080a09;           /* Preto quase verde */
    --text-muted: #b3b3b3;
    --white: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Fundo alterado para um degradê que sai do Verde Musgo escuro para o preto */
    background: radial-gradient(circle at top, #1F3326 0%, #050505 60%);
    color: var(--white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

::selection {
    background-color: var(--brand-green);
    color: #fff;
}

/* =========================
   LOADER PREMIUM
==========================*/
.loader {
    position: fixed;
    inset: 0;
    /* Fundo do loader seguindo a identidade */
    background: radial-gradient(circle at center, #131F18 0, #000 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(62, 95, 70, 0.4)); /* Glow verde na logo */
}

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 10px;
}

.loader-ring {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 30px auto 15px;
}

.loader-ring::before,
.loader-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(62, 95, 70, 0.25); /* Verde translúcido */
}

.loader-ring::after {
    border-top-color: var(--gold);
    border-right-color: var(--brand-green); /* Mistura Ouro e Verde */
    animation: spin 1.4s linear infinite;
}

.loader-bar {
    width: 220px;
    height: 3px;
    background: rgba(62, 95, 70, 0.2);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.1);
    margin-bottom: 10px;
}

.loader-bar span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loading-bar 1.4s infinite;
}

.loader-text {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes loading-bar {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* =========================
   NAVBAR
==========================*/
.navbar {
    background: rgba(10, 15, 12, 0.95); /* Fundo esverdeado bem escuro */
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(62, 95, 70, 0.3); /* Borda verde suave */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.navbar-brand {
    color: var(--gold) !important;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand img {
    height: 50px; 
    width: auto;  
    object-fit: contain; 
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: #eee !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================
   HERO
==========================*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
            /* Gradiente usando o Verde da Parede */
            radial-gradient(circle at top left, rgba(62, 95, 70, 0.25), transparent 55%),
            radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.1), transparent 55%),
            linear-gradient(135deg, var(--dark-green), #000 50%, var(--dark-green) 100%);
    opacity: 0.95;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--brand-green);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 18px;
    background: rgba(19, 31, 24, 0.8);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 14px;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-meta-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-meta-item strong {
    display: block;
    color: var(--brand-green); /* Destaque em verde */
    font-size: 1.1rem;
    filter: brightness(1.5);
}

.hero-showcase {
    position: relative;
    z-index: 2;
}

.hero-card {
    border-radius: 20px;
    padding: 24px;
    /* Card com fundo levemente verde */
    background: radial-gradient(circle at top, #1c2e24 0, #0a0e0c 70%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.hero-card-header h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-avatars {
    display: flex;
    gap: 6px;
}

.hero-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
    border: 2px solid #111;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-stats span strong {
    display: block;
    color: #fff;
    font-size: 1rem;
}

/* BOTÕES */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8962e);
    color: #000;
    border-radius: 999px;
    border: none;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 14px 40px rgba(212,175,55,0.2);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-gold:hover::before {
    transform: translateX(100%);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-radius: 999px;
    border: 1px solid var(--gold);
    padding: 11px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

/* =========================
   SEÇÕES
==========================*/
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
}

.section-title p {
    color: var(--text-muted);
    margin-top: 10px;
}

/* SOBRE */
.about {
    /* Fundo degradê sutil Verde->Preto */
    background: radial-gradient(circle at top, #15241c 0, #050505 65%);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.badge-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.badge-line span {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.about-highlight {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.about-highlight-item strong {
    display: block;
    color: var(--brand-green);
    filter: brightness(1.4);
    font-size: 1.2rem;
}

.about-highlight-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.about-visual {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(62, 95, 70, 0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.85);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* PROFISSIONAIS */
.professional-card {
    border-radius: 20px;
    overflow: hidden;
    /* Fundo do card em verde musgo escuro */
    background: radial-gradient(circle at top, #1a2920 0, #0f1411 70%);
    border: 1px solid rgba(62, 95, 70, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.professional-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(62, 95, 70, 0.15);
    border-color: var(--gold);
}

.professional-image {
    width: 100%;
    height: 350px; 
    /* Gradiente atrás da foto */
    background: linear-gradient(135deg, #1c2e24, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top center; 
    display: block;
    transition: transform 0.5s ease;
}

.professional-card:hover .professional-image img {
    transform: scale(1.05);
}

.professional-image i {
    font-size: 3rem;
    color: var(--gold);
}

.professional-info {
    padding: 22px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.professional-info h3 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.professional-info p.role {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.professional-info p.desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   CORTES 
===========================================*/
.haircuts {
    /* Fundo preto puro para contraste */
    background: #050505;
}

.haircut-card {
    border-radius: 18px;
    /* Fundo com leve toque esverdeado */
    background: linear-gradient(135deg, rgba(62, 95, 70, 0.08), rgba(20,20,20,0.95));
    border: 1px solid rgba(62, 95, 70, 0.2);
    padding: 18px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.9);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.haircut-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(212,175,55,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.haircut-card:hover::before {
    opacity: 1;
}

.haircut-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.8);
    border-color: var(--gold);
}

/* Container da Imagem do Corte */
.haircut-image {
    width: 100%;
    height: 190px;
    border-radius: 14px;
    /* Fundo do placeholder em verde musgo */
    background: linear-gradient(135deg, var(--brand-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden; 
    position: relative;
}

.haircut-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.haircut-card:hover .haircut-image img {
    transform: scale(1.1);
}

.haircut-image i {
    font-size: 2.8rem;
    color: #111;
    z-index: 2; 
}

.haircut-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.haircut-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 6px 0 10px;
}

.haircut-price {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.2rem;
}

/* AGENDAMENTO */
.schedule {
    background: radial-gradient(circle at top, #15241c 0, #050505 70%);
}

.schedule-info {
    background: rgba(19, 31, 24, 0.9); /* Card esverdeado */
    border-radius: 18px;
    padding: 24px 28px;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 16px 45px rgba(0,0,0,0.85);
    max-width: 480px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.schedule-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(62, 95, 70, 0.2);
    border-color: var(--gold);
}

.schedule-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 10px 0;
    margin-bottom: 10px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item strong {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* LOCALIZAÇÃO */
.location {
    background: #050505;
}

.location-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(62, 95, 70, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}

.location-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-item i {
    color: var(--gold);
    font-size: 1rem;
}

/* FOOTER */
footer {
    padding: 30px 0;
    background: #080a09;
    border-top: 1px solid rgba(62, 95, 70, 0.2);
    text-align: center;
}

footer .social-links a {
    color: var(--gold);
    margin: 0 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: var(--brand-green);
}

footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-showcase {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}