/* ===============================
   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.65;
}

p,
li {
    line-height: 1.65;
}

.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;
}

.btn-voltar-fixo {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1200;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    background-color: #25d366;
    color: var(--branco);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
}

.btn-voltar-fixo: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 {
    display: block;
    width: 100%;
    clear: both;
    visibility: visible;
    opacity: 1;
    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: #c9a24d;
    color: #1f2a24;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-footer-whats:hover {
    background-color: #e0b85c;
}

.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;
    }
}

/* Ajuste visual do index */
.header {
    border-top: 5px solid var(--azul-escuro);
}

.header-content {
    height: auto;
    min-height: 120px;
    gap: 14px;
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    justify-content: center;
    width: 100%;
}

.logo-img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    flex-shrink: 0;
}

.logo {
    font-size: 1.7rem;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    order: -1;
    margin-left: 0;
    flex-shrink: 0;
}

.menu a {
    font-size: 1.05rem;
    margin: 0 14px;
}

@media (max-width: 1260px) {
    .header-content {
        padding: 12px 0;
        align-items: center;
    }

    .menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu a {
        margin: 0 10px;
    }

    .logo {
        font-size: 1.45rem;
    }
}

.hero {
    padding: 28px 0 40px;
}

.hero-content {
    gap: 34px;
    align-items: stretch;
}

.hero-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-texto h2 {
    font-size: 4rem;
    line-height: 1.18;
    margin-bottom: 16px;
}

