/* =========================================================
   CLÍNICA PARISE PREMIUM 2026
   ========================================================= */


/* =========================
   RESET E BASE
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family:'Montserrat',sans-serif;

    background:#f8f8f6;

    color:#444;

    line-height:1.7;

    overflow-x:hidden;

}

img {
    max-width: 100%;
}

a {
    -webkit-tap-highlight-color: transparent;
}


/*========================
CORES
=========================*/

:root{

    --verde:#4F5D4B;

    --verde-escuro:#394437;

    --verde-claro:#70816B;

    --dourado:#C6A24D;

    --dourado-hover:#B58E37;

    --cinza:#777;

    --cinza-claro:#ECECEC;

    --branco:#FFF;

    --sombra:0 15px 40px rgba(0,0,0,.08);

}

/*========================
CONTAINER
=========================*/

.container{

    width:92%;

    max-width:1400px;

    margin:auto;

}


/* =========================
   HEADER PREMIUM
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 6%;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(94, 106, 64, 0.08);

    box-shadow:
        0 5px 25px rgba(47, 59, 47, 0.05);
}


/* LOGO */

.logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
}




/*==================================================
INICIO DO CSS ESPECIALIDADES - DAQUI PARA BAIXO MODIFICO A ABA ESPECIALIDADE
Centro de Saúde Parise
==================================================*/




/*========================
MENU
=========================*/

.nav ul{

    display:flex;

    gap:30px;

    list-style:none;

}

.nav a{

    color:var(--verde);

    font-weight:600;

    font-size:15px;

    position:relative;

}

.nav a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:var(--dourado);

    transition:.35s;

}

.nav a:hover::after,

.nav .ativo::after{

    width:100%;

}

.nav a:hover{

    color:var(--dourado);

}
/*========================
HERO
=========================*/

.hero-especialidades{

    padding:40px 0;

    background:linear-gradient(135deg,#4F5D4B,#6B7A65);

    text-align:center;

    color:#fff;

}

.hero-especialidades .subtitulo{

    display:inline-block;

    color:#E7D3A1;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

    font-size:14px;

}

.hero-especialidades h1{

    font-size:48px;

    margin-bottom:25px;

    font-weight:700;

}

.hero-especialidades p{

    max-width:820px;

    margin:auto;

    font-size:18px;

    opacity:.95;

}

/*================= MENU DAS ESPECIALIDADES ===================*/

.menu-especialidades{

    background:#fff;

    position:sticky;

    top:10px;

    z-index:50;

    box-shadow:0 4px 15px rgba(0,0,0,.05);

}

/* ==================== AQUI CONTROLA A ALTURA DA CAIXA DE ESPECIALIDADES = MOVIMENTAR PADDING============= */

.menu-especialidades .container{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:14px;

    padding:2px 0;

}

.menu-especialidades a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:3px 10px;

    border-radius:50px;

    background:#F4F4F4;

    color:var(--verde);

    font-weight:200;

    font-size:14px;

    transition:.35s;

}

.menu-especialidades a i{

    color:var(--dourado);

    font-size:18px;

}

.menu-especialidades a:hover{

    background:var(--verde);

    color:#fff;

    transform:translateY(-3px);

}

.menu-especialidades a:hover i{

    color:#FFD87A;

}

/*==================================================
ESPECIALIDADES
==================================================*/

.especialidades-page{

    padding:20px 0;

    background:#F8F8F6;

}


/*========================
CARD DA ESPECIALIDADE
=========================*/

.especialidade-card{

    position:relative;

    background:#FFF;

    border-radius:24px;

    padding:70px;

    margin-bottom:80px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.40s;

    scroll-margin-top: 180px;

}

.especialidade-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/* CENTRALIZA CONTEÚDO DOS CARDS DE ESPECIALIDADES */

.especialidade-card {
    text-align: center;
}

.especialidade-card .descricao-geral {
    text-align: center !important;
    max-width: 850px;
    margin: 20px auto 35px;
}

.procedimento {
    text-align: left;
}

.procedimento h3 {
    text-align: left;
}

.procedimento p {
    text-align: left;
}

/* Barra dourada superior */

.especialidade-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:8px;

    background:linear-gradient(
        90deg,
        #C6A24D,
        #E6C46B,
        #C6A24D
    );

}


/*========================
ÍCONE
=========================*/

.icone{

    width:95px;

    height:95px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#F8F5EC;

    display:flex;

    justify-content:center;

    align-items:center;

    border:2px solid rgba(198,162,77,.30);

}

.icone i{

    font-size:42px;

    color:#C6A24D;

}


/*========================
TÍTULO
=========================*/

.especialidade-card h2{

    text-align:center;

    font-size:40px;

    color:#4F5D4B;

    margin-bottom:15px;

    font-weight:700;

    letter-spacing:.5px;

}


/*========================
BARRA DOURADA
=========================*/

.barra-dourada{

    width:90px;

    height:4px;

    background:#C6A24D;

    margin:0 auto 35px;

    border-radius:30px;

}


/*========================
DESCRIÇÃO
=========================*/

.descricao-geral{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#666;

    font-size:18px;

    line-height:1.9;

    margin-bottom:55px;

}


/*==================================================
PROCEDIMENTOS
==================================================*/

.procedimentos{

    display:flex;

    flex-direction:column;

    gap:22px;

}


/*========================
CARD DO PROCEDIMENTO
=========================*/

.procedimento{

    background:#FAFAFA;

    border-left:5px solid #D6A53A;

    padding:25px;

    margin-bottom:20px;

    border-radius:12px;

    position:relative;

}


.procedimento::after{

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:0;
    height:3px;

    background:#D6A53A;

    transition:.3s;

}


.procedimento:hover::after{

    width:100%;

}

/*========================
TÍTULO PROCEDIMENTO
=========================*/

.procedimento h3{

    color:#4F5D4B;

    font-size:24px;

    margin-bottom:12px;

    font-weight:700;

}


/*========================
TEXTO
=========================*/

.procedimento p{

    color:#6A6A6A;

    font-size:16px;

    line-height:1.9;

}


/*========================
LINHA ENTRE PROCEDIMENTOS
=========================*/

.procedimento:not(:last-child){

    margin-bottom:10px;

}


/*==================================================
ANIMAÇÃO DE ENTRADA
==================================================*/

.especialidade-card{

    animation:fadeCard .8s ease;

}

