* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #cafcfb;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}






/* MENU DESKTOP */

header {
  width: 100%;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: 0.5s;
  z-index: 99;
  box-shadow: 0 0 8px #00000061;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  max-width: 50px;
  cursor: pointer;
  transition: 0.2s;
  display: block;
}

header .logo img:hover {
  transform: scale(1.05);
}

header .menu-desktop nav ul li {
  display: inline-block;
  margin: 0 40px;
}

header .menu-desktop nav ul li a {
  color: #0abbb5;
  display: inline-block;
  transition: 0.2s;
}

header .menu-desktop nav ul li a:hover {
  transform: scale(1.05);
}

header .menu-desktop .menu-btn a button {
  width: 160px;
  height: 40px;
  font-size: 1rem;
  background-color: #0abbb5;
  color: #fff;
  font-weight: 300;
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

header .menu-desktop .menu-btn a button:hover {
  color: #1c1c1c;
  background-color: #cafcfb;
  transform: scale(1.05);
}

/* ================================
   COMPATIBILIDADE COM SEU HTML ATUAL
   (nav tem class .menu-desktop diretamente)
=================================== */

header .menu-desktop ul {
  margin: 0;
  padding: 0;
}

header .menu-desktop ul li {
  list-style: none;
}

header .menu-desktop ul li a {
  text-decoration: none;
}

/* Botão hambúrguer padrão: escondido no desktop */
.menu-mobile {
  display: none;
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* ===== Desktop (>= 992px) ===== */
@media (min-width: 992px) {

  /* Menu em linha */
  header .menu-desktop {
    display: block;
  }

  header .menu-desktop ul {
    display: flex;
    align-items: center;
    gap: 40px;
    /* mesmo espaçamento que você já usa */
  }

  /* Compatibiliza seus seletores existentes */
  header .menu-desktop ul li a {
    color: #0abbb5;
    display: inline-block;
    transition: 0.2s;
  }

  header .menu-desktop ul li a:hover {
    transform: scale(1.05);
  }

  /* Botão do menu não aparece no desktop */
  .menu-mobile {
    display: none;
  }
}

/* ===== Tablet e Mobile (< 992px) ===== */
@media (max-width: 991.98px) {

  /* Mostra o hambúrguer e esconde o menu por padrão */
  .menu-mobile {
    display: block;
  }

  /* O nav vira um dropdown abaixo do header */
  header .menu-desktop {
    position: fixed;
    top: calc(60px + 8px);
    /* ajuste fino se seu header tiver outra altura */
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 12px 14px;
    display: none;
    /* fechado por padrão */
    z-index: 98;
    /* abaixo do header (z-index:99) */
  }

  header .menu-desktop.is-open {
    display: block;
  }

  header .menu-desktop ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  header .menu-desktop ul li a {
    color: #0abbb5;
    padding: 10px 6px;
    display: block;
  }

  /* Botão "Agendar Consulta" ocupa largura total no mobile */
  header .menu-desktop ul li.menu-btn a button {
    width: 100%;
    height: 42px;
    font-size: 1rem;
    background-color: transparent;
    border: 1px solid #0abbb5;
    border-radius: 6px;
    color: #0abbb5;
    cursor: pointer;
    transition: transform .2s;
  }

  header .menu-desktop ul li.menu-btn a button:hover {
    transform: scale(1.02);
  }

  /* Deixa o header mais compacto em telas pequenas */
  header {
    padding: 14px 0;
  }
}

/* ===== Mobile pequeno (< 768px) – ajustes finos ===== */
@media (max-width: 767.98px) {
  header .menu-desktop {
    top: calc(56px + 8px);
    left: 12px;
    right: 12px;
  }
}

/* MENU HAMBÚRGUER — colado abaixo do header fixo */
@media (max-width: 991.98px) {
  header {
    position: fixed;
    z-index: 99;
  }

  /* você já tem isso, só garantindo */

  /* nav abre logo ABAIXO do header (sem gap e sem cobrir o header) */
  header .menu-desktop {
    position: absolute;
    /* relativo ao header */
    top: 100%;
    /* cola na base do header */
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    padding: 20px;
    display: none;
    /* fechado por padrão */
    z-index: 98;
    /* abaixo do header (99), acima do conteúdo */
  }

  header .menu-desktop.is-open {
    display: block;
  }

  /* lista centralizada */
  header .menu-desktop ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  /* mantém estilo/efeito do botão */
  header .menu-desktop ul li.menu-btn a button {
    width: 240px;
    height: 40px;
    font-size: 1rem;
    background-color: #0abbb5;
    border: 1px solid #1c1c1c;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
  }

  header .menu-desktop ul li.menu-btn a button:hover {
    transform: scale(1.05);
    background-color: #cafcfb;
    color: #1c1c1c;
  }
}











/* ======================== */
/* SEÇÃO HERO COMPLETA      */
/* ======================== */

section.hero-site {
  /* base (desktop) que você já tinha */
  height: 100vh;
  background-image: url(../img/bg-principal.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  image-rendering: crisp-edges;

  /* novo: garante que o padding conte na altura */
  box-sizing: border-box;
}

/* container principal */
.hero-site .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
  padding-top: 3rem;
}

/* título principal */
.hero-site .text-hero h1 {
  font-size: 4rem;
  color: #1c1c1c;
  line-height: 70px;
  font-weight: 200;
}

.hero-site .text-hero h1 span {
  display: block;
  font-weight: 800;
  font-size: 4.5rem;
}

/* parágrafo */
.hero-site .text-hero p {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 20px 0;
  color: #1c1c1c;
}

.hero-site .text-hero p span {
  display: block;
}

/* botão */
.hero-site button {
  width: 240px;
  height: 40px;
  font-size: 1rem;
  background-color: #0abbb5;
  color: #fff;
  font-weight: 300;
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.hero-site button:hover {
  color: #1c1c1c;
  background-color: #cafcfb;
  transform: scale(1.05);
}

/* imagem dentro da hero */
.hero-site .hero-img img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ======================== */
/* AJUSTES RESPONSIVOS      */
/* ======================== */

/* Altura aproximada do header fixo (ajuste se necessário) */
:root {
  --header-h: 88px;
}

/* desktop/tablet */
@media (max-width: 767.98px) {
  :root {
    --header-h: 96px;
  }

  /* mobile (aumentei p/ garantir) */
}

/* Âncora #home não fica escondida sob o header ao navegar com links */
#home {
  scroll-margin-top: var(--header-h);
}

/* ===== MOBILE (≤ 767px) ===== */
@media (max-width: 767.98px) {
  section.hero-site {
    /* CORREÇÃO: padding-top empurra a FOTO para baixo do header fixo */
    padding-top: var(--header-h);

    /* neutraliza o height fixo e mantém sensação de tela cheia no iOS */
    height: auto;
    min-height: calc(100svh - var(--header-h));
    padding-bottom: 20px;

    /* o fundo não concorre com a foto */
    background-position: center top;
  }

  .hero-site .container {
    flex-direction: column-reverse;
    /* FOTO EM CIMA, textos abaixo */
    align-items: center;
    gap: 16px;
    height: auto;
    /* neutraliza height:100% da base */
    padding-inline: 16px;
  }

  .hero-site .text-hero {
    text-align: center;
    max-width: 680px;
  }

  .hero-site .text-hero p span {
    display: inline;
  }

  /* evita quebra forçada */

  /* Foto com tamanho controlado no mobile */
  .hero-site .hero-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-site .hero-img img {
    width: clamp(220px, 75vw, 320px);
  }

  /* Botão tocável e responsivo */
  .hero-site .btn-contato button {
    width: min(100%, 320px);
    height: 46px;
    font-size: 1.05rem;
    margin-bottom: 40px;
  }

  /* Títulos menores no mobile */
  .hero-site .text-hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-site .text-hero h1 span {
    font-size: 2.2rem;
  }

  .hero-site .text-hero p {
    font-size: 1rem;
    margin: 14px 0 20px;
  }
}

/* ===== TABLET (768px – 991px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
  section.hero-site {
    /* também usa padding-top no tablet */
    padding-top: var(--header-h);

    height: auto;
    min-height: calc(100svh - var(--header-h));
    padding-bottom: 24px;
    background-position: center top;
  }

  .hero-site .container {
    flex-direction: column-reverse;
    /* mantém foto em cima */
    align-items: center;
    gap: 20px;
    height: auto;
    padding-inline: 24px;
  }

  .hero-site .hero-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-site .hero-img img {
    width: clamp(240px, 45vw, 380px);
  }

  .hero-site .text-hero {
    text-align: center;
  }

  .hero-site .text-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .hero-site .text-hero h1 span {
    font-size: 3.6rem;
  }

  .hero-site .text-hero p {
    font-size: 1.1rem;
    margin: 16px 0 22px;
  }

  .hero-site button {
    height: 44px;
  }
}











