/* =========================================
   RESET
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s ease; }
ul, ol, li { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; border: none; background: none; outline: none; }

html, body {
  scroll-behavior: smooth;
}
/* =========================================
   VARIABLES (extraídas do CSS original)
========================================= */
:root {
  --bg:        #F9EDE5;   /* fundo geral */
  --primary:   #5B3000;   /* marrom escuro */
  --accent:    #D79D83;   /* salmão */
  --text:      #554F4C;   /* texto corpo */
  --dark:      #1E1E24;   /* títulos h2/h3 */
  --white:     #ffffff;
  --border-light: #ead4c9;
  --font-head: 'Comfortaa', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* =========================================
   BASE
========================================= */

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px;
}
h1 { font-size: 48px; color: var(--primary); text-transform: uppercase; }
h2 { font-size: 36px; color: var(--dark); }
h3 { font-size: 20px; color: var(--dark); }
h4 { font-size: 14px; color: var(--primary); text-transform: uppercase; font-weight: 700; }

@media (max-width: 1399px) { h1 { font-size: 38px; } }
@media (max-width: 1199px) { h1 { font-size: 34px; } h2 { font-size: 30px; } }
@media (max-width: 767px)  { h1 { font-size: 28px; } h2 { font-size: 26px; } }

p { margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }

section, footer, header { float: left; width: 100%; }

/* =========================================
   CONTAINER
========================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 575px)  { .container { max-width: 100%; } }
@media (min-width: 576px)  { .container { max-width: 540px;  } }
@media (min-width: 768px)  { .container { max-width: 720px;  } }
@media (min-width: 992px)  { .container { max-width: 960px;  } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* =========================================
   BOTÕES (border-radius 35px = pílula)
========================================= */
.bt { margin: 0; display: flex; align-items: center; }
.bt a, .bt button, .btn-pill {
  transition: all 0.4s ease;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  border-radius: 35px;
  background: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  padding: 5px 40px;
  border: 1px solid var(--primary);
}
.bt a:hover, .bt button:hover, .btn-pill:hover {
  background: transparent;
  color: var(--primary);
}
.bt a.outline, .btn-pill.outline {
  background: transparent;
  color: var(--primary);
}
.bt a.outline:hover, .btn-pill.outline:hover {
  background: var(--primary);
  color: var(--white);
}
/* Botão branco (para seção escura) */
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
/* Botão small (underline) */
.bt a.small {
  padding: 7px 0 5px;
  min-height: 30px;
  border-left: 0; border-right: 0; border-top: 0;
  border-radius: 0;
  font-size: 12px;
  background: transparent;
  color: var(--primary);
}
.bt a.small:hover { background: transparent; color: var(--accent); }

.bt-light a{
    background: #E7D2CE;
    color: var(--primary);
    border: 1px solid #E7D2CE;
}

.bt-light a:hover{
    background: transparent;
    color: #E7D2CE;
    border-color: #E7D2CE;
}

.equipe-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
}

/* =========================================
   WHATSAPP FLUTUANTE
========================================= */
.fix-wpp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
  transition: all 0.4s ease;
}
.fix-wpp img { width: auto !important; height: 70px !important; }
.fix-wpp:hover { transform: scale(1.1); }