@keyframes fadeCard{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==================================================
SELEÇÃO DE TEXTO
==================================================*/

::selection{

    background:#C6A24D;

    color:#FFF;

}

/*==================================================
ANIMAÇÕES
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.92);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes aparecer{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

.especialidade-card{

    animation:fadeUp .8s ease both;

}

.icone{

    animation:zoomIn .8s ease;

}

.hero-especialidades{

    animation:aparecer 1s ease;

}


/*==================================================
EFEITOS
==================================================*/

.procedimento{

    border-left:6px solid transparent;

    transition:
    transform .35s,
    box-shadow .35s,
    border-color .35s,
    background .35s;

}


.procedimento:hover{

    transform:translateY(-4px);

    border-left:6px solid var(--dourado);

    background:#ffffff;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}


.icone{

    transition:.35s;

}


.especialidade-card:hover .icone{

    transform:rotate(8deg) scale(1.05);

    background:#FFF9EB;

}


/*==================================================
MENU ESPECIALIDADES
==================================================*/

.menu-especialidades a{

    position:relative;

    overflow:hidden;

}

.menu-especialidades a::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.15);

    transition:.45s;

}

.menu-especialidades a:hover::before{

    left:100%;

}


/*==================================================
ROLAGEM
==================================================*/

html{

    scroll-padding-top:250px;

}


/*============= INSTAGRAM FLUTUANTE - INICIO - LATERAL DA PAG =============================*/
/*============= INSTAGRAM FLUTUANTE - INICIO - LATERAL DA PAG =============================*/
/*============= INSTAGRAM FLUTUANTE - INICIO - LATERAL DA PAG =============================*/

.instagram-float {
    position: fixed;

    right: 25px;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    text-decoration: none;

    font-size: 32px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    transition: 0.3s;

    z-index: 9999;
}




/*============= WHATSAPP  FLUTUANTE - INICIO - LATERAL DA PAG =============================*/
/*============= WHATSAPP  FLUTUANTE - INICIO - LATERAL DA PAG =============================*/
/*============= WHATSAPP  FLUTUANTE - INICIO - LATERAL DA PAG =============================*/

.whatsapp-float {
    position: fixed;

    width: 62px;
    height: 62px;

    bottom: 25px;
    right: 25px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 30px;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.35);

    z-index: 9999;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform:
        translateY(-4px)
        scale(1.07);

    background: #1EBE5D;

    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-icon {
    line-height: 1;
}


/*============= WHATSAPP  FLUTUANTE - FIM - LATERAL DA PAG =============================*/
/*============= WHATSAPP  FLUTUANTE - FIM - LATERAL DA PAG =============================*/
/*============= WHATSAPP  FLUTUANTE - FIM - LATERAL DA PAG =============================*/



/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F2F2F2;

}

::-webkit-scrollbar-thumb{

    background:var(--dourado);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#A98733;

}


/*==================================================
FOCUS (ACESSIBILIDADE)
==================================================*/

a:focus,
button:focus{

    outline:3px solid rgba(198,162,77,.35);

    outline-offset:3px;

}


/*==================================================
TRANSIÇÕES GERAIS
==================================================*/

a,
button,
.especialidade-card,
.procedimento,
.icone{

    transition:all .30s ease;

}

/*==================================================
RODAPÉ
==================================================*/

.footer{

    background:var(--verde-escuro);

    color:#FFF;

    padding:70px 0 30px;

    margin-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:50px;

}

.footer-logo{

    max-width:180px;

    margin-bottom:20px;

}

.footer h3{

    color:var(--dourado);

    margin-bottom:20px;

    font-size:20px;

}

.footer p{

    color:#E5E5E5;

    line-height:1.8;

    font-size:15px;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#EAEAEA;

    transition:.3s;

}

.footer a:hover{

    color:var(--dourado);

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}

.social-icons a:hover{

    background:var(--dourado);

    color:#FFF;

}

.footer-bottom{

    margin-top:50px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

}

.footer-bottom span{

    display:block;

    margin-top:8px;

    color:#D9C48A;

    font-style:italic;

}

.footer-bottom hr{

    margin:25px auto;

    width:140px;

    border:none;

    height:2px;

    background:rgba(255,255,255,.12);

}



/*==================================================
RESPONSIVO
==================================================*/


@media(max-width:600px){

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;


}

}

.hero-especialidades h1{

font-size:40px;

}

.especialidade-card{

padding:55px;

}



/*========================
TABLET
=========================*/

@media(max-width:900px){

.nav ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.menu-especialidades{

position:relative;

top:0;

}

.menu-especialidades .container{

justify-content:flex-start;

overflow-x:auto;

padding-bottom:15px;

}

.menu-especialidades .container::-webkit-scrollbar{

height:6px;

}

.menu-especialidades a{

flex:none;

}

.hero-especialidades{

padding:70px 20px;

}

.hero-especialidades h1{

font-size:34px;

}

.hero-especialidades p{

font-size:17px;

}

.especialidade-card{

padding:45px;

}

.especialidade-card h2{

font-size:34px;

}

.descricao-geral{

font-size:17px;

}

.procedimento{

padding:24px;

}

.procedimento h3{

font-size:22px;

}

}



/*===================  CELULAR =========================*/
/*===================  CELULAR =========================*/
/*===================  CELULAR =========================*/


@media(max-width:768px){

.header .container{

flex-direction:column;

gap:20px;

}

.logo img{

height:62px;

}

.nav ul{

justify-content:center;

}

.hero-especialidades{

padding:60px 20px;

}

.hero-especialidades h1{

font-size:30px;

line-height:1.3;

}

.hero-especialidades p{

font-size:16px;

}

.especialidades-page{

padding:60px 0;

}

.especialidade-card {

    max-width: 950px;

    margin: 40px auto 50px;

    padding: 35px 28px;

    border-radius: 18px;

    text-align: center;

}

.icone{

width:80px;

height:80px;

}

.icone i{

font-size:34px;

}

.especialidade-card h2{

font-size:30px;

}

.descricao-geral {

    max-width: 800px;

    margin: 20px auto 35px;

    text-align: center;

    line-height: 1.8;

    color: #666;

}

.procedimentos {

    max-width: 850px;

    margin: 0 auto;

}

.procedimento {

    text-align: center;


}

.procedimento h3{

font-size:20px;

}

.procedimento p{

font-size:15px;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

.social-icons{

justify-content:center;

}

.whatsapp-float{

width:58px;

height:58px;

font-size:30px;

right:18px;

bottom:18px;

}

#btn-topo{

right:18px;

bottom:90px;

width:50px;

height:50px;

}

}