/* SEÇÃO ESPECIALIDADES */
section.skills {
  padding: 6rem 0;
  background: linear-gradient(90deg, rgba(202, 252, 251, 1) 0%, rgba(202, 252, 251, 0) 100%);
  background-color: #fff;
}

.skills h1 {
  font-size: 4rem;
  color: #1c1c1c;
  line-height: 70px;
  font-weight: 200;
}

.skills h1 span {
  font-weight: 800;
  font-size: 4rem;
}

.skills article {
  display: grid;
  grid-template: 1fr 1fr / 1fr 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.skills .box-skills img {
  max-width: 75px;
}

.skills .box-skills {
  background-color: #cafcfb;
  padding: 24px;
  border-radius: 16px;
  transition: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 8px;
}

.skills .box-skills:hover {
  transform: scale(1.05);
}

.box-skills .icon-skills {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.box-skills .icon-skills h2 {
  color: #1c1c1c;
  font-size: 1.5rem;
}

.box-skills p {
  color: #1c1c1c;
  text-align: justify;
  line-height: 1.2;
}

.skills button {
  width: 240px;
  height: 40px;
  font-size: 1rem;
  background-color: #0abbb5;
  color: #fff;
  font-weight: 300;
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.skills button:hover {
  color: #1c1c1c;
  background-color: #cafcfb;
  transform: scale(1.05);
}















/* ================================ */
/* SEÇÃO ESPECIALIDADES — COMPLETO  */
/* ================================ */

section.skills {
  padding: 6rem 0;
  background: linear-gradient(90deg, rgba(202, 252, 251, 1) 0%, rgba(202, 252, 251, 0) 100%);
  background-color: #fff;
}

/* ancora não fica sob o header fixo ao clicar no menu */
#especialidades {
  scroll-margin-top: 90px;
}

/* Título */
.skills h1 {
  font-size: 4rem;
  color: #1c1c1c;
  line-height: 70px;
  font-weight: 200;
}

.skills h1 span {
  font-weight: 800;
  font-size: 4rem;
}

/* Grade (desktop: 3 colunas) */
.skills article {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 40px 0;
}

/* Card */
.skills .box-skills {
  background-color: #cafcfb;
  padding: 24px;
  border-radius: 16px;
  transition: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 8px;
}

.skills .box-skills:hover {
  transform: scale(1.05);
}

.skills .box-skills img {
  max-width: 75px;
}

.box-skills .icon-skills {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.box-skills .icon-skills h2 {
  color: #1c1c1c;
  font-size: 1.5rem;
}

.box-skills p {
  color: #1c1c1c;
  text-align: justify;
  line-height: 1.2;
}

/* Botão padrão */
.skills button {
  width: 240px;
  height: 40px;
  font-size: 1rem;
  background-color: #0abbb5;
  color: #fff;
  font-weight: 300;
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.skills button:hover {
  color: #1c1c1c;
  background-color: #cafcfb;
  transform: scale(1.05);
}

/* ===================== */
/* TABLET (768–991.98px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 991.98px) {
  section.skills {
    padding: 4.5rem 0;
  }

  /* título menor e centralizado no tablet */
  .skills h1 {
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
  }

  .skills h1 span {
    font-size: 3.2rem;
  }

  /* grade de 2 colunas no tablet */
  .skills article {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 32px 0;
  }

  /* cartões um pouco mais compactos */
  .skills .box-skills {
    padding: 20px;
  }

  .skills .box-skills img {
    max-width: 64px;
  }

  .skills .box-skills:hover {
    transform: scale(1.03);
  }

  /* centraliza o botão sem alterar o tamanho */
  .skills .btn-contato {
    display: flex;
    justify-content: center;
  }

  .skills .btn-contato a {
    display: inline-flex;
  }

  .skills .btn-contato button {
    width: 240px;
    height: 40px;
  }
}

/* ================== */
/* MOBILE (≤ 767.98px)*/
/* ================== */
@media (max-width: 767.98px) {
  section.skills {
    padding: 3.5rem 0;
  }

  /* título menor e centralizado no mobile */
  .skills h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    text-align: center;
  }

  .skills h1 span {
    font-size: 2.4rem;
  }

  /* grade em 1 coluna */
  .skills article {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0;
  }

  .box-skills .icon-skills {
    gap: 12px;
    margin-bottom: 12px;
  }

  .skills .box-skills img {
    max-width: 56px;
  }

  .box-skills p {
    line-height: 1.35;
    text-align: left;
  }

  /* centraliza o botão mantendo o tamanho original */
  .skills .btn-contato {
    display: flex;
    justify-content: center;
  }

  .skills .btn-contato a {
    display: inline-flex;
  }

  .skills .btn-contato button {
    width: 240px;
    height: 40px;
  }

  .skills .box-skills:hover {
    transform: scale(1.01);
  }
}

/* ========================= */
/* MOBILE PEQUENO (≤ 420px)  */
/* ========================= */
@media (max-width: 420px) {
  .skills h1 {
    font-size: 2rem;
  }

  .skills h1 span {
    font-size: 2.2rem;
  }

  .skills .box-skills img {
    max-width: 52px;
  }
}















/* SEÇÃO SOBRE MIM */
section.sobre-mim {
  padding: 6rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.sobre-mim>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 96px;
}

.sobre-mim .img-sobre img {
  max-width: 420px;
  margin: 20px 0 10px 0;
}

.sobre-mim h1 {
  font-size: 4rem;
  color: #1c1c1c;
  font-weight: 200;
}

.sobre-mim h1 span {
  font-weight: 800;
  font-size: 4rem;
}

.sobre-mim p {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 20px 0;
  color: #1c1c1c;
  text-align: justify;
}

.sobre-mim .btn-redes button {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #1c1c1c;
  font-size: 18px;
  margin-right: 8px;
  background-color: #0abbb5;
  color: #1c1c1c;
  transition: 0.2s;
  cursor: pointer;
}

.sobre-mim .btn-redes button:hover {
  color: #1c1c1c;
  background-color: #cafcfb;
  transform: scale(1.05);
}



/* ===== Evita que a âncora #sobre fique sob o header fixo ===== */
#sobre {
  scroll-margin-top: 90px;
}

/* ================= Tablet (≤ 991.98px) ================= */
@media (max-width: 991.98px) {
  section.sobre-mim {
    padding: 4.5rem 0;
  }

  .sobre-mim>.container {
    flex-direction: column;
    /* empilha: imagem em cima, texto abaixo */
    align-items: center;
    gap: 40px;
    /* menos espaço que no desktop */
    padding-inline: 24px;
  }

  /* Título centralizado no tablet */
  .sobre-mim h1 {
    text-align: center;
    font-size: 3rem;
  }

  .sobre-mim h1 span {
    font-size: 3.2rem;
  }

  /* Imagem responsiva e centralizada */
  .sobre-mim .img-sobre img {
    display: block;
    max-width: min(100%, 420px);
    margin: 0 auto 10px;
  }

  /* Texto mais confortável no tablet */
  .sobre-mim p {
    font-size: 1.1rem;
    text-align: left;
    /* mude para 'justify' se preferir */
  }

  /* Botões de redes centralizados */
  .sobre-mim .btn-redes {
    display: flex;
    justify-content: center;
  }
}

/* ================= Mobile (≤ 767.98px) ================= */
@media (max-width: 767.98px) {
  section.sobre-mim {
    padding: 3.5rem 0;
  }

  .sobre-mim>.container {
    gap: 28px;
    padding-inline: 16px;
  }

  /* Título centralizado no mobile */
  .sobre-mim h1 {
    text-align: center;
    font-size: 2.2rem;
  }

  .sobre-mim h1 span {
    font-size: 2.4rem;
  }

  .sobre-mim .img-sobre img {
    max-width: min(100%, 320px);
  }

  .sobre-mim p {
    font-size: 1rem;
    margin: 14px 0;
    line-height: 1.45;
  }

  .sobre-mim .btn-redes {
    gap: 8px;
  }
}














/* ============================ */
/* SEÇÃO: DEPOIMENTOS (FINAL)   */
/* ============================ */

/* 1) <section class="depoimentos"> — DESKTOP mantém 10rem 0 */
section.depoimentos {
  padding: 10rem 0;
  /* DESKTOP: mantém */
  background: linear-gradient(90deg, rgba(202, 252, 251, 1) 0%, rgba(202, 252, 251, 0) 100%);
  background-color: #fff;
}

/* ancora não fica sob o header fixo */
#depoimentos {
  scroll-margin-top: 90px;
}

