
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Layout base */
:root {
  --cor-principal: #5695a6; 
  --cor-profundidade: #046681;
  --cor-visual: #56bbec;
  --cor-secundaria: #f4f1bc; 
  --cor-detalhes: #edbe7c; 
  --cor-fontes: black;
  --cor-efeitos: rgb(255, 3, 45);
  --teal: #0f6d6a;
  --text: #0b3a44;
  --silver: linear-gradient(135deg,#f5f5f5,#e6e6e6,#ffffff);
  --teal-main: #1c6f7c;   
  --teal-light: #2f8b95;  
  --white: #ffffff;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
}

body {
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
}

p {
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
  padding: 15px;
  padding-right: 30px;
  background: var(--cor-principal);
}

.logo img {
  width:70%;
  max-width: 10rem;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

}

/* MENU DESKTOP */
.nav-desktop ul {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}

.nav-desktop  {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* UNDERLINE NO HOVER */
.nav-desktop  a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.nav-desktop ul li a:hover::after {
  width: 100%;
}



.nav-desktop a,
.dropdown-label {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

/* UNDERLINE AO CLICAR */
.nav-desktop a.active::after,
.dropdown-label.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* DROPDOWN DESKTOP */
.dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cor-principal);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 0;
  z-index: 1000;
}

.dropdown-menu a {
  color: #fff;
  display: block;
  padding: 10px 16px;
}


/* BOTÃO MOBILE */
.menu-toggle {
  display: none;
  
}

.nav-mobile {
  display: none;
}





/* DESKTOP */
.nav-desktop .desktop-dropdown {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
}

.nav-desktop .dropdown:hover > .desktop-dropdown {
  opacity: 1;
  visibility: visible;
}

/* ITENS DO DROPDOWN */
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--cor-fontes);
  font-weight: 400;
  transition: background-color 0.2s ease, font-weight 0.2s ease;
}

/* HOVER */
.dropdown-menu li a:hover {
  background-color: var(--cor-secundaria); /* azul bem clarinho */
}

/* ITEM CLICADO (ativo) */
.dropdown-menu li a.active {
  font-weight: 700;
}


/* MOBILE */
nav .nav-mobile .mobile-dropdown {
  display: none;
}

.nav-mobile .dropdown.open > .mobile-dropdown {
  display: none;
}


/* DROPDOWN MOBILE */
.nav-mobile .dropdown-menu {
  display: none;
}

.nav-desktop .dropdown:hover > .dropdown-menu {
  display: block;
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}

.nav-mobile.open {
  right: 0;
}

.overlay.show {
  display: none;
}


.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  text-align: center;
}

/* container das imagens */
.hero-images{
  position:absolute;
  width: 100%;
  inset:0;
  background-color: rgba(179, 231, 240, 0.6);
  display:flex;
  gap:10px; /* separação entre imagens */
  padding:10px; /* espaço nas bordas */
  z-index:0;
}

.hero-images img{
  width:33.33%;
  height:100%;
  object-fit:cover;
  filter:blur(2px);
  opacity:1;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}


/* conteúdo acima */
.hero h1,
.hero p,
.hero .box-main,
.hero .hero-features{
  position: relative;
  z-index: 2;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.4);
  font-family: 'Poppins', sans-serif;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(245, 245, 245, 0.3);
z-index:1;
}



.box-main{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;

}


.hero h1{
  font-size:2rem;
  font-weight:600;
  color:var(--cor-profundidade);
  margin-bottom:1rem;
  opacity:0;
  animation:fadeUp 1s forwards;
}

.hero p{
  font-size:1.2rem;
  max-width:800px;
  font-weight: 600;
  margin:auto;
  color:#ffffff;
  margin-bottom:2rem;
  opacity:0;
animation:fadeUp 1s 0.3s forwards;
}



.btn{
opacity:0;
animation:fadeUp 1s 0.6s forwards;
}



.box-main{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:7px 10px;
  border-radius:8px;
  background:var(--cor-profundidade);
  color:white;
  text-decoration:none;
  font-weight:400;
  font-size: 1rem;
  transition: all .3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
  background:#1c6f7a;
}

.container-about {
  background: linear-gradient(
    180deg,
    rgba(179, 231, 240, 0.6),
    #ffffff
  );
  padding: 1.5rem 0.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 10px;
  padding: 0.5rem;
}

/* SEÇÃO */

.pilares-clinica{
  background:rgba(179, 231, 240, 0.6);
  padding:2rem;
}

/* CONTAINER */

.pilares-container{
  max-width:1900px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

/* CARD */

.pilar-card{
  max-width:350px;
  width:100%;
  padding:2rem;
  text-align:center;

  background:rgba(255,255,255,0.25);
  backdrop-filter:blur(6px);

  border:1px solid rgba(255,255,255,0.6);
  border-radius:14px;

  transition:all .35s ease;

  animation:fadeUp 0.8s ease;
}

/* HOVER */

.pilar-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  border-color:#1c99a1;
}

/* TITULO */

.pilar-card h2{
  font-size:1.4rem;
  color:#1c99a1;
  margin-bottom:10px;
}

/* TEXTO */

.pilar-card p{
  font-size:1.05rem;
  line-height:1.6;
  color:#444;
}

/* ANIMAÇÃO */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@media (max-width:900px){

  .pilares-container{
    flex-direction:column;
    align-items:center;
  }

}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* O main cresce e empurra o footer */
.main {
  flex: 1;
}


.about{
  max-width:900px;
  margin:auto;
  background:white;
  padding:50px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  animation: fadeUp 1.2s ease;
}