/*========================
CELULARES PEQUENOS
=========================*/

@media(max-width:480px){

.hero-especialidades h1{

font-size:26px;

}

.hero-especialidades p{

font-size:15px;

}

.especialidade-card{

padding:28px 22px;

}

.especialidade-card h2{

font-size:26px;

}

.procedimento h3{

font-size:18px;

}

.procedimento p{

font-size:14px;

line-height:1.7;

}

.menu-especialidades a{

font-size:13px;

padding:10px 15px;

}

}

/*==================================================
UTILITÁRIOS
==================================================*/

.text-center{
    text-align:center;
}

.text-left{
    text-align:left;
}

.mt-30{
    margin-top:30px;
}

.mt-50{
    margin-top:50px;
}

.mb-30{
    margin-bottom:30px;
}

.mb-50{
    margin-bottom:50px;
}

.oculto{
    display:none;
}



/*==================================================
SELEÇÃO DE TEXTO
==================================================*/

::selection{

    background:var(--dourado);

    color:#FFF;

}

::-moz-selection{

    background:var(--dourado);

    color:#FFF;

}



/*==================================================
IMAGENS
==================================================*/

img{

    max-width:100%;

    height:auto;

    display:block;

}



/*==================================================
TRANSIÇÕES
==================================================*/

*{

    transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;

}



/*==================================================
FOCUS
==================================================*/

button:focus,
a:focus{

    outline:none;

}

button:focus-visible,
a:focus-visible{

    outline:3px solid rgba(198,162,77,.45);

    outline-offset:4px;

}



/*==================================================
LINKS
==================================================*/

a{

    color:inherit;

}

a:hover{

    text-decoration:none;

}



/*==================================================
TÍTULOS
==================================================*/

h1,
h2,
h3,
h4{

    font-weight:700;

    letter-spacing:.2px;

}

p{

    line-height:1.8;

}



/*==================================================
CARDS
==================================================*/

.especialidade-card{

    scroll-margin-top:150px;

}

.procedimento:last-child{

    margin-bottom:0;

}



/*==================================================
LOADING SUAVE
==================================================*/

body{

    animation:pagina .6s ease;

}

@keyframes pagina{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}



/*==================================================
MODO IMPRESSÃO
==================================================*/

@media print{

header,
footer,
.menu-especialidades,
.whatsapp-float,
#btn-topo{

display:none;

}

body{

background:#FFF;

}

.especialidade-card{

box-shadow:none;

border:1px solid #DDD;

page-break-inside:avoid;

margin-bottom:25px;

}

}



/*==================================================
REDUÇÃO DE MOVIMENTO
==================================================*/

@media(prefers-reduced-motion:reduce){

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}



/*==================================================
FIM DO CSS ESPECIALIDADES - DAQUI PARA CIMA MODIFICO A ABA ESPECIALIDADE
Centro de Saúde Parise
==================================================*/







/*========================
ÍCONE
=========================*/

.icone{

    width:95px;

    height:95px;

    margin:0 auto 30px;

    border-radius:50%;

    background:#F8F5EC;

    display:flex;

    justify-content:center;

    align-items:center;

    border:2px solid rgba(198,162,77,.30);

}

.icone i{

    font-size:42px;

    color:#C6A24D;

}


/* =========================
   BOTÕES
========================= */

.btn {
    display: inline-block;

    background: #D6A53A;

    color: white;

    padding: 14px 30px;

    border: none;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(225, 158, 6, 0.25);

    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(225, 158, 6, 0.35);
}


/* =========================
   SEÇÕES
========================= */

section {
    padding: 90px 6%;
}

.section-title {
    text-align: center;

    font-size: clamp(30px, 4vw, 42px);

    color: #56613D;

    margin-bottom: 50px;

    line-height: 1.2;

    position: relative;
}

.section-title::after {
    content: "";

    display: block;

    width: 65px;
    height: 3px;

    margin: 15px auto 0;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #5E6A40,
        #D6A53A
    );
}


/* =========================
   SOBRE
========================= */

.about {
    max-width: 1200px;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 60px;

    flex-wrap: wrap;
}

.about img {
    width: 100%;
    max-width: 520px;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(47, 59, 47, 0.14);
}

.about-text {
    flex: 1;

    min-width: 280px;
}

.about-text p {
    color: #5C625A;

    text-align: justify;

    font-size: 17px;
}


/* =========================
   SERVIÇOS
========================= */

.services {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;
}

.service-box {
    background: rgba(255, 255, 255, 0.97);

    padding: 32px;

    border-radius: 20px;

    border:
        1px solid rgba(94, 106, 64, 0.10);

    box-shadow:
        0 8px 30px rgba(47, 59, 47, 0.07);

    color: #333;

    text-decoration: none;

    position: relative;

    overflow: hidden;

    transition: all 0.4s ease;
}

.service-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #5E6A40,
        #D6A53A
    );
}

.service-box:hover {
    transform: translateY(-8px);

    border-color:
        rgba(214, 165, 58, 0.25);

    box-shadow:
        0 20px 45px rgba(47, 59, 47, 0.14);
}

.service-box h3 {
    color: #56613D;

    font-size: 22px;

    margin-bottom: 18px;
}

.service-box p {
    color: #626860;

    text-align: justify;

    line-height: 1.7;

    font-weight: normal;
}

.service-box .frase-destaque {
    color: #343A32;

    font-weight: 700;

    margin-bottom: 8px;
}

/*==================================================
ESPECIALIDADES
==================================================*/

/*==================================================
ESPECIALIDADES PREMIUM
==================================================*/

.especialidades-page{

    padding:50px 6%;
    background:#F7F3E8;

}


.menu-especialidades{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

    margin-bottom:10px;
       line-height:1;

}
.menu-especialidades{
    gap:10px;
    margin-bottom:5px;
}

.menu-especialidades a{

    background:white;

    padding:0 15px;

    height:30px;

    display:flex;
    align-items:center;

    border-radius:30px;

    color:#56613D;

    font-weight:600;

    text-decoration:none;

    border:1px solid #eee;

    transition:.3s;

    line-height:1;
}

.menu-especialidades{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;

    margin-bottom:10px;

    height:20px;
    overflow:hidden;

}

.menu-especialidades a:hover{

    background:#D6A53A;

    color:white;

}