/* 2) .container interno — layout lado a lado: texto (esq) | carrossel (dir) */
section.depoimentos>.container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 3) Coluna de texto (esquerda) */
.depoimentos .text-depoimentos {
  flex: 0 0 40%;
  max-width: 40%;
}

/* 4) Título da coluna de texto */
.depoimentos .text-depoimentos h2 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.02;
  margin: 10px 0;
}

/* 5) Parágrafos da coluna de texto */
.depoimentos .text-depoimentos p {
  color: #1c1c1c;
  font-size: 1.2rem;
}

/* 6) Destaque no título */
.depoimentos .text-depoimentos h2 span {
  color: #0abbb5;
}

/* 7) Botão CTA (coluna de texto) */
.depoimentos .btn-contato button {
  width: 240px;
  height: 40px;
  font-size: 1rem;
  background-color: #0abbb5;
  color: #fff;
  font-weight: 300;
  border: 1px solid #1c1c1c;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 20px;
}

.depoimentos .btn-contato button:hover {
  color: #1c1c1c;
  background-color: #cafcfb;
  transform: scale(1.05);
}

/* 8) Carrossel (direita) */
.depoimentos .carrossel {
  flex: 0 0 56.3%;
  max-width: 56.3%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  --peek: 60px;
  /* quanto do próximo card aparece */
  clip-path: inset(0 0 0 var(--peek));
  /* esconde apenas o lado esquerdo */
}

