body {
    font-family: 'Segoe UI', sans-serif;
    background: #F5F5F5;
    color: #1A1A1A;
}

section{
    padding:60px 0;
}



/* HERO */

.hero {
    min-height: 65vh;

    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.75)
        ),
        url("img/salaoprem.png");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;

    padding-top: 140px;
}

.hero-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.hero img {
    max-width: 100%;
    height: auto;
    border: 3px solid #D4AF37;
    border-radius: 18px;
    padding: 8px;
    align-self: center;
}

.hero h1 {
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2rem;
}

.hero .lead {
    color: #d8d8d8;
    font-size: 1rem;
}

/* ==========================
   HEADER PREMIUM
========================== */

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(10,10,10,.95);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(212,175,55,.20);
}

.header-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.header-logo{
    height:60px;
    width:auto;
}

.main-nav{
    display:flex;
    gap:12px;
}

.main-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.main-nav a:hover{
    color:#D4AF37;
}

.logo-link{
    display:flex;
    align-items:center;
}

/* BOTÕES */

.btn-warning {
    background: #D4AF37;
    border: none;
    color: black;
    font-weight: bold;
    padding: 12px 30px;
}

.btn-warning:hover {
    background: #E5C158;
    transform: translateY(-2px);
}

.btn-success {
    background: #D4AF37;
    border: none;
    color: black;
    font-weight: bold;
}

.btn-success:hover {
    background: #E5C158;
    color: black;
}



/* TITULOS */

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SOBRE */

#sobre {
    background: white;
}

.about-image {
    border: 3px solid #D4AF37;
    border-radius: 18px;
    padding: 8px;
    background: white;

    box-shadow:
        0 8px 25px rgba(0,0,0,.10),
        0 0 20px rgba(212,175,55,.15);

    transition: all .3s ease;
}

.about-image:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(212,175,55,.30),
        0 0 25px rgba(212,175,55,.25);
}

/* SERVIÇOS */

#servicos {
    background: #0B0B0B;
    color: white;
}

.service-card {
    transition: .3s;
    border: none;
    border-radius: 15px;
    background: #1A1A1A;
    color: white;
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212,175,55,.25);
}

.service-card h4 {
    color: #D4AF37;
}

/* GALERIA */

#galeria {
    background: #F5F5F5;
}

.gallery img {
    width: 100%;
    height: 220px;

    object-fit: contain;
    object-position: center;

    border: none;

    border: 3px solid #D4AF37;
    border-radius: 18px;

    padding: 6px;
    background: white;

    transition: all .3s ease;

    box-shadow:
        0 5px 15px rgba(0,0,0,.12),
        0 0 0 1px rgba(212,175,55,.15);
}

.gallery img:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(212,175,55,.35),
        0 0 20px rgba(212,175,55,.20);
}

/* DEPOIMENTOS */

#depoimentos {
    background: #0B0B0B;
    color: white;
}

.testimonial {
    background: #1A1A1A;
    color: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #D4AF37;
    transition: .3s;
}

.testimonial:hover {
    transform: translateY(-5px);
}

/* CONTATO */

#contato {
    background: white;
}

/* FOOTER */

footer {
    background: #000;
    color: #D4AF37;
    padding: 30px 0;
}

/* IMAGENS */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ANIMAÇÃO SUAVE */

.card,
.btn,
img,
.testimonial {
    transition: all .3s ease;
}

/* RESPONSIVE */

@media (max-width: 768px){

    .header-content{
        flex-direction:column;
        gap:15px;
    }

    .main-nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        padding-top:200px;
    }

    .hero-logo{
        max-width:300px;
    }

}

/* ==================================
   TABLET
================================== */

@media (min-width:768px){

    .hero{
        min-height:75vh;
    }

    .hero-logo{
        max-width:400px;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero .lead{
        font-size:1.2rem;
    }

    .gallery img{
        height:260px;
    }

}

/* ==================================
   DESKTOP
================================== */

@media (min-width:1200px){

    .hero{
        min-height:90vh;
    }

    .hero-logo{
        max-width:550px;
    }

    .hero h1{
        font-size:4rem;
    }

    .hero .lead{
        font-size:1.35rem;
    }

    .gallery img{
        height:320px;
    }

}