.especialidade-card{

    position:relative;

    background:white;

    border-radius:24px;

    padding:25px 30px;

    margin-bottom:35px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    overflow:hidden;

}


.especialidade-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:7px;

    background:#D6A53A;

}



.icone{

    width:50px;

    height:50px;

    margin:0 auto 15px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F8F3E6;

}


.icone i{

    font-size:30px;

    color:#D6A53A;

}



.especialidade-card h2{

    text-align:center;

    font-size:32px;


    color:#56613D;

}



.barra-dourada{

    width:80px;

    height:4px;

    background:#D6A53A;

    margin:20px auto 30px;

}



.descricao-geral{

    text-align:center;

    max-width:850px;

    margin:0;

    color:#666;
line-height: 1.7;

}



.procedimentos{

    margin-top:10px;

}



.procedimento{

    background:#FAFAFA;

    border-left:5px solid #D6A53A;

    padding:25px;

    margin-bottom:20px;

    border-radius:12px;

}



.procedimento h3{

    color:#56613D;

    font-size:22px;

    margin-bottom:10px;

}



.procedimento p{

    color:#666;

}



/* =========================
   CONTATO
========================= */

.contato-section {
    padding: 30px 6% 40px;

    background:
        linear-gradient(
            180deg,
            #F5F7F6,
            #EDF2ED
        );
}

.contato-intro {
    text-align: center;

    color: #687066;

    font-size: 18px;

    margin-top:0px;
    margin-bottom:25px;
    
}

.contato-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(47, 59, 47, 0.14);
}


/* INFORMAÇÕES CONTATO */

.contato-info {
    background:
        linear-gradient(
            145deg,
            #647047,
            #35432F
        );

    color: white;

    padding: 40px;

    position: relative;

    overflow: hidden;
}

.contato-info::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);

    top: -140px;
    right: -120px;
}

.contato-info h2 {
    font-size: 32px;

    margin-bottom: 15px;

    position: relative;
}

.contato-info > p {
    color:
        rgba(255, 255, 255, 0.85);

    margin-bottom: 40px;

    position: relative;
}

.contato-item {
    display: flex;

    gap: 18px;

    margin-bottom: 30px;

    position: relative;

}


/* ÍCONE WHATSAPP */

.icone-whatsapp i {

    color: #25D366;

    font-size: 30px;

}


/* ÍCONE INSTAGRAM */

.icone-instagram i {

    color: white;

    font-size: 30px;

}


/* LINK INSTAGRAM */

.instagram-link {

    color: white;

    text-decoration: none;

}


.instagram-link:hover {

    color: #D6A53A;

}


.contato-item span {

    font-size: 25px;

}


.contato-item strong {

    font-size: 16px;

}


.contato-item p {

    color: rgba(255,255,255,0.80);

    margin-top: 5px;

}


/*====================CAIXA DE CONTATO PARTE FORMULÁRIO ==========================*/


.contato-form {
    background: white;

    padding: 60px;
}

.contato-form h2 {
    color: #56613D;

    font-size: 28px;

    margin-bottom: 30px;
}

.contato-form label {
    display: block;

    color: #444B42;

    font-weight: 600;

    margin-bottom: 7px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;

    padding: 15px 17px;

    margin-bottom: 22px;

    border:
        1px solid #DDE2DB;

    border-radius: 12px;

    background: #FAFBF9;

    color: #30382F;

    font-size: 15px;

    font-family: inherit;

    outline: none;

    transition: 0.3s;
}

.contato-form textarea {
    resize: vertical;
}

.contato-form input:focus,
.contato-form textarea:focus {
    background: white;

    border-color: #78845C;

    box-shadow:
        0 0 0 4px rgba(94, 106, 64, 0.12);
}

.contato-form button {
    width: 100%;

    padding: 16px;

    background:
        linear-gradient(
            135deg,
            #D6A53A,
            #E19E06
        );

    color: white;

    border: none;

    border-radius: 12px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(225, 158, 6, 0.22);

    transition: 0.3s;
}

.contato-form button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(225, 158, 6, 0.32);
}

/*===================== FIM CAIXA DE CONTATO ===============================*/


/*=====================   MAPA - INICIO =============================*/

.contato-mapa {
    max-width: 1100px;

    margin: 60px auto 0;

    text-align: center;
}

.contato-mapa h2 {
    color: #56613D;

    font-size: 30px;

    margin-bottom: 8px;
}

.contato-mapa p {
    color: #687066;

    margin-bottom: 28px;
}

.contato-mapa iframe {
    width: 100%;

    height: 420px;

    border: none;

    border-radius: 25px;

    box-shadow:
        0 18px 45px rgba(47, 59, 47, 0.13);
}

/*=================   MAPA - FIM ============================*/



/* =========================
   RESPONSIVO TABLET
========================= */

@media (max-width: 900px) {

    .header {
        padding:
            14px 25px;
    }

    .nav ul {
        gap: 18px;
    }

    .contato-container {
        grid-template-columns: 1fr;
    }

    .about {
        gap: 35px;
    }

}


/* =========================
   RESPONSIVO CELULAR
========================= */

@media (max-width: 768px) {

    html {
        scroll-padding-top: 260px;
    }

    .header {
        flex-direction: column;

        text-align: center;

        padding: 12px 20px;
    }

    .logo img {
        height: 50px;
    }

    .nav ul {
        flex-wrap: wrap;

        justify-content: center;

        gap: 5px 18px;

        margin-top: 8px;
    }

    .nav ul li a {
        font-size: 14px;
    }


    /* HERO */

    .hero {
        min-height: 72vh;

        padding: 60px 22px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }


    /* SEÇÕES */

    section {
        padding: 65px 20px;
    }

    .section-title {
        margin-bottom: 40px;
    }


    /* SOBRE */

    .about {
        flex-direction: column;
    }

    .about-text p {
        font-size: 16px;
    }


    /* SERVIÇOS */

    .services {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 27px;
    }


    /* ESPECIALIDADES */

    .especialidades {
        padding: 65px 20px;
    }

    .especialidade-box {
        padding: 30px 25px;

        border-radius: 18px;

        scroll-margin-top: 260px;
    }

    .especialidade-box h2 {
        font-size: 27px;
    }


    /* PROFISSIONAIS */

   .profissionais-section {

    padding:30px 20px 20px;


    }

    .profissionais-grid {

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
    margin-top:0 !important;

}

    .profissional-card {
        width: 100%;

        max-width: 340px;

        margin: auto;
    }

  .profissional-card img{
    width:170px;
    height:170px;

    }


    /* CONTATO */

    .contato-section {
        padding: 65px 20px;
    }

    .contato-info,
    .contato-form {
        padding: 38px 27px;
    }

    .contato-info h2 {
        font-size: 27px;
    }

    .contato-form h2 {
        font-size: 25px;
    }


    /* MAPA */

    .contato-mapa iframe {

    width: 100%;

    height: 420px;

    border: none;

    border-radius: 25px;

    box-shadow:
    0 18px 45px rgba(47,59,47,0.13);
    }


    /* WHATSAPP */

    .whatsapp-float {
        width: 56px;
        height: 56px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }

}