/* 9) Viewport do Owl — espaço para os botões */
.depoimentos .owl-stage-outer {
  overflow: hidden;
  padding: 0 !important;
  padding-bottom: 56px !important;
}

/* 10) Pista do Owl */
.depoimentos .owl-stage {
  margin-left: 0 !important;
}

/* 11) Células do Owl como flex */
.depoimentos .owl-item {
  display: flex;
}

/* 12) Card do depoimento */
.depoimentos .carrossel .slide {
  width: auto !important;
  /* Owl controla larguras */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 340px;
  padding: 20px 22px 16px;
  background: #0abbb5;
  color: #0f0f0f;
  border-radius: 8px;
}

/* 13) Ícone de aspas */
.depoimentos i.bi {
  font-size: 2.2rem;
  color: #1c1c1c;
  margin-top: 50px;
  margin-bottom: 6px;
}

/* 14) Texto do depoimento */
.depoimentos .text-depoi {
  margin: 0 0 8px 0;
  line-height: 1.45;
}

/* 15) Autor */
.depoimentos .person {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.depoimentos .person img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  display: block;
  border: 1px solid #1c1c1c;
}

.depoimentos .person .nome-person {
  font-size: 1rem;
  color: #1c1c1c;
}

.depoimentos .person .funcao-person {
  font-size: 0.8rem;
  color: #1c1c1c;
}

