* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
    
}

/* ANIMAÇÕES INTERSECTION OBSERVER */
.hidden {
    opacity: 0;
    filter: blur(15px);
    transform: translateX(-50px);
    transition: all 1.5s ease-out;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* FONTES */
@font-face { font-family: 'seasons'; src: url('fonts/Fontspring-DEMO-theseasons-bd.otf') format('opentype'); }
@font-face { font-family: 'commons'; src: url('fonts/TT Commons Regular.otf') format('opentype'); }

/* NAVEGAÇÃO */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: #000;
    font-family: 'commons';
    font-size: 1.2rem;
    transition: 0.3s;
}

.nav-list a:hover { color: #bd945f; }

.bt1 {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'commons';
}

/* HERO SECTION (MAIN) */
.pai {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 40px 5%;
    gap: 40px;
}

.div1 { flex: 1; min-width: 300px; }
.div2 { 
    flex: 1; 
    min-width: 300px; 
    max-width: 600px;
    background: #ebd4c2; 
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.231), 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
}

.img1 { width: 130%;  transform: translateY(0); }

.H3 { font-family: 'commons'; color: #69443c; margin-bottom: 10px; font-size: 45px; }
.H1 { font-family: 'seasons'; font-size: clamp(3rem, 8vw, 9rem); line-height: 1.1; margin-bottom: 20px; }
.P1 { font-family: 'commons'; font-size: 1.2rem; color: #9d9999; margin-bottom: 30px; max-width: 500px; }
span { color: #bd945f; }

.main-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.bt2, .bt3 {
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'commons';
    transition: 0.3s;
}
.bt1 a{text-decoration: none; color: white;}
.bt2 a{text-decoration: none; color: white;}
.bt3 a{text-decoration: none; color: rgb(5, 5, 5);}
.bt2 { background: #000; color: #fff; border: none; }
.bt3 { background: #fff; border: 1px solid #ddd; }
.bt2:hover, .bt3:hover { background: #bd945f; color: #fff; }

/* SEÇÃO 1 - ASSINATURA VISUAL */
.sec1 {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    gap: 50px;
    align-items: center;
}

.content-sec1 { flex: 1; min-width: 300px; }
.H2 { font-family: 'seasons'; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }
.P2 { font-family: 'commons'; font-size: 1.1rem; color: #9d9999; margin-bottom: 40px; }

.card1 {
    display: flex;
    gap: 30px;
    background: #ede6e0;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: 0.5s;
}

.card1:hover { background: #111; color: #fff; }
.numero1 { font-size: 2.5rem; font-family: 'seasons'; }
.texto { font-family: 'seasons'; font-size: 1.5rem; }

.img-container { flex: 1; display: flex; justify-content: center; }
.img2 { width: 100%; max-width: 500px; border-radius: 20px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.575), 0 5px 15px rgba(0, 0, 0, 0.703);}

/* SEÇÃO 2 - TRATAMENTOS */
.sec2 { padding: 80px 5%; background: #FDFBF9; text-align: center; }
.Te { font-family: 'seasons'; font-size: 3rem; margin-bottom: 60px; }

.caixas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.box1 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #F1E9E1;
    transition: 0.3s;
    text-align: left;
}

.icon{
    width: 30px;
   
}
.link:hover{
    color: #bd945f;
}
.box1:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.tc { font-family: 'seasons'; margin: 20px 0; }
.Pc { font-family: 'commons'; color: #9d9999; margin-bottom: 20px; }
.link { color: #000; text-decoration: none; border-bottom: 2px solid #bd945f; font-weight: bold; }


/* SEÇÃO O REFÚGIO */
.sec-salao {
    padding: 80px 5%;
    background-color: #fff;
}

.grid-salao {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 50px;
}

.foto-salao img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.foto-salao:hover img {
    transform: scale(1.03);
}

.item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.item-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.item-3 { grid-column: 3 / 5; grid-row: 2 / 3; }

/* SEÇÃO GALERIA DE TRABALHOS */
.sec-trabalhos {
    padding: 80px 5%;
    background-color: #FDFBF9;
}

.caixas-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card-trabalho {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #F1E9E1;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.231), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.img-trabalho {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.img-trabalho img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.card-trabalho:hover .img-trabalho img {
    transform: scale(1.1);
}

.info-trabalho {
    padding: 30px;
}

.tag {
    color: #bd945f;
    font-family: 'commons';
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.card-trabalho .tc {
    margin: 10px 0;
}

/* RESPONSIVIDADE ADICIONAL */
@media (max-width: 790px) {
    .grid-salao {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .item-1, .item-2, .item-3 {
        grid-column: 1 / 2;
        grid-row: auto;
        height: 250px;
    }
}


/* ESTILOS DE DETALHE DE SERVIÇO */
.detalhe-servico {
    padding: 100px 5%;
    background-color: #fff;
}

.servico-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-img {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.servico-img img {
    width: 100%;
    display: block;
    transition: 0.8s;
}

.servico-info {
    flex: 1;
}

.reverse .servico-container {
    flex-direction: row-reverse;
}

.lista-detalhes {
    list-style: none;
    margin-top: 20px;
    font-family: 'commons';
    color: #69443c;
    font-size: 1.1rem;
}

.lista-detalhes li {
    margin-bottom: 10px;
}

/* SEÇÃO WHATSAPP FULL */
.cta-whatsapp {
    padding: 120px 5%;
    text-align: center;
    background-color: #FDFBF9;
}

.cta-whatsapp1 {
    padding: 120px 5%;
    text-align: center;
    background-color: #FDFBF9;
}

.whatsapp-box {
    max-width: 800px;
    margin: 0 auto;
}

.bt-whats-full {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #000;
    color: #fff;
    padding: 25px 60px;
    border-radius: 60px;
    text-decoration: none;
    font-family: 'commons';
    font-size: 1.3rem;
    margin-top: 40px;
    transition: 0.4s;
}

.bt-whats-full:hover {
    background: #bd945f;
    transform: scale(1.05);
}

.icon-bt {
    width: 25px;
    filter: brightness(0) invert(1);
}

/* RESPONSIVIDADE */
@media (max-width: 790px) {
    .servico-container, .reverse .servico-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .servico-img {
        width: 100%;
    }
    
    .bt-whats-full {
        width: 100%;
        padding: 20px;
        font-size: 1rem;
        justify-content: center;
    }
}


/* LISTA DE PREÇOS ESTILIZADA */
.lista-precos {
    list-style: none;
    margin: 25px 0;
    font-family: 'commons';
}

.lista-precos li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #F1E9E1;
    color: #444;
    font-size: 1.1rem;
}

.lista-precos li span {
    font-weight: bold;
    color: #bd945f;
}

.tabela-cilios {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.col-cilios {
    flex: 1;
}

.col-cilios h3 {
    font-family: 'seasons';
    font-size: 1.2rem;
    color: #69443c;
    margin-bottom: 10px;
    border-bottom: 2px solid #bd945f;
    display: inline-block;
}

.bt-agendar-servico {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'commons';
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.bt-agendar-servico:hover {
    background: #bd945f;
}

/* RESPONSIVIDADE PARA TABELA DE CÍLIOS */
@media (max-width: 600px) {
    .tabela-cilios {
        flex-direction: column;
    }
}






/* ESTILOS DA SEÇÃO DE CUIDADOS */
.sec-cuidados {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.caixas-cuidados {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap; /* Garante responsividade no mobile */
}

.card-cuidado {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #FDFBF9; /* Tom sutil para diferenciar do fundo */
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #F1E9E1;
    text-align: left;
    transition: 0.3s;
}

.card-cuidado:hover {
    border-color: #bd945f;
    transform: translateY(-5px);
}

.card-cuidado .tc {
    color: #000;
    margin-bottom: 25px;
    font-size: 2rem;
    border-bottom: 2px solid #bd945f;
    display: inline-block;
}

.card-cuidado .lista-detalhes li {
    font-family: 'commons';
    color: #9d9999;
    margin-bottom: 15px;
    font-size: 1.1rem;
    list-style: none;
}

/* AJUSTE MOBILE */
@media screen and (max-width: 790px) {
    .caixas-cuidados {
        flex-direction: column;
        align-items: center;
    }
    .card-cuidado {
        width: 100%;
    }
    .img2{
        display: none;
    }
}

#galeria-sobrancelhas {
    background-color: #FDFBF9; /* Mesmo tom de bege claro usado na seção de cílios */
    padding-top: 50px;
    padding-bottom: 80px;
}

/* Ajuste da Galeria para 2 colunas no Mobile */
@media (max-width: 600px) {
    .caixas-galeria {
        grid-template-columns: repeat(2, 1fr); /* Força 2 colunas */
        gap: 15px; /* Reduz o espaçamento para caber melhor */
        padding: 0 10px;
    }

    .img-trabalho {
        height: 180px; /* Reduz a altura da imagem para não ficar muito vertical */
    }

    .info-trabalho {
        padding: 15px; /* Reduz o preenchimento interno dos cards */
    }

    .info-trabalho .tc {
        font-size: 1.1rem; /* Diminui um pouco o título para não quebrar linha */
    }

    .tag {
        font-size: 0.6rem; /* Ajusta a tag para o novo tamanho do card */
    }
}





/* FOOTER */
footer { background: #2c2c2c; color: #fff; padding: 80px 5% 20px; }
.foot { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 60px;
}

.texf { font-family: 'seasons'; font-size: 2.5rem; margin-bottom: 20px; }
.pf { color: #9d9999; margin-bottom: 30px; }
.btf { padding: 15px 40px; border-radius: 50px; border: none; cursor: pointer; font-size: 1.1rem; }

.loc, .loc2 { color: #9d9999; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 10px; }
.rua { margin-bottom: 30px; }

.btsoci a {
    background-color: #ede8e8;
    width: 200px; /* Aumentado levemente para acomodar o ícone */
    height: 45px;
    margin: 15px; /* Reduzi o margin top/bottom para ficarem mais próximos */
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Espaça texto e ícone */
    padding: 0 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Hover Chamativo */
.btsoci a:hover {
    background-color: #bd945f; /* Sua cor de destaque */
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(189, 148, 95, 0.3);
}

.btsoci a h1 {
    margin: 0;
    font-size: 14px;
    color: #070707;
    font-family: 'commons', sans-serif;
    transition: color 0.3s;
}

.btsoci a:hover h1 {
    color: #fff; /* Texto fica branco no hover */
}

/* Estilo do Ícone */
.icon-soci {
    width: 20px;
    height: 20px;
    stroke: #070707; /* Cor do traço do ícone */
    stroke-width: 1.5px;
    transition: all 0.3s;
}

.btsoci a:hover .icon-soci {
    stroke: #fff; /* Ícone fica branco no hover */
    transform: rotate(15deg); /* Pequena rotação charmosa */
}

.ende {
    display: flex;
    flex-direction: column;
}

.link-mapa {
    width: 150px;
    font-family: 'commons'; /* Sua fonte padrão */
    color: #bd945f; /* Sua cor dourada/bege */
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: -20px; /* Ajuste para ficar colado no endereço */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.link-mapa:hover {
    color: #000;
    transform: translateX(5px); /* Leve movimento ao passar o mouse */
}






.final {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #9d9999;
    font-size: 0.9rem;
}

/* RESPONSIVIDADE PARA CELULAR */
@media (max-width: 768px) {
    .nav{ display: none; } /* Pode criar um menu hamburguer depois */
    .pai { text-align: center; }
    .main-buttons { justify-content: center; }
    .img-container { order: -1; } /* Imagem sobe no mobile */
    .img1 { width: 100%; transform: none; }
    .div2 { border-radius: 30px; }
    .div1{margin-left: -80x;}
    .card1{margin-left: -50px;}
    .cta-whatsapp1{height: 110px;background-color: white;margin-top: -180px;}




    .final { justify-content: center; text-align: center; }
}