/* =========================
   TELAS MUITO PEQUENAS
========================= */

@media (max-width: 420px) {

    html {
        scroll-padding-top: 280px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .nav ul {
        gap: 4px 14px;
    }

    .nav ul li a {
        font-size: 13px;
    }

    .especialidade-box {
        scroll-margin-top: 280px;
    }

    .contato-info,
    .contato-form {
        padding: 32px 22px;
    }

}

/* =========================
   PARISE - DOURADO SÓLIDO
========================= */

.nav ul li a::after {
    background: #D6A53A;
}

.section-title::after {
    background: #D6A53A;
}

.categoria-titulo::after {
    background: #D6A53A;
}

.service-box::before {
    background: #D6A53A;
}

.btn {
    background: #D6A53A;
}

.btn:hover {
    background: #B88A2A;
}

.contato-form button {
    background: #D6A53A;
}

.contato-form button:hover {
    background: #B88A2A;
}

/* Centralizar textos do formulário */

.contato-form h2 {
    text-align: center;
}

.contato-form label {
    display: block;
    text-align: center;
}

.contato-form input,
.contato-form textarea {
    text-align: center;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    text-align: center;
}

.contato-form button {
    display: block;
    margin: 20px auto 0;
}


/* ==============================================
FIM DA CAIXA DE CONTATO
==============================================*/



/* =========================
   FUNDO PÉROLA - CLÍNICA PARISE
========================= */

body {
    background-color: #F7F3E8;
}

section {
    background-color: #F7F3E8;
}

.especialidades {
    background: #F7F3E8;
}

.profissionais-section {
    background: #F7F3E8;
}

.contato-section {
    background: #F7F3E8;
}





/* =========================
   CENTRALIZAR FOTOS DOS PROFISSIONAIS
========================= */

.profissional-card img{

    width:400px;
    height:400px;

    object-fit:cover;

    border-radius:18%;

    border:2px solid #fff;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    display:block;

    margin:30px auto 20px;

}

/*=================================
BOTÃO PROFISSIONAIS - WHATSAPP
=================================*/

.btn-profissional{

    display:inline-block;

    margin-top:20px;

    color:#C8A24C;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;

}


.btn-profissional:hover{

    color:#a98232;

}




/* =========================
   CENTRALIZAR CARDS DOS PROFISSIONAIS
========================= */

.profissionais-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;

    max-width: 1300px;
    margin: 0 auto 20px;
    padding-top:0;
}

.profissional-card {
    width: 320px;
}

/* =========================
   LINKS CONTATO
========================= */

.instagram-link {

    color: white;

    text-decoration: none;

    font-weight: 500;

}


.instagram-link:hover {

    color: #D6A53A;

}


/* ÍCONES */

.icone-whatsapp {

    color: #25D366;

    font-size: 28px;

}


.icone-instagram {

    color: white;

    font-size: 28px;

}

/* =========================
   ÍCONES REDES SOCIAIS
========================= */

.icone-whatsapp i {

    color: #25D366;

    font-size: 30px;

}


.icone-instagram i {

    color: white;

    font-size: 30px;

}


/* LINK INSTAGRAM */

.instagram-link {

    color: white;

    text-decoration: none;

    font-weight: 500;

}


.instagram-link:hover {

    color: #D6A53A;

}

/* =========================
   WHATSAPP CLICÁVEL
========================= */

.whatsapp-link {

    display: flex;

    gap: 18px;

    align-items: flex-start;

    text-decoration: none;

    color: inherit;

    transition: 0.3s;

}


.whatsapp-link:hover {

    transform: translateX(5px);

}


.whatsapp-link:hover .icone-whatsapp i {

    transform: scale(1.15);

}


.icone-whatsapp i {

    color: #25D366;

    font-size: 30px;

    transition: 0.3s;

}

/* =========================
   BOTÕES FLUTUANTES REDES SOCIAIS
========================= */



/* WHATSAPP */

.whatsapp-float {

    bottom: 25px;

    background-color: #25D366;

}


/* INSTAGRAM */

.instagram-float {

    bottom: 95px;

    background-color: #C13584;

}


/* EFEITO MOUSE */

.whatsapp-float:hover,
.instagram-float:hover {

    transform: scale(1.12);

    color: white;

}

/* =========================
   CORREÇÃO ESPECIALIDADES
========================= */

.especialidade-box {
    position: relative;
    z-index: 1;
}


.service-box {
    position: relative;
    z-index: 2;
    display: block;
    color: #333;
    text-decoration: none;
}


.service-box:hover {
    transform: translateY(-5px);
}


/* Mantém botões flutuantes acima */
.whatsapp-float,
.instagram-float {
    z-index: 9999;
}

/* =========================
   INSTAGRAM CLICÁVEL
========================= */

.instagram-link {

    display: flex;

    gap: 18px;

    align-items: flex-start;

    text-decoration: none;

    color: inherit;

    transition: 0.3s;

}


.instagram-link:hover {

    transform: translateX(5px);

}


.instagram-link:hover .icone-instagram i {

    transform: scale(1.15);

}


.icone-instagram i {

    color: #E1306C;

    font-size: 30px;

    transition: 0.3s;

}


.instagram-link strong {

    color: white;

}


.instagram-link p {

    color: rgba(255,255,255,0.80);

}

/* =========================
   ESPECIALIDADES PREMIUM
   ÍCONES E ANIMAÇÃO
========================= */


.especialidade-box {

    position: relative;

    overflow: hidden;

    transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

}



.especialidade-box:hover {

    transform: translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.15);

}



/* ÍCONES DOURADOS */