/* 16) Navegação do Owl — dentro, canto inferior direito */
.depoimentos .owl-nav {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.depoimentos .owl-nav button.owl-prev,
.depoimentos .owl-nav button.owl-next {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .15);
  background: #0abbb5;
  color: #1c1c1c;
  font-size: 20px;
  display: grid;
  place-items: center;
}

/* ========================= */
/* BREAKPOINTS AUXILIARES    */
/* ========================= */
@media (max-width: 992px) {
  .depoimentos .carrossel .slide {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  section.depoimentos>.container {
    flex-direction: column;
  }

  .depoimentos .text-depoimentos,
  .depoimentos .carrossel {
    flex-basis: 100%;
    max-width: 100%;
  }

  .depoimentos .carrossel .slide {
    min-height: 320px;
  }
}

/* ============================================== */
/* TABLET + MOBILE (≤ 991.98px) — padding 6rem 0 */
/* ============================================== */
@media (max-width: 991.98px) {
  section.depoimentos {
    padding: 6rem 0;
  }

  /* ⇠ como você pediu */

  /* Empilha conteúdo e centraliza */
  .depoimentos>.container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: 24px;
  }

  .depoimentos .text-depoimentos {
    text-align: center;
    max-width: 100%;
  }

  .depoimentos .text-depoimentos h2 {
    font-size: 2.4rem;
    line-height: 1.18;
    margin: 6px 0;
  }

  .depoimentos .text-depoimentos h2 span {
    display: inline;
  }

  .depoimentos .text-depoimentos p {
    font-size: 1rem;
  }

  /* Botão centralizado mantendo tamanho */
  .depoimentos .btn-contato {
    display: flex;
    justify-content: center;
  }

  .depoimentos .btn-contato a {
    display: inline-flex;
  }

  .depoimentos .btn-contato button {
    width: 240px;
    height: 40px;
  }

  /* Carrossel largura confortável */
  .depoimentos .owl-carousel {
    max-width: 720px;
    margin: 0 auto;
  }
}