.cidade {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.descricao {
    max-width: 640px;
    font-size: 1rem;
    margin-bottom: 22px;
}

.btn-whatsapp {
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 30px;
}

.hero-imagem {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-imagem img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

@media (max-width: 1400px) {
    .logo {
        font-size: 1.55rem;
    }

    .menu a {
        font-size: 1.1rem;
        margin-left: 18px;
    }

    .hero-texto h2 {
        font-size: 3.65rem;
    }

    .cidade {
        font-size: 1.1rem;
    }

    .descricao {
        font-size: 1rem;
    }

    .btn-whatsapp {
        font-size: 1.05rem;
    }
}

@media (max-width: 900px) {
    .header-content {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        white-space: nowrap;
        font-size: 1.15rem;
    }

    .menu {
        flex-wrap: wrap;
        gap: 8px;
    }

    .menu a {
        margin: 0 8px;
    }

    .hero-texto h2 {
        font-size: 2.2rem;
    }

    .cidade {
        font-size: 1.05rem;
    }

    .descricao {
        font-size: 1rem;
    }

    .btn-whatsapp {
        font-size: 1rem;
    }

    .hero-imagem {
        grid-template-columns: 1fr;
    }

    .hero-imagem img {
        height: 320px;
    }
}

/* ===============================
   HOME PROFISSIONAL (INDEX)
================================ */

.home-page {
    background: #f3f1ed;
}

.home-page .container {
    max-width: 1280px;
}

.home-page .header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.home-page .header-content {
    min-height: 126px;
    gap: 10px;
    padding: 12px 0 14px;
}

.home-page .menu {
    gap: 30px;
}

.home-page .menu a {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.home-page .btn-contato {
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
}

.home-page .brand {
    gap: 18px;
}

.home-page .logo-img {
    width: 92px;
    height: 92px;
    border-radius: 4px;
}

.home-page .logo {
    font-size: 3rem;
    font-weight: 700;
    color: #1e2a4d;
}

.home-page .hero {
    padding: 42px 0 56px;
}

.home-page .hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 34px;
}

.home-page .hero-texto h2 {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 12px;
    color: #1f2a4a;
}

.home-page .hero-kicker {
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #5f6a83;
    margin-bottom: 8px;
}

.home-page .hero-areas {
    font-size: 1rem;
    font-weight: 600;
    color: #2b3655;
    margin-bottom: 8px;
}

.home-page .cidade {
    font-size: 1.08rem;
    color: #2e3550;
    margin-bottom: 14px;
}

.home-page .descricao {
    font-size: 1.04rem;
    max-width: 650px;
    color: #4a5268;
    margin-bottom: 16px;
}

.home-page .btn-whatsapp {
    font-size: 1.1rem;
    padding: 14px 30px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.home-page .hero-imagem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.home-page .hero-imagem img {
    height: 460px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.home-page .atuacao,
.home-page .sobre,
.home-page .contato {
    padding: 78px 0;
}

.home-page .atuacao {
    background: #ffffff;
}

.home-page .sobre {
    background: #f7f5f1;
}

.home-page .contato {
    background: #ffffff;
}

.home-page .atuacao h2,
.home-page .sobre h2,
.home-page .contato h2 {
    font-family: 'Playfair Display', serif;
    color: #1f2a4a;
    font-size: clamp(1.9rem, 2.2vw, 2.5rem);
    margin-bottom: 18px;
}

.home-page .texto-atuacao,
.home-page .sobre p,
.home-page .contato p {
    font-size: 1.06rem;
    line-height: 1.8;
    color: #4a5268;
    max-width: 920px;
}

.home-page .formacao-list {
    margin: 18px 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.home-page .formacao-list li {
    position: relative;
    padding-left: 22px;
    color: #2f3958;
    font-weight: 500;
}

.home-page .formacao-list li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: var(--dourado);
}

.home-page .area-grid {
    display: grid;
    gap: 20px;
}

.home-page .area-card {
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.home-page .area-card h3 {
    font-family: 'Playfair Display', serif;
    color: #1f2a4a;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.home-page .area-card h4 {
    color: #24345e;
    font-size: 1.05rem;
    margin: 18px 0 10px;
    font-weight: 700;
}

.home-page .area-card p {
    margin-bottom: 12px;
}

.home-page .service-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 6px;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 10px 14px;
}

.home-page .service-list li {
    background: #f6f8fc;
    border: 1px solid #e8edf6;
    border-radius: 10px;
    padding: 10px 12px;
    color: #2d3650;
    line-height: 1.5;
}

.home-page .lista-atuacao {
    margin-top: 18px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px 22px;
}

.home-page .lista-atuacao li {
    background: #f3f6fb;
    border: 1px solid #e4e9f2;
    color: #2a3556;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 500;
}

.home-page .contato-box {
    background: #f7f9ff;
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    padding: 32px;
}

.home-page .info-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 16px;
}

.home-page .info-card {
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 14px;
    padding: 20px;
}

.home-page .info-card h3 {
    font-family: 'Playfair Display', serif;
    color: #1f2a4a;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.home-page .info-card p {
    margin-bottom: 10px;
}

.home-page .info-card a {
    color: #1e2f63;
    font-weight: 600;
    text-decoration: none;
}

.home-page .info-card .btn-whatsapp {
    margin-top: 6px;
}

@media (max-width: 1100px) {
    .home-page .logo {
        font-size: 2.2rem;
    }

    .home-page .hero-content {
        grid-template-columns: 1fr;
    }

    .home-page .hero-imagem img {
        height: 420px;
    }

    .home-page .service-list {
        grid-template-columns: 1fr;
    }

    .home-page .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .home-page .header-content {
        min-height: 112px;
    }

    .home-page .menu {
        gap: 14px;
    }

    .home-page .menu a {
        font-size: 1rem;
    }

    .home-page .logo {
        font-size: 1.5rem;
    }

    .home-page .hero {
        padding: 28px 0 40px;
    }

    .home-page .hero-imagem {
        grid-template-columns: 1fr;
    }

    .home-page .hero-imagem img {
        height: 360px;
    }

    .home-page .info-grid {
        grid-template-columns: 1fr;
    }

    .home-page .lista-atuacao {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .home-page .header-content {
        min-height: 96px;
        padding: 10px 0;
    }

    .home-page .logo {
        font-size: 1.25rem;
    }

    .home-page .logo-img {
        width: 64px;
        height: 64px;
    }

    .home-page .menu {
        gap: 10px;
    }

    .home-page .menu a {
        font-size: 0.92rem;
    }

    .home-page .hero {
        padding: 22px 0 30px;
    }

    .home-page .hero-kicker {
        font-size: 0.78rem;
    }

    .home-page .hero-texto h2 {
        font-size: 1.75rem;
    }

    .home-page .hero-areas,
    .home-page .cidade,
    .home-page .descricao {
        font-size: 0.95rem;
    }

    .home-page .btn-whatsapp {
        width: 100%;
        text-align: center;
        font-size: 0.98rem;
        padding: 12px 16px;
    }

    .home-page .hero-imagem img {
        height: 300px;
        border-radius: 16px;
    }

    .home-page .area-card,
    .home-page .contato-box,
    .home-page .info-card {
        padding: 18px;
    }

    .home-page .area-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 420px) {
    .home-page .container,
    .internal-page .container {
        padding: 0 14px;
    }

    .home-page .menu a,
    .internal-page .menu a {
        font-size: 0.88rem;
    }

    .home-page .btn-contato,
    .internal-page .btn-contato {
        padding: 8px 14px;
    }

    .internal-page .btn-voltar-fixo {
        left: 14px;
        bottom: 14px;
        padding: 8px 12px;
        font-size: 0.78rem;
    }
}

/* ===============================
   PÁGINAS INTERNAS (SOBRE/GALERIA)
================================ */

.internal-page {
    background: #f3f1ed;
}

.internal-page .container {
    max-width: 1200px;
}

.internal-page .header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.internal-page .header-content {
    min-height: 118px;
    gap: 10px;
    padding: 12px 0 14px;
}

.internal-page .brand {
    width: 100%;
    justify-content: center;
}

.internal-page .logo-img {
    width: 84px;
    height: 84px;
    border-radius: 4px;
}

.internal-page .logo {
    font-size: 2.2rem;
    color: #1e2a4d;
}

.internal-page .menu {
    gap: 24px;
}

.internal-page .menu a {
    margin: 0;
    font-size: 1.02rem;
}

.internal-page .btn-voltar-fixo {
    left: 24px;
    bottom: 24px;
    padding: 9px 16px;
    font-size: 0.84rem;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.24);
}

.sobre-profissional .sobre-page {
    padding: 56px 0 74px;
}

.sobre-profissional .sobre-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: start;
}

.sobre-profissional .sobre-texto {
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.sobre-profissional .sobre-texto h1 {
    font-family: 'Playfair Display', serif;
    color: #1f2a4a;
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.sobre-profissional .sobre-texto h2 {
    font-family: 'Playfair Display', serif;
    color: #24345e;
    font-size: 1.45rem;
    margin: 22px 0 10px;
}

.sobre-profissional .sobre-texto p {
    color: #4a5268;
    line-height: 1.8;
}

.sobre-profissional .sobre-texto ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
}

.sobre-profissional .sobre-texto li {
    background: #f6f8fc;
    border: 1px solid #e8edf6;
    border-radius: 10px;
    padding: 10px 12px;
    color: #2d3650;
}

.sobre-profissional .sobre-imagem img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
    object-fit: cover;
}

.galeria-profissional .galeria-topo {
    padding: 46px 0 14px;
}

.galeria-profissional .galeria-topo h2 {
    font-family: 'Playfair Display', serif;
    color: #1f2a4a;
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
    margin-bottom: 8px;
}

.galeria-profissional .galeria-topo p {
    color: #4a5268;
    font-size: 1.05rem;
    max-width: 760px;
}

.galeria-profissional .container-galeria {
    max-width: 1200px;
    margin: 18px auto 70px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.galeria-profissional .card {
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.galeria-profissional .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.galeria-profissional .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.galeria-profissional .card figcaption {
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #334163;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .sobre-profissional .sobre-grid {
        grid-template-columns: 1fr;
    }

    .internal-page .logo {
        font-size: 1.55rem;
    }
}

@media (max-width: 760px) {
    .internal-page .menu {
        gap: 12px;
        flex-wrap: wrap;
    }

    .internal-page .menu a {
        font-size: 0.95rem;
    }

    .internal-page .logo {
        font-size: 1.2rem;
    }

    .internal-page .logo-img {
        width: 68px;
        height: 68px;
    }

    .sobre-profissional .sobre-texto {
        padding: 22px;
    }
}

/* ===============================
   MENU FIXO + DESTAQUE DE COR
================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
}

.home-page,
.internal-page {
    padding-top: 138px;
}

.header .menu {
    background: linear-gradient(135deg, #f2e3b3 0%, #dcc07a 55%, #c9a24d 100%);
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(201, 162, 77, 0.34);
    border: 1px solid rgba(125, 91, 26, 0.18);
}

.header .menu a {
    color: #1f2a44;
}

.header .menu a:hover {
    color: #7d5b1a;
}

.header .menu .btn-contato {
    background-color: #1f2a44;
    color: #f6f3ee;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid rgba(31, 42, 68, 0.2);
    background: #ffffff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #1f2a44;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .home-page,
    .internal-page {
        padding-top: 124px;
    }

    .header .menu {
        border-radius: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 560px) {
    .home-page,
    .internal-page {
        padding-top: 118px;
    }
}

/* ===============================
   REFINO MOBILE
================================ */

@media (max-width: 560px) {
    .header {
        border-top-width: 3px;
    }

    .header-content {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 8px;
        padding: 8px 0 10px;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
        width: auto;
    }

    .header .menu {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 12px 24px rgba(31, 42, 68, 0.18);
    }

    .header .menu.is-open {
        display: flex;
    }

    .header .menu a {
        font-size: 0.9rem;
        padding: 8px 10px;
        border-radius: 8px;
    }

    .header .menu .btn-contato {
        padding: 8px 12px;
        border-radius: 10px;
        text-align: center;
    }

    .brand {
        gap: 10px;
    }

    .logo-img,
    .home-page .logo-img,
    .internal-page .logo-img {
        width: 46px;
        height: 46px;
    }

    .logo,
    .home-page .logo,
    .internal-page .logo {
        font-size: 1rem;
        max-width: 210px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-page,
    .internal-page {
        padding-top: 110px;
    }

    .home-page .hero {
        padding: 18px 0 26px;
    }

    .home-page .hero-texto {
        text-align: center;
    }

    .home-page .hero-kicker {
        letter-spacing: 0.1em;
    }

    .home-page .hero-texto h2 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .home-page .hero-areas,
    .home-page .cidade,
    .home-page .descricao {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .home-page .btn-whatsapp {
        max-width: 100%;
    }

    .sobre-profissional .sobre-page {
        padding: 24px 0 44px;
    }

    .galeria-profissional .galeria-topo {
        padding: 24px 0 10px;
    }

    .galeria-profissional .container-galeria {
        margin: 12px auto 44px;
        gap: 14px;
    }

    .galeria-profissional .card img {
        height: 220px;
    }
}