.especialidade-box h2 i {

    display:block;

    color:#D6A53A;

    font-size:38px;

    margin-bottom:15px;

    transition:0.35s;

}



.especialidade-box:hover h2 i {

    transform:scale(1.15);

}



/* TÍTULO */

.especialidade-box h2 {

    color:#56613D;

    transition:0.3s;

}



/* LINHA DECORATIVA */

.especialidade-box h2::after {

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:#D6A53A;

    margin:15px auto;

    border-radius:10px;

}



/* LISTA */

.especialidade-box li {

    transition:0.25s;

}


.especialidade-box li:hover {

    transform:translateX(8px);

    color:#56613D;

}

/* =========================
   FRASE RELIGIOSA RODAPÉ
========================= */

.frase-fe {

    max-width: 800px;

    margin: 0 auto 20px;

    font-size: 17px;

    line-height: 1.8;

    font-style: italic;

    color: #D6A53A;

}


.frase-fe span {

    display: block;

    margin-top: 8px;

    font-size: 15px;

    font-style: normal;

    color: rgba(255,255,255,0.85);

}


/* =========================
   PROCEDIMENTOS
=========================*/

.section-subtitle{
    max-width:750px;
    margin:0 auto 50px;
    text-align:center;
    color:#666;
    font-size:17px;
    line-height:1.7;
}

.lista-servicos{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.lista-servicos li{

    padding:10px 0;

    border-bottom:1px solid transparent;

    color:#555;

    font-size:15px;

    transition:.3s;

}


.lista-servicos li:hover{

    border-bottom:2px solid var(--dourado);

}


.lista-servicos li:last-child{

    border-bottom:1px solid transparent;

}


.lista-servicos li:hover{

    border-bottom:2px solid var(--dourado);

}

.lista-servicos li:last-child{
    border-bottom:1px solid transparent;
}

.service-box h3 i{
    color:#caa24b;
    margin-right:8px;
}

.btn-servico{
    display:inline-block;
    margin-top:20px;
    padding:10px 22px;
    background:#caa24b;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-servico:hover{
    background:#a88434;
    transform:translateY(-2px);
}


/* ======================= RETIRA SUBLINHADO DOS LINKS DO RODAPÉ========================= */
/* ======================= RETIRA SUBLINHADO DOS LINKS DO RODAPÉ========================= */
/* ======================= RETIRA SUBLINHADO DOS LINKS DO RODAPÉ========================= */

.footer a{

    text-decoration:none;

}

/* ======================= RETIRA SUBLINHADO DAS ABAS ========================= */
/* ======================= RETIRA SUBLINHADO DAS ABAS ========================= */
/* ======================= RETIRA SUBLINHADO DAS ABAS ========================= */

header a,
nav a,
.menu a{
    text-decoration:none !important;
}



/*====================== BOTÕES VOLTAR AO TOPO =========INICIO=========================*/
/*====================== BOTÕES VOLTAR AO TOPO =========INICIO=========================*/
/*====================== BOTÕES VOLTAR AO TOPO =========INICIO=========================*/

#botao-subir{

    position:fixed;

    right:25px;

    bottom:165px;

    width:60px;

    height:60px;

    background:#C6A24D;

    color:white;

    border:none;

    border-radius:50%;

    font-size:30px;

    z-index:999999;

    cursor:pointer;

    display:none;

}



/*================ ÁREAS DE ATUAÇÃO pagina inicial ================================*/
/*================ ÁREAS DE ATUAÇÃO pagina inicial ================================*/
/*================ ÁREAS DE ATUAÇÃO pagina inicial ================================*/

.services{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:30px;

}


.service-box{

    display:block;

    background:#fff;

    padding:35px 30px;

    border-radius:20px;

    text-decoration:none;

    color:#C8A24C;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border-top:4px solid #C8A24C;

    transition:.3s ease;

}


.service-box:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}


.service-box h3{

    color:#1D4D3C;

    font-size:22px;

    margin-bottom:15px;

}


.frase-destaque{

    color:#C8A24C !important;

    font-weight:700;

    font-size:17px;

    line-height:1.5;

}

/*=========================
ÍCONES ÁREAS DE ATUAÇÃO
=========================*/

.service-box .icon{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}


.service-box .icon i{

    color:#C8A24C !important;

    font-size:42px !important;

}

/* TÍTULO DAS CATEGORIAS DOS PROFISSIONAIS */

.categoria-titulo{

    text-align:center !important;

    font-size:30px !important;

    color:#4F5D4B !important;

    margin:0 0 5px 0 !important;

    font-weight:700 !important;

    letter-spacing:.5px !important;

}


/* GRID DOS PROFISSIONAIS */

.profissionais-grid{

    margin-top:0 !important;

}


/* ESPAÇAMENTO DA PÁGINA PROFISSIONAIS */

.profissionais-section{

    padding-top:20px !important;

    padding-bottom:40px !important;

}

.profissionais-intro{

    margin-bottom:20px !important;

}

.categoria-titulo{

    margin-top:0 !important;

    margin-bottom:10px !important;

}

.profissionais-section .container{
    margin-bottom:0 !important;
}

.profissionais-intro{
    margin-bottom:0 !important;
}


/*==================================
SOBRE PREMIUM
==================================*/

/*==================================
SOBRE PREMIUM — VERSÃO REFINADA
==================================*/

.sobre-premium{
    padding:38px 0;
    background:#faf9f6;
}

.sobre-grid{
    display:grid;
    grid-template-columns:0.95fr 1.05fr;
    gap:35px;
    align-items:center;
}

.sobre-imagem{
    display:flex;
    justify-content:center;
    align-items:center;
}

.sobre-imagem img{
    width:100%;
    max-width:520px;
    border-radius:20px;
    display:block;
    box-shadow:0 18px 45px rgba(0,0,0,.14);
}

.sobre-topo{
    display:block;
    color:#C6A24D;
    font-weight:700;
    letter-spacing:2.5px;
    font-size:13px;
    margin-bottom:14px;
}

.sobre-conteudo h2{
    margin:0 0 22px;
    font-size:clamp(34px,3.4vw,44px);
    line-height:1.12;
    color:#244436;
    max-width:680px;
}

.sobre-conteudo p{
    color:#666;
    line-height:1.8;
    margin-bottom:16px;
    font-size:16px;
    max-width:680px;
}

.sobre-lista{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:28px 0;
}