/* =========================================
   HEADER
========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

.wrap-head {
  transition: all 0.4s ease;
  background: transparent;
  width: 100%;
  position: relative;
  z-index: 5;
}
header.scroll .wrap-head,
header.toggled .wrap-head {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.wrap-head .head-inner {
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
header.scroll .wrap-head .head-inner,
header.toggled .wrap-head .head-inner { height: 60px; }

@media (max-width: 767px) {
  .wrap-head .head-inner { height: 100px; }
  header.scroll .wrap-head .head-inner,
  header.toggled .wrap-head .head-inner { height: 60px; }
}

/* Logo */
.branding {
  width: 160px;
  height: 94px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.branding img { width: auto; height: 94px; transition: all 0.4s ease; }
header.scroll .branding,
header.toggled .branding { height: 37px; }
header.scroll .branding img,
header.toggled .branding img { height: 37px; }

@media (max-width: 767px) {
  .branding { height: 80px; }
  .branding img { height: 80px; }
}

/* Nav Menu */
ul.menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.menu > li { margin-right: 30px; position: relative; }
@media (max-width: 1399px) { ul.menu > li { margin-right: 20px; } }
ul.menu > li:last-child { margin-right: 0; }

ul.menu > li > a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-family: var(--font-head) !important;
  line-height: 1 !important;
  color: var(--text) !important;
  height: 60px !important;
  position: relative !important;
  padding: 0 !important;
  text-transform: uppercase !important;
}
@media (max-width: 1399px) { ul.menu > li > a { font-size: 12px !important; } }

ul.menu > li > a:hover { color: var(--primary) !important; }

/* Dropdown */
ul.menu > li.has-children ul.sub-menu {
  list-style: none;
  margin: 0;
  position: absolute;
  width: 220px;
  background: rgba(255,255,255,0.95);
  left: calc(50% - 110px);
  border-radius: 0 0 10px 10px;
  padding: 0;
  transition: all 0.4s ease;
  flex-flow: column;
  pointer-events: none;
  opacity: 0;
  top: calc(100% - 15px);
  display: flex;
  z-index: 200;
}
ul.menu > li.has-children:hover ul.sub-menu,
ul.menu > li.has-children.focus ul.sub-menu {
  pointer-events: inherit;
  opacity: 1;
  top: 100%;
}
ul.menu > li.has-children ul.sub-menu li {
  margin: 0;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
}
ul.menu > li.has-children ul.sub-menu li:first-child { border-top: 0; }
ul.menu > li.has-children ul.sub-menu li a {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  line-height: 1.2 !important;
  color: var(--text) !important;
  font-weight: 400 !important;
  text-transform: none;
  height: auto !important;
}
ul.menu > li.has-children ul.sub-menu li a:hover { color: var(--primary) !important; }

/* Botão hambúrguer */
.burger-btn {
  display: none;
  background: transparent;
  border: 0;
  width: 50px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger-element {
  width: 26px;
  height: 20px;
  position: relative;
}
.burger-element span {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--primary);
  top: 0;
  transition: transform 0.21s, margin 0.21s 0.22s, opacity 0.3s, top 0.21s 0.22s;
}
.burger-element span:nth-child(2) { top: 50%; margin-top: -1px; }
.burger-element span:nth-child(3) { top: 100%; margin-top: -2px; }

/* Menu mobile */
.mobile-nav {
  display: none;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--border-light);
  padding: 20px 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { flex-direction: column; display: flex; gap: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--text);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav ul li a:hover { color: var(--primary); }

/* Botão WA no header */
.nav-wpp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 35px;
  padding: 8px 18px;
  white-space: nowrap;
  transition: all 0.4s ease;
}
.nav-wpp:hover { background: var(--primary); color: var(--white); }
.nav-wpp svg { flex-shrink: 0; }

/* =========================================
   SEÇÕES - padrão
========================================= */
.section {
  padding: 90px 0;
  float: left;
  width: 100%;
}
@media (max-width: 767px) { .section { padding: 70px 0; } }
@media (max-width: 575px) { .section { padding: 60px 0; } }

.bg-white { background: var(--white); }
.bg-primary { background: var(--primary); }

/* Tag small acima do título */
.pre-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.pre-title.light { color: var(--accent); }