/* ============================= */
/* MOBILE PEQUENO (≤ 480px)      */
/* ============================= */
@media (max-width: 480px) {
  .depoimentos>.container {
    padding-inline: 16px;
    gap: 20px;
  }

  .depoimentos .text-depoimentos h2 {
    font-size: 2rem;
  }

  .depoimentos .owl-carousel {
    max-width: 100%;
  }

  .depoimentos .owl-carousel .slide {
    padding: 18px;
  }
}















/* SEÇÃO ENTRE EM CONTATO */
section.contato {
  padding: 6rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.contato .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.contato .img-contato img {
  max-width: 550px;
  width: 100%;
  height: auto;
}

.contato .info-contato {
  flex: 1;
}

.contato .entre-contato p {
  color: #1c1c1c;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contato .entre-contato h2 {
  color: #1c1c1c;
  font-size: 3rem;
  font-weight: 800;
  line-height: 50px;
}

.contato .entre-contato h2 span {
  color: #0abbb5;
  display: block;
  line-height: 1.2;
}

.contato .caixa-contato {
  margin-top: 40px;
}

/* BLOCO WHATSAPP / EMAIL */
.caixa-contato .info-whatsapp,
.caixa-contato .info-email {
  display: flex;
  align-items: center;
  background-color: #cafcfb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  gap: 20px;
  transition: transform 0.3s ease;
}

.caixa-contato .info-whatsapp:hover,
.caixa-contato .info-email:hover {
  transform: scale(1.02);
}

/* ÍCONES À ESQUERDA */
.icon-whatsapp i,
.icon-email i {
  font-size: 5rem;
  color: #0abbb5;
}

/* TEXTO À DIREITA */
.texto-whatsapp h2,
.texto-email h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1c1c1c;
}

.texto-whatsapp p,
.texto-email p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.4;
}

/* ============================== */
/* CONTATO - RESPONSIVO           */
/* ============================== */

