/* ===============================
   CONFIGURAÇÕES GERAIS
================================ */



:root {
    --azul-escuro: #1f2a44;
    --bege: #f6f3ee;
    --dourado: #c9a24d;
    --cinza-texto: #4a4a4a;
    --branco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--cinza-texto);
    background-color: var(--bege);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}









.header {
    background-color: var(--branco);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--azul-escuro);
}

.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--azul-escuro);
    font-weight: 500;
}

.menu a:hover {
    color: var(--dourado);
}

.btn-contato {
    background-color: var(--dourado);
    color: var(--branco);
    padding: 8px 16px;
    border-radius: 20px;
}














.hero {
    padding: 80px 0;
    background-color: var(--bege);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
















.hero-texto {
    flex: 1;
}

.hero-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--azul-escuro);
    margin-bottom: 15px;
}

.cidade {
    font-weight: 600;
    margin-bottom: 15px;
}

.descricao {
    max-width: 500px;
    margin-bottom: 30px;
}










.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: var(--branco);
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
}










.hero {
    padding: 100px 0;
    background-color: var(--bege);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-texto {
    flex: 1;
}

.hero-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--azul-escuro);
    margin-bottom: 20px;
}

.cidade {
    font-weight: 600;
    margin-bottom: 15px;
}

.descricao {
    max-width: 520px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.hero-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-imagem img {
    width: 300%;
    max-width: 660px; /* CONTROLA TAMANHO */
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

















/*

.hero-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-imagem img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
*/










@media (max-width: 900px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-texto {
        order: 1;
    }

    .hero-imagem {
        order: 2;
        margin-top: 30px;
    }

    .descricao {
        margin: 0 auto 30px;
    }
}







.footer {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}
  


/*novo footer*/

.footer {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-whatsapp {
    display: inline-block;
    margin-top: 10px;
    background-color: #25d366;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 30px;
}


/* Estilo para o botão do WhatsApp fixo */

.whatsapp-fixo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    z-index: 9999;
}

.whatsapp-fixo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

.whatsapp-fixo img:hover {
    transform: scale(1.1);
}



.footer-adv {
    background-color: #1f2a24;
    color: #e6eae7;
    padding: 60px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e6eae7;
    text-decoration: none;
}

.footer-col a:hover {
    color: #c9a24d;
}

.footer-col .mt {
    margin-top: 15px;
}

.btn-footer-whats {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background-color: #11e246;
    color: #1f2a24;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-footer-whats:hover {
    background-color: #0eb90e;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 0.85rem;
    color: #cfd6d1;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-footer-whats {
        margin: 20px auto 0;
    }
}
/* RESPONSIVO - WHATSAPP E MOBILE */
/* RESPONSIVO - AJUSTE DO TOPO E MENU */
@media (max-width: 768px) {

    .header-content {
        flex-direction: column; /* Empilha o nome e o menu */
        height: auto;           /* Permite que o topo cresça conforme o conteúdo */
        padding: 20px 10px;     /* Adiciona espaço interno para não grudar nas bordas */
        text-align: center;     /* Centraliza o texto */
    }

    .logo {
        font-size: 1.15rem;     /* Reduz o tamanho da fonte do nome para caber melhor */
        margin-bottom: 15px;    /* Cria distância entre o nome e os links do menu */
        line-height: 1.3;       /* Melhora o espaçamento se o nome quebrar em 2 linhas */
    }

    .menu {
        margin-top: 0;          /* Zera a margem anterior */
        display: flex;
        flex-wrap: wrap;        /* Permite que os links pulem de linha se não couberem */
        justify-content: center;
        gap: 8px;               /* Espaçamento uniforme entre os links */
    }

    .menu a {
        margin: 5px;            /* Ajusta a margem lateral fixa */
        font-size: 0.85rem;     /* Diminui levely o texto do menu */
        padding: 5px 8px;
    }

    .btn-contato {
        display: inline-block;
        margin-top: 5px;        /* Dá um leve destaque ao botão de contato */
    }
}


























