/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #d4af37; /* Dourado Whisky */
    --hover-color: #b5922b;
    --dark-bg: #1a1a1a;
    --darker-bg: #111;
    --text-light: #f4f4f4;
    --text-gray: #ccc;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.highlight {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/no-salão-de-cabeleleiro.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Particle/Gradient Overlay Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #000 150%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: -webkit-linear-gradient(#fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

/* Promoção Section */
.promo-section {
    padding: 100px 0;
    background-image: url('images/no-carro-normal.jpg'); /* Parallax Background */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

/* Overlay Escura para ler texto */
.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.promo-box {
    position: relative; /* Para ficar acima do overlay */
    border: 2px solid var(--primary-color);
    padding: 50px;
    border-radius: 15px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s;
}

.promo-box:hover {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.glass-effect {
    /* Reforço de efeito vidro */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-promo {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.promo-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.promo-text {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.promo-text strong {
    color: #fff;
    text-decoration: underline decoration-color var(--primary-color);
}

.promo-sub {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-style: italic;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: start;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.big-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    background-color: #000;
    color: #aaa;
    font-size: 0.9rem;
}

/* Lightbox / Modal */
.lightbox {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9); 
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* Ajuste no cursor da galeria */
.gallery-item img {
    cursor: zoom-in;
}

/* Responsive Lightbox */
@media only screen and (max-width: 700px){
    .lightbox-content {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Ajuste para evitar sobreposição */
    .hero {
        padding-top: 120px; /* Mais espaço no topo para compensar header maior */
        height: auto;
        min-height: 100vh;
    }

    .hero-content h2 {
        font-size: 2.2rem;
        padding: 0 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-section h2 {
        font-size: 2rem;
    }

    .section-title.left {
        text-align: center;
    }
    .bio-flex {
        flex-direction: column;
        text-align: center;
    }
    .bio-image img {
        box-shadow: 10px 10px 0 var(--primary-color);
    }
    .bio-stats {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.btn-primary {
    animation: pulse 2s infinite;
}

/* Bio Section */
.bio-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.bio-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.bio-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.bio-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-color);
    transition: transform 0.5s ease;
}

.bio-image:hover img {
    transform: translate(-10px, -10px);
}

.bio-content {
    flex: 1.5;
    min-width: 300px;
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2.8rem;
}

.bio-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.bio-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}