.sobre-lista div{
    background:#fff;
    padding:16px 18px;
    min-height:54px;
    display:flex;
    align-items:center;
    border-radius:14px;
    border:1px solid #ececec;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    color:#343a32;
    font-weight:600;
    transition:all .3s ease;
}

.sobre-lista div:hover{
    transform:translateY(-4px);
    border-color:#C6A24D;
    box-shadow:0 14px 30px rgba(0,0,0,.10);
}

.sobre-lista i{
    color:#C6A24D;
    margin-right:10px;
    flex-shrink:0;
}

.btn-sobre{
    display:inline-block;
    padding:14px 28px;
    background:#244436;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    transition:all .3s ease;
}

.btn-sobre:hover{
    background:#C6A24D;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(198,162,77,.25);
}

.sobre-botoes{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:28px;
}

.btn-sobre.principal{
    background:#244436;
    color:#fff;
}

.btn-sobre.secundario{
    background:#fff;
    color:#244436;
    border:2px solid #C6A24D;
}

.btn-sobre.secundario:hover{
    background:#C6A24D;
    color:#fff;
}

/* RESPONSIVO */

@media(max-width:900px){

    .sobre-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .sobre-imagem img{
        width:82%;
    }

    .sobre-conteudo{
        text-align:center;
    }

    .sobre-conteudo h2,
    .sobre-conteudo p{
        margin-left:auto;
        margin-right:auto;
    }

}

@media(max-width:600px){

    .sobre-premium{
        padding:55px 20px;
    }

    .sobre-imagem img{
        width:100%;
        max-width:430px;
    }

    .sobre-conteudo h2{
        font-size:32px;
    }

    .sobre-conteudo p{
        font-size:15px;
    }

    .sobre-lista{
        grid-template-columns:1fr;
        gap:12px;
    }

    .sobre-lista div{
        justify-content:center;
        text-align:center;
    }

}

/*======================================
      GALERIA DA CLÍNICA
======================================*/

.galeria-clinica{
    padding:90px 8%;
    background:#f8f8f5;
}

/*======================================
          CONVÊNIOS
======================================*/

.convenios-section{
    padding:90px 8%;
    background:#ffffff;
}

.convenios-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:45px;
}

.convenio-card{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:16px;
    padding:22px;
    text-align:center;
    font-size:18px;
    font-weight:600;
    color:#4F5D4B;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.convenio-card:hover{
    transform:translateY(-6px);
    border-color:#C6A24D;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.convenios-aviso{
    margin-top:35px;
    text-align:center;
    color:#666;
    font-size:15px;
    line-height:1.7;
}

/* Centralizar descrição principal das especialidades */

.especialidade-card .descricao-geral {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

/* =========================
   CORREÇÃO — ÁREAS DE ATUAÇÃO NO CELULAR
========================= */

@media (max-width: 768px) {

    .services {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .service-box {
        width: 100%;
        min-width: 0;
        padding: 28px 22px;
        text-align: center;
    }

    .service-box h3 {
        font-size: 21px;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .service-box p {
        font-size: 16px;
        word-break: normal;
        overflow-wrap: break-word;
    }

}

/* =========================
   CORREÇÃO — MENU ESPECIALIDADES
   NÃO CORTAR ÍCONES NO CELULAR
========================= */

.menu-especialidades {
    height: auto;
    min-height: 20px;
    overflow: visible;
}

.menu-especialidades .container {
    height: auto;
    overflow: visible;
    flex-wrap: wrap;
}

@media (max-width: 768px) {

    .menu-especialidades {
        height: auto;
        overflow: visible;
        padding: 10px 0;
    }

    .menu-especialidades .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        overflow: visible;
        padding: 5px 10px;
    }

    .menu-especialidades a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

}

/* =========================================================
   ORGANIZAÇÃO FINAL — PARISE
   MENU + CARDS + BOTÕES FLUTUANTES
========================================================= */


/* =========================================================
   MENU DE ESPECIALIDADES
========================================================= */

.menu-especialidades {
    height: auto;
    min-height: 20px;
    overflow: visible;
}

.menu-especialidades .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: auto;
    overflow: visible;
}

.menu-especialidades a {
    flex: 0 0 auto;
    white-space: nowrap;
}


/* =========================================================
   ÁREAS DE ATUAÇÃO — CELULAR
========================================================= */

@media (max-width: 768px) {

    .services {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 20px;
    }

    .service-box {
        width: 100%;
        min-width: 0;
        padding: 28px 22px;
        text-align: center;
    }

    .service-box h3 {
        font-size: 21px;
        line-height: 1.3;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .service-box p {
        font-size: 16px;
        line-height: 1.7;
        word-break: normal;
        overflow-wrap: break-word;
    }


    /* MENU DE ESPECIALIDADES */

    .menu-especialidades {
        height: auto;
        overflow: visible;
        padding: 10px 0;
    }

    .menu-especialidades .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 5px 10px;
        overflow: visible;
    }

    .menu-especialidades a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

}


/* =========================================================
   BOTÕES FLUTUANTES — PADRÃO ÚNICO
========================================================= */

.whatsapp-float,
.instagram-float,
#botao-subir {
    position: fixed;

    right: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    z-index: 999999;

    margin: 0;
}


/* WHATSAPP — 1º */

.whatsapp-float {
    bottom: 25px;

    background: #25D366;

    color: #fff;

    font-size: 30px;

    text-decoration: none;
}


/* INSTAGRAM — 2º */

.instagram-float {
    bottom: 95px;

    background: #C13584;

    color: #fff;

    font-size: 30px;

    text-decoration: none;
}


/* VOLTAR AO TOPO — 3º */

#botao-subir {
    bottom: 165px;

    background: #C6A24D;

    color: #fff;

    border: none;

    font-size: 30px;

    cursor: pointer;

    display: none;
}


/* =========================================================
   EFEITOS
========================================================= */

.whatsapp-float:hover,
.instagram-float:hover,
#botao-subir:hover {
    transform: scale(1.08);
}


/* =========================================================
   CELULAR — BOTÕES ALINHADOS
========================================================= */

@media (max-width: 768px) {

    .whatsapp-float,
    .instagram-float,
    #botao-subir {
        right: 18px;

        width: 56px;
        height: 56px;
    }

    .whatsapp-float {
        bottom: 18px;
        font-size: 27px;
    }

    .instagram-float {
        bottom: 84px;
        font-size: 27px;
    }

    #botao-subir {
        bottom: 150px;
        font-size: 27px;
    }

}

