/*
 Theme Name:   Astra Child
 Theme URI:    https://talitalmeida.com.br/
 Description:  Child Theme para Astra
 Author:       Alessandro Alla
 Author URI:   https://talitalmeida.com.br/
 Template:     astra
 Version:      1.0.0
 Text Domain:  astra-child
*/

/* =========================================================
   0. RESET E VARIÁVEIS GLOBAIS
========================================================= */
:root {
  --rosa-principal: #FB5FAB;
  --rosa-claro:    #fde4ee;
  --branco:        #ffffff;
}

/* Reset básicos */
html, body {
  overflow-x: hidden !important;
}
.site-content-contain {
  padding-top: 0 !important;
}
.page .entry-header .entry-title {
  display: none !important;
}

/* Fontes customizadas */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("webfonts/fa-brands-400.woff2") format("woff2");
}

/* =========================================================
   1. HEADER, LOGO E MENU
========================================================= */
header.site-header {
  position: fixed !important;
  top: 0; left: 0; width: 100%; z-index: 9999;
  background: transparent !important;
  padding: 25px 0 !important;
  transition: background .3s, box-shadow .3s, padding .3s;
}
header.site-header.scrolled {
  background: #fff !important;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1) !important;
  padding: 4px 0 !important;
}
header.site-header .custom-logo-responsive img {
  transition: max-height .5s, max-width .5s;
  max-height: 80px !important;
  max-width: 200px !important;
}
header.site-header.scrolled .custom-logo-responsive img {
  max-height: 45px !important;
  max-width: 140px !important;
}
.main-header-menu li a {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  line-height: normal !important;
}
.ast-header-break-point .main-header-bar-navigation .main-header-menu li a {
  background: none !important;
  color: #444 !important;
  font-size: 1.13rem !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  padding: 0.44em 1.1em !important;
  box-shadow: none !important;
  line-height: 1.28 !important;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none !important;
}
.main-header-menu li a:hover {
  color: var(--rosa-principal) !important;
}

/* =========================================================
   2. COOKIE CONSENT
========================================================= */
.cc-window.cc-banner .cc-compliance { text-align: center !important; }
.cc-compliance .cc-btn.cc-allow {
  background: #25D366 !important;
  color: #fff !important;
  margin-right: .5em;
  padding: .6em 1.2em !important;
  border-radius: 4px;
}
.cc-compliance .cc-btn.cc-deny {
  background: #e53e3e !important;
  color: #fff !important;
  padding: .6em 1.2em !important;
  border-radius: 4px;
}
.cc-revoke, #cc-revoke, .cookieconsent\:revoke { display: none !important; }

/* =========================================================
   3. ANIMAÇÕES GERAIS
========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px);}
  to   { opacity: 1; transform: translateY(0);}
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 #fb5fab44; }
  50%  { box-shadow: 0 0 0 10px #fb5fab22; }
  100% { box-shadow: 0 0 0 0 #fb5fab00; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0);}
  50% { transform: translateX(-50%) translateY(10px);}
}


/* =========================================================
   4. BOTÕES GERAIS
========================================================= */
.btn-link {
  background: var(--rosa-principal);
  color: #fff !important;
  border: none;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 38px;
  padding: 1.7em 2.1em;
  box-shadow: 2px 14px 8px #fb5fab22;
  text-decoration: none;
  transition: background 0.2s, transform 0.17s;
  display: inline-block;
  line-height: 0.1;
  cursor: pointer;
}
.btn-link:hover,
.btn-link:focus {
  background: #d0367a !important;
  color: #fff !important;
  transform: scale(1.06);
  outline: none !important;
  box-shadow: 0 0 0 3px #fde4ee88 !important;
  text-decoration: none !important;
}
.wp-block-buttons .wp-block-button .btn-link {
  margin: 0 8px 8px 0;
}
.wp-block-button__link {
  animation: pulse 2.5s infinite;
}