/* Tablet e Mobile */
@media (max-width: 991.98px) {
  section.contato .container {
    flex-direction: column;
    /* empilha tudo */
    align-items: center;
    text-align: center;
  }

  /* Inverte a ordem: textos ficam em cima, imagem embaixo */
  section.contato .info-contato {
    order: 1;
  }

  section.contato .img-contato {
    order: 2;
  }

  /* Centraliza e ajusta títulos */
  .contato .entre-contato p {
    font-size: 1.6rem;
  }

  .contato .entre-contato h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  /* Blocos WhatsApp e Email centralizados */
  .contato .caixa-contato {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .caixa-contato .info-whatsapp,
  .caixa-contato .info-email {
    width: 100%;
    max-width: 480px;
    justify-content: center;
    text-align: left;
    /* mantém alinhamento de texto natural */
  }

  /* Imagem menor no tablet */
  .contato .img-contato img {
    max-width: 500px;
  }

  .texto-whatsapp p,
  .texto-email p {
    font-size: 1rem;
  }

}

/* Mobile pequeno */
@media (max-width: 576px) {
  .contato .entre-contato p {
    font-size: 1.4rem;
  }

  .contato .entre-contato h2 {
    font-size: 1.8rem;
  }

  .contato .img-contato img {
    max-width: 400px;
  }

  .texto-whatsapp h2,
  .texto-email h2 {
    font-size: 1.2rem;
  }

  .texto-whatsapp p,
  .texto-email p {
    font-size: 0.7rem;
  }
}















/* SEÇÃO FOOTER */
footer .rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

footer .rodape button {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #1c1c1c;
  font-size: 15px;
  margin-right: 4px;
  background-color: #0abbb5;
  color: #1c1c1c;
  transition: 0.2s;
  cursor: pointer;
}

.sobre-mim .btn-redes button:hover {
  color: #1c1c1c;
  background-color: #cafcfb;
  transform: scale(1.05);
}


/* ========================= */
/* FOOTER - RESPONSIVO       */
/* ========================= */

/* Tablet e Mobile */
@media (max-width: 991.98px) {
  footer .rodape {
    flex-direction: column;
    /* empilha: redes em cima, info embaixo */
    text-align: center;
    gap: 16px;
  }

  footer .inf-footer p {
    font-size: 0.95rem;
    /* texto um pouco menor */
  }
}

/* Mobile pequeno */
@media (max-width: 576px) {
  footer .rodape button {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-right: 6px;
  }

  footer .inf-footer p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}



/* BOTÃO WHATSAPP */

.btn-whatsapp img {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
  max-width: 50px;
  transition: transform 0.4s;
}

.btn-whatsapp img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 50px;
  }
}























/* ============================== */
/* 🔒 FIXAR LARGURA E EVITAR SCROLL */
/* ============================== */

/* Não deixar rolagem horizontal */
html,
body {
  overflow-x: hidden;
}

/* Imagens nunca estouram */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop mantém limite de 1280px */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Tablet e Mobile liberam largura total */
@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================== */
/* 🔒 AJUSTE DO CARROSSEL         */
/* ============================== */
.owl-stage-outer,
.owl-carousel {
  overflow-x: hidden !important;
}

/* Mobile sem sobra lateral */
@media (max-width: 767.98px) {
  .depoimentos .carrossel {
    --peek: 0px;
    clip-path: inset(0 0 0 0);
  }
}

/* ============================== */
/* 🔒 AJUSTE SEÇÃO CONTATO        */
/* ============================== */
@media (max-width: 991.98px) {

  /* caixas nunca passam da tela */
  .caixa-contato .info-whatsapp,
  .caixa-contato .info-email {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  /* garante que o texto quebre */
  .texto-whatsapp,
  .texto-email {
    min-width: 0;
  }

  .texto-email p,
  .texto-email p strong {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}


















/* ============================== */
/* 🔒 COR FIXA DO MENU HAMBÚRGUER */
/* ============================== */
.btn-menu,
.btn-menu i,
.btn-menu svg {
  color: #fff !important;   /* cor do ícone */
  fill: #fff !important;    /* se for SVG */
}

/* garante consistência em todos os estados */
.btn-menu:link,
.btn-menu:visited,
.btn-menu:hover,
.btn-menu:active {
  color: #fff !important;
  fill: #fff !important;
}