/* =========================================================
   ALINHAMENTO DOS ÍCONES — MENU DE ESPECIALIDADES
========================================================= */

.menu-especialidades a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.menu-especialidades a i {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
    text-align: center;

    flex-shrink: 0;

    margin: 0 8px 0 0;
}


/* Ajuste dos ícones no celular */

@media (max-width: 768px) {

    .menu-especialidades a i {
        width: 26px;
        height: 26px;

        margin-right: 7px;
    }

}

/* =========================================================
   MENU DE ESPECIALIDADES — 2 COLUNAS NO CELULAR
========================================================= */

@media (max-width: 768px) {

    .menu-especialidades {
        height: auto;
        overflow: visible;
        padding: 12px 10px;
    }

    .menu-especialidades .container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;

        width: 100%;
        height: auto;
        padding: 0;

        align-items: stretch;
        overflow: visible;
    }

    .menu-especialidades a {
        display: grid;

        grid-template-columns: 32px 1fr;

        align-items: center;

        width: 100%;
        min-height: 52px;

        box-sizing: border-box;

        padding: 8px 12px;

        white-space: normal;

        text-align: left;

        gap: 8px;
    }

    .menu-especialidades a i {
        width: 32px;
        height: 32px;

        display: flex;

        align-items: center;
        justify-content: center;

        margin: 0;

        line-height: 1;

        flex-shrink: 0;
    }

    .menu-especialidades a span {
        text-align: left;
        line-height: 1.2;
    }

}

/* =========================================================
   CORREÇÕES FINAIS — PARISE
   NÃO ALTERA O DESIGN
========================================================= */


/* =========================
   PROFISSIONAIS
========================= */

.profissionais-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 20px;
}

.profissional-card {
    width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.profissional-card img {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: cover;
    margin: 30px auto 20px;
}


/* =========================
   BOTÕES DOS PROFISSIONAIS
========================= */

.btn-profissional {
    display: inline-block;
    margin-top: 20px;
    color: #C8A24C;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.btn-profissional:hover {
    color: #A98232;
}


/* =========================
   BOTÕES FLUTUANTES
========================= */

.whatsapp-float,
.instagram-float,
#botao-subir {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 999999;
}

.whatsapp-float {
    bottom: 25px;
    background: #25D366;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
}

.instagram-float {
    bottom: 95px;
    background: #C13584;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
}

#botao-subir {
    bottom: 165px;
    background: #C6A24D;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.whatsapp-float:hover,
.instagram-float:hover,
#botao-subir:hover {
    transform: scale(1.08);
}


/* =========================
   MENU ESPECIALIDADES
========================= */

.menu-especialidades {
    height: auto;
    min-height: 20px;
    overflow: visible;
}

.menu-especialidades .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: auto;
    overflow: visible;
}

.menu-especialidades a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
}

.menu-especialidades a i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 8px 0 0;
    line-height: 1;
}


/* =========================
   CONTATO
========================= */

.contato-container {
    width: 100%;
    max-width: 1200px;
}

.contato-form input,
.contato-form textarea {
    max-width: 100%;
}

.contato-mapa {
    width: 100%;
    max-width: 1100px;
}

.contato-mapa iframe {
    display: block;
}


/* =========================
   CELULAR
========================= */

@media (max-width: 768px) {

    .profissionais-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .profissional-card {
        width: 100%;
        max-width: 340px;
    }

    .profissional-card img {
        width: 170px;
        height: 170px;
        margin: 20px auto;
    }


    /* MENU EM DUAS COLUNAS */

    .menu-especialidades {
        width: 100%;
        height: auto;
        overflow: visible;
        padding: 10px;
    }

    .menu-especialidades .container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        padding: 0;
        overflow: visible;
    }

    .menu-especialidades a {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr);
        align-items: center;
        width: 100%;
        min-height: 50px;
        padding: 8px 10px;
        white-space: normal;
        text-align: left;
        gap: 7px;
    }

    .menu-especialidades a i {
        width: 30px;
        height: 30px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* ÁREAS DE ATUAÇÃO */

    .services {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .service-box {
        width: 100%;
        min-width: 0;
        padding: 28px 22px;
        text-align: center;
    }


    /* BOTÕES FLUTUANTES */

    .whatsapp-float,
    .instagram-float,
    #botao-subir {
        right: 18px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float {
        bottom: 18px;
        font-size: 27px;
    }

    .instagram-float {
        bottom: 84px;
        font-size: 27px;
    }

    #botao-subir {
        bottom: 150px;
        font-size: 27px;
    }


    /* CONTATO */

    .contato-container {
        grid-template-columns: 1fr;
    }

    .contato-info,
    .contato-form {
        padding: 38px 27px;
    }

    .contato-mapa {
        margin-top: 40px;
    }

    .contato-mapa iframe {
        height: 420px;
    }

}


/* =========================
   CELULARES PEQUENOS
========================= */

@media (max-width: 420px) {

    .menu-especialidades .container {
        gap: 8px;
    }

    .menu-especialidades a {
        min-height: 48px;
        padding: 7px 8px;
        font-size: 12px;
    }

    .menu-especialidades a i {
        width: 27px;
        height: 27px;
    }

    .profissional-card {
        max-width: 320px;
    }

}

/* HERO DESKTOP — COMPACTO */
@media (min-width:769px){

    .hero{
        min-height:330px;
        padding:70px 6%;
        display:flex;
        align-items:center;
    }

    .hero-content{
        max-width:720px;
    }

    .hero h1{
        font-size:36px;
        margin-bottom:10px;
    }

    .hero p{
        font-size:16px;
        margin-bottom:18px;
    }

}


/* GALERIA FINAL — 8 FOTOS, 4 x 2 */

.galeria-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:40px;
}

.foto{
    width:100%;
}

.foto img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:18px;
    display:block;
    box-shadow:0 10px 28px rgba(0,0,0,.10);
    transition:transform .3s ease, box-shadow .3s ease;
}

.foto img:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(0,0,0,.16);
}

/* remove qualquer destaque da primeira foto */
.foto-grande{
    grid-column:auto;
}

.foto-grande img{
    height:360px;
}



@media(max-width:768px){
    .galeria-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .foto img,
    .foto-grande img{
        height:300px;
    }
}

@media(max-width:520px){
    .galeria-grid{
        grid-template-columns:1fr;
    }

    .foto img,
    .foto-grande img{
        height:320px;
    }
}
