# style.css

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f5f0;
    color: #2d221b;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 25, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.logo-container{
    display:flex;
    align-items:center;
}

.logo{
    height:95px;
    width:auto;
    display:block;
}

.logo h2 {
    font-size: 1.8rem;
    color: #fff;
}

.logo span {
    color: #c7b299;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-whatsapp-topo {
    background: #6d4c36;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-whatsapp-topo:hover {
    background: #8a6348;
}

/* HERO */

.hero {
    min-height: 100vh;
    background: url('images/21.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-texto {
    max-width: 650px;
    color: #fff;
}

.tag-premium {
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    color: #ececec;
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-botoes {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-principal,
.btn-secundario,
.btn-final {
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-principal,
.btn-final {
    background: #c7a27c;
    color: #fff;
}

.btn-principal:hover,
.btn-final:hover {
    background: #d8b28a;
}

.btn-secundario {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}

.btn-secundario:hover {
    background: rgba(255,255,255,0.1);
}

.hero-info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-info strong {
    display: block;
    margin-bottom: 5px;
}

.hero-info span {
    color: #ddd;
    font-size: 0.95rem;
}

/* TITULOS */

.titulo-secao {
    text-align: center;
    margin-bottom: 60px;
}

.titulo-secao span {
    color: #9a7d65;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.titulo-secao h2 {
    font-size: 3rem;
    margin-top: 15px;
}

/* VANTAGENS */

.grid-vantagens,
.grid-parcerias,
.grid-depoimentos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card-vantagem,
.card-parceria,
.depoimento {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.card-vantagem h3,
.card-parceria h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

/* GALERIA */

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-galeria img {
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s;
}

.grid-galeria img:hover {
    transform: scale(1.03);
}

/* IDEAL */

.ideal {
    background: #efe7de;
}

.grid-ideal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.item-ideal {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
}

/* DIFERENCIAL */

.diferencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diferencial-imagem img {
    border-radius: 24px;
    height: 600px;
    object-fit: cover;
}

.diferencial-texto span {
    color: #9a7d65;
    letter-spacing: 2px;
}

.diferencial-texto h2 {
    font-size: 3.5rem;
    margin: 20px 0 30px;
}

.diferencial-texto p {
    margin-bottom: 20px;
}

/* CTA */

.cta-final {
    background: linear-gradient(to right, #241812, #4a3326);
    color: #fff;
}

.cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-grid h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* FOOTER */

.footer {
    background: #140f0c;
    color: #fff;
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer h3,
.footer h4 {
    margin-bottom: 20px;
}

.footer p {
    color: #ccc;
    margin-bottom: 10px;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVO */

@media (max-width: 992px) {

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .grid-vantagens,
    .grid-parcerias,
    .grid-depoimentos,
    .grid-galeria,
    .grid-ideal,
    .diferencial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        flex-direction: column;
        text-align: center;
    }

    .diferencial-imagem img {
        height: auto;
    }

}

@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-botoes {
        flex-direction: column;
    }

    .hero-info {
        gap: 20px;
        flex-direction: column;
    }

    .titulo-secao h2 {
        font-size: 2.2rem;
    }

    .diferencial-texto h2,
    .cta-grid h2 {
        font-size: 2.5rem;
    }

    .btn-principal,
    .btn-secundario,
    .btn-final {
        width: 100%;
        text-align: center;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        padding: 16px 22px;
    }

}