/* =========================================
   HERO / BANNER
========================================= */
#banner {
  padding: 0 !important;
  background: var(--bg);
  background-image: url('../images/bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 800px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.banner-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
.banner-text-col {
  width: 50%;
  padding-top: 160px;
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-text-col p {
  padding-right: 25%;
}
.banner-img-col {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 90px;
}
.banner-img-col img {
  max-height: 750px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
}
.banner-img-col .img-mobile { display: none; }
.banner-img-col .img-desktop { display: block; }

@media (max-width: 1399px) {
  #banner { min-height: 600px; }
  .banner-text-col { padding-top: 100px; padding-bottom: 60px; }
  .banner-img-col { padding-top: 60px; }
}
@media (max-width: 991px) {
  #banner { min-height: 0; position: relative; }
  .banner-text-col { width: 65%; padding-top: 160px; padding-bottom: 40px; }
  .banner-text-col p { padding-right: 20%; }
  .banner-img-col { width: 35%; padding-top: 0; transform: translateX(10%); }
}
@media (max-width: 767px) {
  .banner-text-col { padding-top: 100px; }
  .banner-text-col p { font-size: 14px; }
  .banner-img-col { width: 50%; margin-left: -15%; }
}
@media (max-width: 575px) {
  .banner-text-col { padding-top: 120px; width: 100%; text-align: center; }
  .banner-text-col p { padding: 0 10%; }
  .banner-text-col .bt { justify-content: center !important; }
  .banner-img-col { width: 100%; margin-left: 0; transform: none; justify-content: center; }
  .banner-img-col img { width: 270px; max-width: 100%; }
  .banner-img-col .img-desktop { display: none; }
  .banner-img-col .img-mobile { display: block; }
}

/* =========================================
   BEFORE/AFTER SLIDER
========================================= */
.nba-wrapper {
  position: relative;
  width: 85%;
  overflow: hidden;
  border-radius: 12px;
  user-select: none;
  cursor: col-resize;
}

.nba-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.nba-after {
  position: relative;
}

.nba-before {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 40%;
  height: 50%;
}

.nba-before img {
  width: auto;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.nba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  cursor: col-resize;
  z-index: 10;
}

.nba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nba-handle svg {
  fill: var(--primary);
  width: 20px;
  height: 20px;
}

/* =========================================
   SOBRE NÓS
========================================= */
#sobre-nos {
  background: var(--bg);
  
}
  
.sobre-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 30px;
}

.sobre-img-col {
  flex: 0 0 45% !important;
  max-width: 45% !important;
}

.sobre-txt-col {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

.sobre-bts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sobre-imagens {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.img-tras {
  position: absolute;
  width: 82%;
  height: 82%;
  top: 0;
  right: 0;
  object-fit: cover;
  border-radius: 15px;
}

.img-frente {
  position: absolute;
  width: 62%;
  height: 65%;
  bottom: 0;
  left: 0;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid var(--bg);
}

@media (max-width: 991px) {
  .sobre-img-col,
  .sobre-txt-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sobre-img-col {
    margin-bottom: 30px;
  }
}

/* Contadores */
.contadores {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}
.contador-item {
  flex: 1;
  text-align: center;
  min-width: 80px;
}
h3.contador {
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0;
  line-height: 1;
  color: var(--primary);
}
h3.contador span.numero {
  color: inherit;
  line-height: 1;
  font-size: 36px;
  font-weight: 700;
}
h3.contador > strong {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin: 5px 0 0;
  text-transform: uppercase;
  font-family: var(--font-head);
}
@media (max-width: 991px) {
  .sobre-img-col, .sobre-txt-col { width: 100%; }
  .sobre-img-col { margin-bottom: 30px; }
}


/* =========================================
   TRATAMENTOS (Faciais & Corporais) — mesma estrutura
========================================= */
#tratamentos-faciais,
#tratamentos-corporais {
  background: var(--dark);
}
#tratamentos-faciais h2,
#tratamentos-faciais h4,
#tratamentos-faciais p,
#tratamentos-corporais h2,
#tratamentos-corporais h4,
#tratamentos-corporais p {
  color: var(--white);
}
#tratamentos-faciais .trat-card h3,
#tratamentos-faciais .trat-card p,
#tratamentos-corporais .trat-card h3,
#tratamentos-corporais .trat-card p {
  color: var(--dark);
}
.tratamentos-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: -8px;
  margin-right: -8px;
}
.trat-img-col {
  width: 50%;
  padding: 0 8px;
}
.trat-img-col img {
  width: 100%;
  border-radius: 15px;
  display: block;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.trat-cards-col {
  width: 50%;
  padding: 0 8px;
}
.trat-header {
  margin-bottom: 25px;
}
.trat-header .bt { margin-top: 15px; }

/* Cards de tratamento */
.trat-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trat-card {
  background: var(--white);
  border-radius: 15px;
  padding: 18px 20px;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.4s ease;
}
.trat-card:hover { box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.trat-card h3 {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 6px;
}
.trat-card p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}
.trat-card .bt a { font-size: 12px; min-height: 30px; padding: 5px 20px; }

@media (max-width: 991px) {
  .trat-img-col, .trat-cards-col { width: 100%; }
  .trat-img-col { margin-bottom: 25px; }
}

/* =========================================
   DEPOIMENTOS
========================================= */
#depoimentos { background: var(--bg); }
.dep-header { text-align: center; margin-bottom: 50px; }

.slick-track-wrap { overflow: hidden; position: relative; }
.slick-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.single-dep {
  flex: 0 0 calc(33.333% - 14px);
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 30px;
  border-radius: 15px;
  background: var(--white);
  min-height: 100%;
  border: 1px solid var(--border-light);
}
.single-dep .top {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 10px;
}
.single-dep .top .left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.single-dep .top .left img {
  object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  margin-right: 15px;
}
.single-dep .top .left h3 { font-size: 16px; margin: 0; color: var(--dark); }
.single-dep .top .left p { font-size: 13px; margin: 0; color: var(--text); }
.single-dep blockquote {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.single-dep .bot {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--accent);
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: row;
}
.single-dep .bot p { margin: 0; padding: 0; font-size: 13px; color: var(--text); }
/* Estrelas SVG */
.stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }

.dep-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.dep-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}
.dep-btn:hover { background: var(--primary); color: var(--white); }

@media (max-width: 991px) { .single-dep { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 575px) { .single-dep { flex: 0 0 100%; } }

/* =========================================
   LASERS & EQUIPAMENTOS
========================================= */
#lasers {
  background: var(--primary);
  color: var(--white);
}
.lasers-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  gap: 0;
}
.lasers-txt {
  width: 50%;
  padding: 0 15px;
}
.lasers-txt h2, .lasers-txt h3, .lasers-txt h4, .lasers-txt p { color: var(--white); }
.lasers-txt h4 { color: var(--accent); }
.lasers-txt .bt a {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.lasers-txt .bt a:hover { background: var(--white); color: var(--primary); }

.lasers-videos {
  width: 50%;
  padding: 0 15px;
}

.wrap-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 200px));
  justify-content: center;
  gap: 16px;
}

/* Mantém o efeito desalinhado */
.wrap-videos > *:nth-child(2) {
  margin-top: 15px;
}

.wrap-videos > *:nth-child(3) {
  transform: translateY(-15px);
}

.video-item {
  text-align: center;
}

.video-item a {
  display: block;
  text-decoration: none;
}

.laser-thumb {
  width: 100%;
  aspect-ratio: 2 / 2;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform .3s ease;
}

.video-item:hover .laser-thumb {
  transform: scale(1.04);
}

.laser-caption {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .lasers-txt,
  .lasers-videos {
    width: 100%;
  }

  .lasers-txt .bt a:hover{
  background: var(--white) !important;
  color: var(--primary) !important;
}

  .lasers-txt .bt {
    justify-content: center;
  }
}

/* =========================================
   ANTES E DEPOIS
========================================= */
#antes-depois { background: var(--white); }
.ad-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}
.ad-img-col {
  width: 50%;
  padding: 0 15px;
}
.ad-img-col .comparacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 15px;
  overflow: hidden;
}
.ad-img-col .comparacao img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.ad-txt-col {
  width: 50%;
  padding: 0 15px;
}
.ad-txt-col .bt { margin-top: 20px; }