/* =========================================================
   5A.  COMPONENTE HERO landing
========================================================= */
/* HERO SECTION TALITA ESTÉTICA */
.hero-talita {
  position: relative;
  min-height: 720px;
  border-radius: 0 0 2em 2em;
  box-shadow: 0 10px 36px #fb5fab13;
  overflow: hidden;
  width: 100%;
}
.hero-talita .hero-bg-parallax {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: url('https://talitalmeida.com.br/wp-content/uploads/2025/05/fundo3-1024x512.png') center center/cover no-repeat;
  background-size: 120% auto;
  transition: background-size 0.5s cubic-bezier(.4,2,.5,1);
  will-change: background-size;
}
.hero-talita .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  z-index: 2;
  pointer-events: none;
  border-radius: 0 0 2em 2em;
}
.hero-talita .wp-block-cover__inner-container {
  position: relative;
  z-index: 3;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-talita { min-height: 420px; }
  .hero-talita .wp-block-cover__inner-container { min-height: 320px; }
  .hero-talita .hero-bg-parallax { background-size: 240% auto; }
}
@media (max-width: 600px) {
  .hero-talita { min-height: 220px; }
  .hero-talita .wp-block-cover__inner-container { min-height: 180px; }
  .hero-talita .hero-bg-parallax { background-size: 290% auto; }
}