.about h2{
  font-size:2.2rem;
  margin-bottom:20px;
  color:var(--cor-profundidade);
}

.about p{
  font-size:1.2rem;
  line-height:1.8;
  color:#555;
}

/* SEÇÃO */

.citacao-psicologia{
  padding: 1.5rem;
  text-align:center;
  background:linear-gradient(180deg,#ffffff,#f7fbfc);
}

/* CONTAINER */

.citacao-container{
  max-width:900px;
  margin:0 auto;
  position:relative;
}

/* TEXTO DA FRASE */

.citacao-texto{
  font-family:'Playfair Display', cursive;
  font-size:2rem;
  font-style:italic;
  line-height:1.6;
  color:#444;
  margin-bottom:1.5rem;
}

/* AUTOR */

.citacao-autor{
  font-size:1.1rem;
  color:#1c99a1;
  font-weight:500;
}

/* LINHAS DECORATIVAS */



.servicos {
  padding: 0 1.5rem 4rem;
  max-width: 1500px;
  margin: 0 auto;
}

.servicos h2 {
  font-size: 2.5rem;
  color: var(--cor-profundidade);
  margin: 0.8rem 0 0;
}

/* GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* LINK */
.card-link {
  text-decoration: none;
  color: inherit;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* IMAGEM */
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* TEXTO */
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.card-desc {
  font-size: 1.2rem;
  color: #555;
}

/* BOTÃO */
.btn-small {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: #1c99a1;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}


.cta {
  width: 100%;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #046681, #56bbec);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content {
  max-width: 1200px;
  text-align: center;
}

.cta p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.cta a:hover {
  opacity: 0.8;
}



/* FOOTER */
.footer {
  background-color: var(--cor-principal);
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column; /* Mantém o copy embaixo */
  align-items: center;
  
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-logo img {
  width: 25vh;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.8rem;
  color: var(--white);
  transition: color 0.3s;
}

.footer-social a:hover,
.footer-social a:focus {
  color: var(--cor-secundaria);
  outline: none;
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: var(--white);
  margin-top: 0.5rem;
}


/* PAGINA SOBRE */

.sobre {
  padding: 5rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(179, 231, 240, 0.6),
    #ffffff
  );
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* IMAGEM */
.sobre-imagem img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* TEXTO */
.sobre-conteudo h2 {
  font-size: 2.2rem;
  color: #1c99a1;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.sobre-conteudo p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  text-align: center;
  color: #444;
  margin-bottom: 1.2rem;
}

/* ESPECIALIDADES */
.especialidades {
  list-style: none;
  cursor: pointer;
  padding: 10px 15px;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.especialidades li a{
  background: #f2f9fb;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
}

.titulo-responsavel{
  margin-top:2rem;
  margin-bottom:0.6rem;
  font-size:0.9rem;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#888;
}

/* CARD RESPONSÁVEL */

.responsavel-card{
  width: 100%;
  max-width: 800px;
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:2rem;
  padding:1.2rem;


  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* FOTO */

.responsavel-card img{
  width:300px;
  height: 300px;
  object-fit:cover;
  border:3px solid #1c99a1;
}

/* BOTÃO */
.btn-sobre {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 30px;
  background: #1c99a1;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-sobre:hover,
.btn-sobre:focus {
  background: #157c82;
  transform: translateY(-2px);
}



/* CONTATO */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.contato {
  background: linear-gradient(
    180deg,
    rgba(179, 231, 240, 0.6),
    #ffffff
  );
}

/* HEADER */
.contato-header {
  text-align: center;
  padding:1.5rem 2rem;
}

.contato-header h1 {
  font-size: 2.4rem;
  color: #1c99a1;
  margin-bottom: 1rem;
}

.contato-header p {
  max-width: 1500px;
  margin: 0 auto;
}

/* CONTEÚDO */
/* CONTAINER */

.contato-conteudo{
max-width:500px;
margin:0 auto;
padding:3rem 1.5rem;
text-align:center;
}

/* TITULO */

.contato-info h2{
font-size:2rem;
color:#1c99a1;
margin-bottom:2rem;
}

/* LISTA */

.contato-info ul{
list-style:none;
padding:0;
margin-bottom:3rem;
}

.contato-info li{
font-size:1.25rem;
margin-bottom:1.5rem;
line-height:1.6;
}

.contato-info strong{
color:#1c99a1;
}

/* LINKS */

.contato-info a{
color:#1c99a1;
text-decoration:none;
font-weight:600;
}

.contato-info a:hover{
text-decoration:underline;
}

/* CARD RESPONSÁVEL */


.responsavel img{
width:500px;
border-radius:10px;
margin-bottom:1rem;
}

.responsavel h3{
font-size:1.4rem;
color:#1c99a1;
margin-bottom:0.4rem;
}

.responsavel p{
font-size:1.05rem;
line-height:1.5;
color:#555;
}




/* PAGINAS DE ESPECIALIDADES  */

.especialidade {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(179, 231, 240, 0.45),
    #ffffff
  );
}

/* CARROSSEL */
.carousel {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* DOTS */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.dot.active {
  background: #1c99a1;
}

/* CONTEÚDO */
.especialidade-conteudo {
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.especialidade-conteudo h1 {
  font-size: 2.5rem;
  color: #1c99a1;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.especialidade-conteudo h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: #157c82;
  font-family: 'Poppins', sans-serif;
}

.especialidade-conteudo p {
  line-height: 1.8;

}

.introducao {
  margin-bottom: 2rem;
}

/* LISTA */
.info-lista {
  margin-top: 1rem;
  padding-left: 1.2rem;

}

.info-lista li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}