@media (max-width: 991px) {
  .ad-img-col, .ad-txt-col { width: 100%; }
  .ad-txt-col { text-align: center; margin-top: 30px; }
  .ad-txt-col .bt { justify-content: center; }
  .ad-img-col .comparacao img { height: 200px; }
}

main {
  overflow-x: hidden;
}

/* =========================================
   EQUIPE
========================================= */
#equipe { background: var(--primary); }
.equipe-header { text-align: center; margin-bottom: 40px; }

#equipe h2,
#equipe h3,
#equipe h4,
#equipe p {
  color: var(--white);
}

.equipe-lista {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -50px;
}
.equipe-col {
  width: 25%;
  padding: 0 15px;
  margin-top: 50px;
  display: flex;
}
.single-equipe {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.single-equipe .img {
  width: 100%;
  position: relative;
  padding-top: 100%;
  margin-bottom: 15px;
}
.single-equipe .img img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  top: 0; left: 0; height: 100%;
  z-index: 2;
  border-radius: 10px;
}
/* Placeholder pessoa sem foto */
.single-equipe .img .placeholder-person {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0ddd4, #e8cfc4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-equipe .img .placeholder-person svg {
  width: 60px;
  height: 60px;
  opacity: 0.4;
  color: var(--primary);
}
.single-equipe .img::before {
  content: '';
  background: var(--accent);
  border-radius: 10px;
  top: 5px; left: 5px;
  z-index: 1;
  bottom: -5px; right: -5px;
  position: absolute;
  transition: all 0.4s ease;
}
.single-equipe:hover .img::before {
  top: 2px; left: 2px;
  bottom: -2px; right: -2px;
}
.single-equipe h3 { margin: 0; font-size: 18px; }
.single-equipe p { margin-bottom: 0; font-size: 14px; color: var(--text); }
.single-equipe .bt { margin-top: 10px; }

@media (max-width: 991px) { .equipe-col { width: 50%; } }
@media (max-width: 575px) {
  .equipe-col { width: 100%; }
  .equipe-lista { margin-top: -30px; }
  .equipe-col { margin-top: 30px; }
}

/* =========================================
   BLOG / ARTIGOS
========================================= */
#blog { background: var(--white); }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -30px;
}
.blog-col {
  width: 33.333%;
  padding: 0 15px;
  margin-top: 30px;
  display: flex;
}
.single-post-list {
  width: 100%;
  display: flex;
  min-height: 100%;
  flex-flow: column;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: all 0.4s ease;
}
.single-post-list .img {
  width: 100%;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  flex-shrink: 0;
}
.single-post-list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}
.single-post-list .txt {
  padding: 20px 20px 30px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  flex: 1;
}
.single-post-list .txt h3 {
  color: var(--dark);
  margin-bottom: 5px;
  transition: all 0.4s ease;
  font-size: 18px;
}
.single-post-list .txt p { margin: 0; font-size: 14px; }
.single-post-list .txt ul.cats {
  list-style: none;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 0;
  flex-wrap: wrap;
}
.single-post-list .txt ul.cats li { margin: 0 10px 8px 0; }
.single-post-list .txt ul.cats li a {
  border: 1px solid var(--primary);
  padding: 5px 12px 4px;
  line-height: 1;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-head);
  text-transform: uppercase;
}
.single-post-list .txt ul.cats li a:hover { background: var(--primary); color: var(--white); }
.single-post-list:hover { box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.single-post-list:hover .img img { transform: scale(1.04); }
.single-post-list:hover .txt h3 { color: var(--accent); }

.blog-footer { text-align: center; margin-top: 40px; }

@media (max-width: 767px) { .blog-col { width: 50%; } }
@media (max-width: 575px) { .blog-col { width: 100%; } }

/* =========================================
   INSTAGRAM
========================================= */
#instagram {
  background: var(--bg);
}