/* =========================================================
   5B.  COMPONENTE HERO UNIVERSAL (para Enzimas, Glútea, Botox etc.)
========================================================= */
.hero-section {
  padding: 3em 0;
  border-radius: 24px;
  background: var(--branco);
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero-section--gradient {
  background: linear-gradient(120deg, var(--rosa-claro) 50%, #fff 100%);
}

.hero-section__content {
  flex: 1 1 380px;
  max-width: 540px;
  padding: 2em;
}

.hero-section__tag {
  display: inline-block;
  background: #fb5fab12;
  color: #232333;                     /* Subtítulo agora escuro */
  text-align: center;                 /* Centraliza subtítulo */  font-weight: 600;
  font-size: 1.05em;
  border-radius: 6px;
  padding: 0.2em 0.8em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.hero-section__title {
  color: var(--rosa-principal) !important;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0.1em;
  margin-bottom: 0.4em;
  line-height: 1.2;
}

.hero-section__subtitle {
  color: #232333;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 1em;
  line-height: 1.3;
  text-align: center !important;   /* força centralização */
  width: 100%;
  display: block;
}

.hero-section__desc {
  color: #444;
  font-size: 1.09rem;
  margin-bottom: 1.2em;
  line-height: 1.7;
}

.hero-section__cta {
  margin: 1.3em 0 0.7em 0;
}
.hero-section__location {
  margin-top: 0.4em;
}
.hero-section__location-tag {
  background: var(--rosa-claro);
  border-radius: 8px;
  padding: 0.3em 0.7em;
  color: #808285;
  font-size: 1em;
  display: inline-block;
}
.hero-section__depoimento {
  margin-top: 1.5em;
  font-size: 1.06em;
  color: #666;
}

.hero-section__image-area {
  flex: 1 1 340px;
  max-width: 420px;
  padding: 1em;
}
.hero-section__image-container {
  position: relative;
  width: 100%;
}
.hero-section__image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 32px #fb5fab33;
}
.hero-section__image-label {
  background: var(--rosa-principal);
  color: white;
  font-size: 0.98em;
  padding: 0.4em 1em;
  border-radius: 24px 4px 24px 4px;
  box-shadow: 0 2px 12px #fb5fab33;
  font-weight: 600;
  position: absolute;
  top: -32px;
  left: 20px;
  z-index: 2;
}

/* Botão menor e mais arredondado */
.hero-cta-btn {
  background: linear-gradient(90deg, #FB5FAB 0%, #d0367a 100%);
  color: #fff !important;
  border-radius: 30px;
  padding: 0.8em 2em;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 16px #fb5fab22;
  display: inline-block;
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  line-height: 1.4;
  vertical-align: middle;
  margin-top: 1em;
  border: none;
  cursor: pointer;
}

.hero-cta-btn:hover,
.hero-cta-btn:focus {
  background: linear-gradient(90deg, #d0367a 0%, #FB5FAB 100%);
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 8px 28px #fb5fab55;
  outline: none;
}

/* RESPONSIVO HERO UNIVERSAL */
@media (max-width: 1020px) {
  .hero-section { flex-direction: column; align-items: stretch; }
  .hero-section__image-area { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero-section { padding: 1.2em 0.3em; border-radius: 14px; }
  .hero-section__content { padding: 0.7em; max-width: 100%; }
  .hero-section__image-area { padding: 0.3em; max-width: 100%; }
  .hero-section__image-label {
    left: 8px;
    font-size: 0.94em;
    top: -24px;
    padding: 0.3em 0.6em;
  }
  .hero-section__title { font-size: 1.33rem; }
}

/* =========================================================
   6. SEÇÕES DESTAQUE (GLÚTEO, BENEFÍCIOS, DIFERENCIAIS, SERVIÇOS)
========================================================= */
/* O que é harmonização */
.oque-harmonizacao {
  padding: 3.5rem 0 2rem 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px #fb5fab10;
  margin-bottom: 2rem;
}
.oque-harmonizacao h2 {
  text-align: center;
  color: var(--rosa-principal);
  margin-bottom: 1.5rem;
  font-size: 2.1rem;
  font-weight: 700;
}
.oque-harmonizacao-conteudo {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.oque-harmonizacao-conteudo p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.4rem;
}
.oque-harmonizacao-lista {
  list-style: none;
  padding: 0; margin: 0 0 1.7rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}
.oque-harmonizacao-lista li {
  display: flex;
  align-items: center;
  background: #fde4ee;
  color: #d0367a;
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: .55rem 1.2rem;
  gap: .7rem;
  box-shadow: 0 1px 6px #fb5fab11;
}
.oque-harmonizacao-lista li span {
  font-size: 1.3rem;
  display: inline-block;
}
.oque-harmonizacao-cta { margin-top: 1.3rem; }

/* Benefícios Glúteo */
.beneficios-gluteo-lista {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 2rem;
}
.beneficios-gluteo-lista li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 30px 0 #fb5fab14;
  padding: 1.3rem 1rem 1.3rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  transition: transform 0.17s cubic-bezier(.29,.68,.46,1.23);
  border-left: 7px solid var(--rosa-principal);
  color: #222;
}
.beneficio-icone { font-size: 2.1rem; margin-top: 3px; color: var(--rosa-principal);}
.beneficio-desc { display: block; font-size: 1rem; color: #888; margin-top: 2px;}
.beneficios-gluteo-lista li:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 36px 0 #fb5fab25;
}
.beneficios-img-menor {
  width: 66%; max-width: 380px; min-width: 180px; display: block; margin-left: auto; margin-right: auto; height: auto;
}
.beneficios-parallax-bg {
  position: relative; z-index: 1;
  min-height: 520px;
  padding: 60px 0;
  background-image: url('http://talitalmeida.com.br/wp-content/uploads/2025/06/fundo2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.beneficios-parallax-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #fde4ee55 20%, #fff6 100%);
  z-index: 1; pointer-events: none;
}
.beneficios-parallax-bg > .wp-block-columns {
  position: relative; z-index: 2;
}
@media (max-width: 768px) {
  .beneficios-parallax-bg { background-attachment: scroll !important; background-position: center center; padding: 30px 0; min-height: unset;}
}

/* Diferenciais */
.diferenciais-secao { text-align: center; padding: 4rem 1rem; }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.diferencial-card {
  background: #fff; border-radius: 12px; padding: 2rem 1.5rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06); transition: box-shadow .3s;
}
.diferencial-card:hover { box-shadow: 0 16px 32px rgba(0,0,0,0.1);}
.diferencial-icon img { width: 48px; margin-bottom: 1rem; }
.diferencial-card h4 {
  margin: .5rem 0 .75rem; color: var(--rosa-principal); text-align: center;
}
.diferencial-card p { margin: 0; line-height: 1.5; color: #333; text-align: center; }

@media (max-width: 800px) {
  .diferenciais-row { flex-direction:column; gap:32px; }
  .diferenciais-img-col { justify-content:center; }
  .diferenciais-list-col { min-width:0; }
  .diferenciais-item { margin-bottom:22px !important; }
  .diferenciais-item h3 { font-size:1.12em !important;}
}
@media (max-width: 540px) {
  .diferenciais-img-col img { width:150px !important; height:150px !important; }
  .diferenciais-row { padding: 0 2vw;}
}
.diferenciais-item h3 {
  letter-spacing: -1px;
}
.diferenciais-list-col p {
  font-size: 1.01em;
}

/* Serviços */
.services-grid-wrapper { background: #f9f9f9; padding: 60px 0; }
.wp-block-heading.has-text-align-center {
  font-size: 2.25rem; font-weight: 600; color: #0a0a23; margin-bottom: 12px;
}
.services-intro {
  font-size: 1rem; line-height: 1.6; color: #444; margin: 0 auto 32px auto;
  max-width: 800px; text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}
.service-card {
  background: #fff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 24px 20px; opacity: 0; transform: translateY(20px);
}
.service-card.fade-in:nth-child(1) { animation: fadeInUp 0.6s ease-out forwards; animation-delay: 0.1s;}
.service-card.fade-in:nth-child(2) { animation: fadeInUp 0.6s ease-out forwards; animation-delay: 0.3s;}
.service-card.fade-in:nth-child(3) { animation: fadeInUp 0.6s ease-out forwards; animation-delay: 0.5s;}
.service-card.visible { opacity: 1; transform: translateY(0);}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.08);}
.service-card h3 {
  font-size: 1.5rem; color: var(--rosa-principal); margin-bottom: 16px;
  text-align: center; font-weight: 600;
}
.service-card ul { list-style: none; margin: 0; padding: 0;}
.service-card li {
  display: flex; align-items: center; padding: 8px 0; font-size: 1rem;
  color: #333; line-height: 1.6; border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
}
.service-card li:last-child { border-bottom: none;}
.service-card li:hover { background: rgba(233,30,99,0.05); border-radius: 4px;}
.service-icon { font-size: 20px; color: var(--rosa-principal); margin-right: 12px; min-width: 20px;}
.service-name { flex: 1; }
.btn-servico {
  display: inline-block; margin-top: 20px; background: var(--rosa-principal);
  color: var(--branco); font-weight: 600; font-size: 0.95rem;
  padding: 10px 18px; border-radius: 6px; text-decoration: none;
  transition: background 0.2s ease;
}
.btn-servico:hover { background: #e43a7e; }

/* Antes & Depois */
.antes-depois-secao { text-align: center; padding: 4rem 1rem; }
.antes-depois-titulo { color: var(--rosa-principal); margin-bottom: 2rem;}
.antes-depois-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.antes-depois-grid a {
  display: block; overflow: hidden; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06); transition: transform .3s, box-shadow .3s;
}
.antes-depois-grid a:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1);}
.antes-depois-grid img { width: 100%; display: block; }

/* Reviews */
#reviews { padding: 4rem 1rem; }
#reviews .wp-block-columns { display: flex; align-items: center; gap: 2rem; }
#reviews .wp-block-column:first-child { text-align: center; }
.review-text { font-size: 1.375rem; line-height: 1.6; color: #333; margin-bottom: 1.5rem;}
.review-author { color: var(--rosa-principal); font-size: 1.125rem;}
#reviews .wp-block-column { opacity: 0; animation: fadeInUp 0.8s ease-out forwards;}
#reviews .wp-block-column:nth-child(1) { animation-delay: 0.2s;}
#reviews .wp-block-column:nth-child(2) { animation-delay: 0.4s;}

/* CTA Final Melhorada */
.cta-final {
  text-align: center;
  margin: 3em auto 2.5em auto;
  padding: 2.5em 1em 1.8em 1em;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 32px #fb5fab13, 0 1.5px 8px #f3f3f5;
  max-width: 580px;
  position: relative;
  z-index: 2;
  transition: box-shadow .18s;
}
.cta-final__title {
  font-size: 2.2rem;
  color: var(--rosa-principal);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
}
.cta-final__title::before {
  content: "✨";
  font-size: 1.25em;
  margin-right: .1em;
}
.cta-final__desc {
  color: #444;
  font-size: 1.13rem;
  margin-bottom: 1.5em;
}
.cta-final__micro {
  color: #d0367a;
  font-size: 0.97rem;
  margin-top: 1em;
  opacity: .85;
  letter-spacing: 0.01em;
}
.cta-final .hero-cta-btn {
  margin-top: 0.3em;
  padding: 1.1em 2.3em;
  font-size: 1.15rem;
  border-radius: 36px;
  background: linear-gradient(90deg, #fb5fab 0%, #d0367a 100%);
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 24px #fb5fab1a;
  transition: background .19s, transform .14s, box-shadow .19s;
}
.cta-final .hero-cta-btn:hover,
.cta-final .hero-cta-btn:focus {
  background: linear-gradient(90deg, #d0367a 0%, #fb5fab 100%);
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 16px 36px #fb5fab33;
  outline: none;
}

/* Endereço com fundo rosa e destaque */
.endereco {
  background: #fde4ee;
  border-radius: 18px;
  box-shadow: 0 5px 20px #fb5fab11;
  max-width: 960px;
  margin: 2.5em auto 2.5em auto;
  padding: 2.2em 1em 2.5em 1em;
}
.endereco__title {
  font-size: 2rem;
  color: #d0367a;
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
}
.endereco__title::before {
  content: "📍";
  font-size: 1.1em;
}
.endereco__info {
  flex-basis: 36%;
  text-align: center;
  font-size: 1.16em;
  font-weight: 600;
  color: #232333;
  margin-bottom: .7em;
}
.endereco__rota-btn {
  display: inline-block;
  background: #fb5fab;
  color: #fff;
  padding: 0.42em 1.25em;
  border-radius: 22px;
  margin: 0.9em auto 0 auto;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px #fb5fab22;
  transition: background .16s, transform .12s;
}
.endereco__rota-btn:hover {
  background: #d0367a;
  color: #fff;
  transform: scale(1.05);
}

.endereco__mapa {
  flex-basis: 64%;
  min-width: 250px;
  margin: 0 auto;
  max-width: 95%;
}
.endereco__links {
  margin: 1.1em 0 0.2em 0;
  text-align: center;
}
.endereco__links a {
  display: inline-block;
  margin: 0 8px;
  opacity: .8;
  transition: opacity .17s, transform .12s;
  vertical-align: middle;
}
.endereco__links a:hover { opacity: 1; transform: scale(1.08); }

/* Frase de fechamento inspiradora */
.frase-final {
  text-align: center;
  margin: 2.4em auto 1.4em auto;
  font-size: 1.19rem;
  color: #d0367a;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg,#fde4ee 50%, #fff 100%);
  border-radius: 16px;
  padding: 1.2em 1.4em;
  box-shadow: 0 2px 14px #fb5fab11;
  max-width: 600px;
}

/* Responsivo */
@media (max-width: 950px) {
  .endereco, .cta-final, .frase-final { max-width: 96vw; }
  .endereco__mapa { max-width: 99vw; }
}
@media (max-width: 700px) {
  .endereco__grid, .grid--before-after {
    flex-direction: column;
    gap: 1.2em;
  }
  .endereco__info, .endereco__mapa { flex-basis: 100%; }
  .cta-final__title, .endereco__title {
    font-size: 1.2rem;
    flex-direction: row;
    gap: 0.3em;
  }
  .frase-final {
    font-size: 1rem;
    padding: 0.7em 0.5em;
  }
}

/* === SERVICOS: Cards === */
.cards-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.servico-card {
  background: #fff;
  border-radius: 1.5em;
  box-shadow: 0 4px 22px #fb5fab1a;
  padding: 2.2em 1.4em 1.6em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.24s;
}
.servico-card:hover {
  box-shadow: 0 8px 36px #fb5fab33;
  transform: translateY(-4px) scale(1.03);
}
.servico-card .servico-img img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  background: #fde4ee;
  box-shadow: 0 2px 14px #fb5fab33;
  margin-bottom: 14px;
}
.servico-card h3 {
  font-size: 1.19em;
  font-weight: 800;
  margin: 0 0 0.7em 0;
  color: #FB5FAB;
  text-align: center;
}
.servico-card .beneficio {
  font-size: 1em;
  color: #6c6d6f;
  text-align: center;
  margin-bottom: 1em;
}
.btn-saiba-mais .wp-block-button__link {
  background: #FB5FAB;
  color: #fff;
  border-radius: 2em;
  padding: 10px 28px;
  font-weight: 600;
  transition: background 0.2s, transform 0.18s;
}
.btn-saiba-mais .wp-block-button__link:hover {
  background: #F45CA3;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 850px) {
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .servico-card, .service-list-card { min-width: 0; }
}

/* === SERVIÇOS: Cards por categoria === */
.service-card .wp-block-heading,
.service-card h3 {
  color: #FB5FAB !important;
  font-weight: 800;
  letter-spacing: -.5px;
  text-shadow: 0 2px 12px #fb5fab33, 0 1px 1px #fff;
  position: relative;
}
.service-card .wp-block-heading::after,
.service-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3.2px;
  background: linear-gradient(90deg, #FB5FAB 60%, #fde4ee 100%);
  border-radius: 3px;
  margin: 8px auto 0 auto;
  box-shadow: 0 0 8px #fb5fab33;
}


.service-card {
  background: #fff;
  border-radius: 1.3em;
  box-shadow: 0 4px 22px #fb5fab13;
  padding: 2em 1em 1.7em;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 8px 36px #fb5fab2a;
  transform: translateY(-3px) scale(1.03);
}
.service-card h3 {
  font-size: 1.18em;
  font-weight: 800;
  color: #F45CA3;
  margin-bottom: 1em;
  text-align: center;
  letter-spacing: -.5px;
}
.wp-block-list,
.service-card ul {
  padding: 0;
  margin: 0 0 1.5em 0;
  list-style: none;
  width: 100%;
}
.wp-block-list li,
.service-card li {
  display: flex;
  align-items: center;
  margin-bottom: .8em;
  font-size: 1em;
  color: #444;
  gap: .6em;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 8px;
}
.wp-block-list li:hover,
.service-card li:hover {
  background: #fde4ee55;
}
.service-card li i,
.wp-block-list li i {
  font-size: 1.2em;
  color: #FB5FAB;
  min-width: 22px;
}

.wp-block-button__link, .btn-lista {
  background: #FB5FAB;
  color: #fff !important;
  border-radius: 2em;
  padding: 10px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.18s;
  font-size: 1.07em;
  display: inline-block;
  margin-top: 0.5em;
}
.wp-block-button__link:hover, .btn-lista:hover {
  background: #F45CA3;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 850px) {
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .servico-card, .service-list-card { min-width: 0; }
}

/* Seção Quem sou eu - base */

/* Seção principal */
.quem-sou-eu-section,
.quem-sou-eu-section.parallax-bg {
  margin: 0 auto 2em auto;
  border-radius: 2em;
  box-shadow: 0 10px 36px #fb5fab13;
  padding: 60px 0 40px 0;
  position: relative;
  background: linear-gradient(120deg,#fde4ee 70%,#fff 100%);
  overflow: hidden;
  z-index: 1;
}

/* Seção com fundo parallax customizado */
.quem-sou-eu-section.parallax-bg {
  background: url('http://talitalmeida.com.br/wp-content/uploads/2025/06/fundo2.webp') center center/cover no-repeat;
  background-size: 140% auto;  /* Começa maior, o JS vai aumentar */
  background-attachment: scroll; /* O JS fará o parallax, nunca 'fixed' aqui! */
  transition: background-size 0.5s cubic-bezier(.4,2,.5,1);
}

/* (Opcional) Overlay branco translúcido para melhorar contraste */
.quem-sou-eu-section.parallax-bg::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 2em;
  background: rgba(255,255,255,0.38);
  pointer-events: none;
  z-index: 0;
}

/* Conteúdo centralizado e flexível */
.quem-sou-eu-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Acima do overlay */
}

.quem-sou-eu-img img {
  border-radius: 1.6em;
  box-shadow: 0 8px 32px #fb5fab26;
  max-width: 340px;
  width: 100%;
  height: auto;
  display: block;
}

.quem-sou-eu-txt {
  min-width: 260px;
  max-width: 520px;
  text-align: left;
}

.quem-sou-eu-txt h3 {
  font-size: 1.35em;
  color: #F45CA3;
  font-weight: 800;
  margin-bottom: 0.6em;
  letter-spacing: -.5px;
}

.quem-sou-eu-txt blockquote {
  font-size: 1.18em;
  line-height: 1.6;
  color: #313640;
  font-style: italic;
  margin: 0 0 1.2em 0;
  padding-left: 0.7em;
  border-left: 3px solid #F45CA322;
  background: transparent;
}

.quem-sou-eu-txt p {
  color: #F45CA3;
  font-weight: bold;
  font-size: 1.15em;
  letter-spacing: .5px;
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 900px) {
  .quem-sou-eu-content { 
    flex-direction: column; 
    gap: 28px; 
  }
  .quem-sou-eu-img, 
  .quem-sou-eu-txt { 
    max-width: 98vw; 
    margin: 0 auto; 
    text-align: center;
  }
  .quem-sou-eu-txt { text-align: center; }
  .quem-sou-eu-txt blockquote { 
    padding-left: 0; 
    border-left: none; 
  }
  .quem-sou-eu-section.parallax-bg {
    background-attachment: scroll; /* Parallax mobile sempre via JS, nunca fixed */
    background-size: cover !important; /* <- garante preenchimento total no mobile */
    min-height: 420px; /* ou 100vw se quiser sempre ocupar bastante espaço */  }
}

/* =========================================================
   7. SWIPER DEPOIMENTOS GOOGLE
========================================================= */
.testimonials-secao {
  text-align: center;
  padding: 4rem 1rem;
  background: radial-gradient(circle, #fff 60%, var(--rosa-claro) 120%);
}
.swiper-testimonials {
  max-width: 700px; margin: 0 auto; position: relative;
}
.swiper-testimonials .swiper-wrapper {
  display: flex; align-items: center;
}
.swiper-testimonials .swiper-slide {
  display: flex !important; justify-content: center; align-items: center;
  background: #fff; border-radius: 12px; box-shadow: 0 24px rgba(0,0,0,0.06);
  width: 100% !important; padding: 0; height: 320px;
}
.swiper-testimonials img {
  display: block; max-width: 100%; max-height: 220px;
  border-radius: 16px; margin: 0 auto; object-fit: contain;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.swiper-pagination { bottom: 10px !important; position: absolute !important; width: 100%; left: 0;}
.swiper-button-next, .swiper-button-prev {
  top: 50%; transform: translateY(-50%);
  width: 32px !important; height: 80px !important;
  color: var(--rosa-principal);
}

/* =========================================================
   8. COMPONENTES GERAIS E BLOG
========================================================= */
.custom-shadow img { box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; }
.contact-info, .contact-info a {
  color: #fff; margin: 0; padding: 0; text-decoration: none;
}
.contact-info a { margin: .25em 0; display: block; }

#posts-container .post-item { margin-bottom: 2rem; }
#posts-container .entry-title { font-size: 1.75rem; margin-bottom: 0.5rem;}
#posts-container .entry-title a { color: inherit; text-decoration: none;}
#posts-container .entry-title a:hover { text-decoration: underline;}
#posts-container .entry-excerpt { font-size: 1rem; line-height: 1.6;}
#load-more-btn {
  display: inline-block; padding: 0.75rem 1.5rem; background-color: #21759b;
  color: #fff; border: none; border-radius: 4px; cursor: pointer;
}
#load-more-btn:hover { background-color: #1b4c73;}
#no-more-posts { text-align: center; font-style: italic; margin: 1.5rem 0; color: #555;}
.entry-meta .posted-on { display: none !important; }

/* =========================================================
   9. FAQ E CHAMADA BLOG
========================================================= */
.faq-section {
  background: #fde4ee;
  border-radius: 18px;
  box-shadow: 0 4px 24px #fb5fab13;
  padding: 2.5rem 1rem;
  margin-bottom: 2.5rem;
}
.faq-title {
  text-align: center;
  color: #d0367a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px #fb5fab15;
  margin-bottom: 1.1rem;
  padding: 0;
  transition: box-shadow 0.2s;
  overflow: hidden;
}
.faq-item[open] { box-shadow: 0 6px 24px #fb5fab26; }
.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #d0367a;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: none;
  outline: none;
  border: none;
}
.faq-icon { font-size: 1.3em; margin-right: .6em; }
.faq-item p {
  padding: 0 1.3rem 1.2rem 2.7rem;
  color: #444;
  font-size: 1.05rem;
  margin: 0;
}
.faq-item[open] summary { color: #fb5fab; }
/* Chamada blog */
.blog-cta-section {
  background: #fde4ee;
  border-radius: 18px;
  box-shadow: 0 6px 32px #fb5fab17;
  padding: 2.3rem 1.3rem 2.2rem 1.3rem;
  margin-top: 2.4rem;
  max-width: 700px;
}
.blog-cta-title {
  color: #d0367a;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.blog-cta-desc {
  color: #6c2e4e;
  font-size: 1.09rem;
  margin-bottom: 1.4rem;
}

/* =========================================================
   10. BOTÃO WHATSAPP FLUTUANTE
========================================================= */
.floating-whatsapp {
  position: fixed !important; bottom: 80px !important; right: 20px !important;
  width: 60px !important; height: 60px !important; background: #25D366 !important;
  border-radius: 50% !important; box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  z-index: 99999 !important; text-decoration: none !important;
}
.floating-whatsapp img, .floating-whatsapp svg {
  width: 30px !important; height: 30px !important; fill: #fff !important;
}
.btn-whatsapp-custom {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background-color: var(--rosa-principal); color: var(--branco); text-decoration: none;
  font-weight: 600; font-size: 16px; padding: 8px 16px; border-radius: 50px; border: none;
  cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-whatsapp-custom:hover, .btn-whatsapp-custom:focus {
  background-color: #e43a7e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
}
.btn-whatsapp-custom .fab.fa-whatsapp { font-size: 20px; line-height: 1; color: var(--branco); }

/* =========================================================
   11. RESPONSIVO (Mobile até 768px)
========================================================= */
@media (max-width: 768px) {
  header.site-header { padding: 6px 0 !important; }
  header.site-header.scrolled { padding: 3px 0 !important; }
  header.site-header .custom-logo-responsive img {
    max-height: 80px !important; max-width: 80px !important;
  }
  header.site-header.scrolled .custom-logo-responsive img {
    max-height: 40px !important; max-width: 40px !important;
  }
  .diferenciais-grid, .antes-depois-grid, .services-grid {
    grid-template-columns: 1fr !important;
  }
  .custom-shadow.is-stacked-on-mobile .wp-block-media-text__media {
    text-align: center; margin-bottom: 1em;
  }
  .custom-shadow.is-stacked-on-mobile img {
    width: 80% !important; max-width: 200px; height: auto !important;
  }
  .servico-item { display: flex !important; flex-direction: column; text-align: center; }
  #reviews .wp-block-columns { flex-direction: column; text-align: center;}
  .review-text, .review-author { text-align: center;}
  .swiper-testimonials { max-width: 98vw;}
  .swiper-testimonials .swiper-slide { height: auto; padding-bottom: 40px;}
  .swiper-testimonials img { max-width: 98vw; max-height: 36vw;}
  .swiper-button-next, .swiper-button-prev {
    top: 100% !important; width: 32px !important; height: 130px !important;
  }
  .swiper-pagination { bottom: 10px !important; position: absolute !important; width: 100%; left: 0;}
}
@media (max-width: 600px) {
  .service-card { padding: 18px !important;}
  .service-card h3 { font-size: 1.2rem !important;}
  .service-card li { font-size: .95rem !important;}
}

/* FIM DO CSS */