.insta-header {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID MELHORADO */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* CARD */
.insta-item {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;

  /* importante pra aparecer imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* fallback caso não tenha imagem */
  background-color: #f0ddd4;

  position: relative;

  transition: transform 0.3s ease, filter 0.3s ease;
}

/* OVERLAY */
.insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(91, 48, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover::after {
  opacity: 1;
}

.insta-item:hover {
  transform: scale(1.03);
  filter: brightness(0.95);
}

.insta-item {
  aspect-ratio: 9 / 16;
}

/* MOBILE */
@media (max-width: 767px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* =========================================
   NEWSLETTER
========================================= */
#newsletter { background: var(--primary); }
.news-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  gap: 0;
}
.news-txt {
  width: 40%;
  padding: 0 15px;
}
.news-txt h2, .news-txt h3, .news-txt p { color: var(--white); }
.news-txt h4 { color: var(--accent); }
.news-form-col {
  width: 60%;
  padding: 0 15px;
}
.news-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row { display: flex; gap: 12px; }
.form-row > * { flex: 1; }
.news-form input[type="text"],
.news-form input[type="email"] {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 35px;
  outline: none;
  transition: border-color 0.3s;
}
.news-form input::placeholder { color: rgba(255,255,255,0.6); }
.news-form input:focus { border-color: var(--white); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.form-check input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.form-check a { color: var(--white); text-decoration: underline; }
.news-form .bt { margin-top: 5px; }
.news-form .bt button {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.news-form .bt button:hover { background: transparent; color: var(--white); }

@media (max-width: 767px) {
  .news-txt, .news-form-col { width: 100%; }
  .news-txt { margin-bottom: 30px; }
  .form-row { flex-direction: column; }
}

/* =========================================
   FOOTER
========================================= */
footer { background: #1a0a00; color: rgba(255,255,255,0.7); }
.footer-map { width: 100%; height: 300px; overflow: hidden; }
.footer-map iframe { width: 100%; height: 100%; border: none; display: block; }

.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  gap: 0;
}
.footer-col {
  padding: 0 15px;
}
.footer-col-logo { width: 25%; }
.footer-col-contato { width: 30%; }
.footer-col-mapa { width: 22%; }
.footer-col-trat { width: 23%; }

.footer-logo img { height: 60px; width: auto; display: block; margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.footer-social a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  transition: all 0.4s ease;
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

/* Contatos */
.contato-list { list-style: none; padding: 0; margin: 0; }
.contato-list li {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
}
.contato-list li address,
.contato-list li span,
.contato-list li a {
  padding-left: 20px;
  position: relative;
  display: block;
  font-style: normal;
  color: rgba(255,255,255,0.7);
}
.contato-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent);
  font-size: 14px;
  width: 15px;
  text-align: center;
}
.contato-list li a:hover { opacity: 0.6; }

/* Links do footer */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all 0.4s ease;
}
.footer-links li a:hover { color: var(--accent); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--accent); }

@media (max-width: 991px) {
  .footer-col-logo,
  .footer-col-contato,
  .footer-col-mapa,
  .footer-col-trat {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .footer-col-logo,
  .footer-col-contato,
  .footer-col-mapa,
  .footer-col-trat { width: 100%; }
}

/* =========================================
   UTILIDADES
========================================= */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* Font Awesome icons fallback usando SVG inline */
.icon-location::before { content: '📍'; }
.icon-whatsapp::before { content: '📱'; }
.icon-phone::before { content: '📞'; }
.icon-email::before { content: '✉️'; }

/* =========================================
   ANIMAÇÃO DE ENTRADA
========================================= */
.anim-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   GALERIA DA CLÍNICA
========================================= */

#galeria-clinica{
    background: var(--bg);
}

.clinica-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:60px;
}

.clinica-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    border:1px solid var(--border-light);
    transition:.4s ease;
}

.clinica-grid img:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

@media(max-width:991px){

    .clinica-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:575px){

    .clinica-grid{
        grid-template-columns:1fr;
    }

    .clinica-grid img{
        height:auto;
    }

}