@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- VARIÁVEIS ---- */
:root {
  --bg:            #FEF6F8;
  --bg-alt:        #FDE8EE;
  --rose-100:      #FDE8EE;
  --rose-200:      #F9D0DC;
  --rose-300:      #F2AABF;
  --rose-400:      #E080A0;
  --rose-500:      #C45878;
  --rose-600:      #9E3A58;
  --mauve:         #5D2E40;
  --text-dark:     #2D1B25;
  --text-mid:      #6B4055;
  --text-light:    #9A7080;
  --white:         #FFFFFF;
  --shadow:        0 4px 20px rgba(180,80,100,.12);
  --shadow-lg:     0 8px 40px rgba(180,80,100,.18);
  --radius:        16px;
  --radius-sm:     8px;
  --transition:    .3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text-dark);
  line-height:1.7;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; transition:color var(--transition); }
ul { list-style:none; }

/* ---- TIPOGRAFIA ---- */
h1,h2,h3,h4 { font-family:'Playfair Display',serif; line-height:1.25; color:var(--text-dark); }
h1 { font-size:clamp(2rem,5vw,3.5rem); }
h2 { font-size:clamp(1.6rem,3.5vw,2.6rem); }
h3 { font-size:clamp(1.2rem,2.5vw,1.8rem); }
p  { color:var(--text-mid); }

.eyebrow {
  font-size:.8rem; font-weight:600; letter-spacing:.15em;
  text-transform:uppercase; color:var(--rose-500);
  display:block; margin-bottom:.5rem;
}

/* ---- LAYOUT ---- */
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }
section    { padding:5rem 0; }

.section-header { text-align:center; margin-bottom:3.5rem; }
.section-header p { max-width:600px; margin:1rem auto 0; font-size:1.05rem; }

/* ---- BOTÕES ---- */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 2rem; border-radius:50px;
  font-family:'Poppins',sans-serif; font-size:.95rem; font-weight:500;
  cursor:pointer; transition:all var(--transition); border:2px solid transparent;
}
.btn-primary { background:var(--rose-500); color:var(--white); border-color:var(--rose-500); }
.btn-primary:hover { background:var(--rose-600); border-color:var(--rose-600); transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-outline  { background:transparent; color:var(--rose-500); border-color:var(--rose-500); }
.btn-outline:hover { background:var(--rose-500); color:var(--white); transform:translateY(-2px); }
.btn-white  { background:var(--white); color:var(--rose-500); border-color:var(--white); }
.btn-white:hover { background:var(--rose-100); transform:translateY(-2px); }

/* ---- NAVBAR ---- */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:1.2rem 0; transition:all var(--transition);
}
.navbar.scrolled, .navbar.solid {
  background:rgba(254,246,248,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 2px 20px rgba(180,80,100,.08);
  padding:.8rem 0;
}
.navbar-inner {
  display:flex; align-items:center; justify-content:space-between;
  max-width:1200px; margin:0 auto; padding:0 2rem;
}
.navbar-logo { display:flex; align-items:center; gap:.8rem; }
.logo-img {
  width:44px; height:44px; border-radius:50%;
  object-fit:contain; background:var(--rose-100); padding:4px;
}
.logo-text { display:flex; flex-direction:column; }
.logo-name  { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--mauve); line-height:1.2; }
.logo-title { font-size:.7rem; font-weight:500; color:var(--rose-500); letter-spacing:.08em; text-transform:uppercase; }

.navbar-links { display:flex; align-items:center; gap:2.5rem; }
.navbar-links a {
  font-size:.9rem; font-weight:500; color:var(--text-mid); position:relative;
}
.navbar-links a::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:0; height:2px; background:var(--rose-500);
  transition:width var(--transition); border-radius:2px;
}
.navbar-links a:hover, .navbar-links a.active { color:var(--rose-500); }
.navbar-links a:hover::after, .navbar-links a.active::after { width:100%; }

/* hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--mauve); border-radius:2px; transition:all var(--transition); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* mobile nav overlay */
.mobile-nav {
  display:none; position:fixed; inset:0;
  background:rgba(254,246,248,.98); z-index:999;
  flex-direction:column; align-items:center; justify-content:center; gap:2.5rem;
}
.mobile-nav.open { display:flex; }
.mobile-nav a { font-family:'Playfair Display',serif; font-size:2rem; color:var(--mauve); font-weight:600; }
.mobile-nav a:hover { color:var(--rose-500); }
.mobile-nav-close {
  position:absolute; top:1.5rem; right:2rem;
  font-size:2rem; cursor:pointer; color:var(--mauve);
  background:none; border:none; line-height:1;
}

/* ---- HERO (HOME) ---- */
.hero {
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden;
  background:linear-gradient(135deg,#FEF6F8 0%,#FDE8EE 50%,#F9D0DC 100%);
}
.hero::before {
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle,var(--rose-200) 0%,transparent 70%);
  right:-100px; top:-100px; opacity:.5;
}
.hero::after {
  content:''; position:absolute; width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle,var(--rose-200) 0%,transparent 70%);
  left:-100px; bottom:-100px; opacity:.4;
}
.hero-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center;
  max-width:1200px; margin:0 auto; padding:8rem 2rem 4rem; position:relative; z-index:1;
}
.hero-content { animation:fadeInUp .8s ease forwards; }
.hero-tag {
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--white); border:1px solid var(--rose-200);
  padding:.4rem 1rem; border-radius:50px;
  font-size:.8rem; font-weight:500; color:var(--rose-600); margin-bottom:1.5rem;
}
.hero-tag::before { content:'♥'; }
.hero h1 { margin-bottom:1.2rem; color:var(--mauve); }
.hero h1 span { color:var(--rose-500); font-style:italic; }
.hero-subtitle { font-size:1.1rem; margin-bottom:2.5rem; max-width:480px; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }

.hero-image {
  position:relative; display:flex; justify-content:center; align-items:flex-end;
  animation:fadeInRight .8s ease .2s both;
}
.hero-photo-frame {
  width:100%; max-width:420px; aspect-ratio:3/4;
  border-radius:40% 60% 50% 50% / 30% 30% 70% 70%;
  overflow:hidden;
  background:linear-gradient(180deg,var(--rose-200) 0%,var(--rose-300) 100%);
  box-shadow:var(--shadow-lg); position:relative;
}
.hero-photo-frame img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.hero-placeholder-img { width:100%; height:100%; object-fit:contain; }

.hero-badge {
  position:absolute; background:var(--white); border-radius:var(--radius);
  padding:1rem 1.5rem; box-shadow:var(--shadow); display:flex; align-items:center; gap:.8rem;
}
.hero-badge-1 { bottom:2rem; left:-1rem; }
.hero-badge-2 { top:4rem; right:-1rem; }
.badge-icon {
  width:44px; height:44px; border-radius:50%; background:var(--rose-100);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem;
}
.badge-text span { display:block; }
.badge-text .bold { font-weight:600; font-size:1.1rem; color:var(--text-dark); font-family:'Playfair Display',serif; }
.badge-text .small { font-size:.75rem; color:var(--text-light); }

/* ---- DESTAQUES ---- */
.features { background:var(--white); }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.feature-card {
  padding:2.5rem 2rem; border-radius:var(--radius);
  background:var(--bg); border:1px solid var(--rose-100);
  text-align:center; transition:all var(--transition);
}
.feature-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--rose-200); }
.feature-icon {
  width:70px; height:70px; border-radius:50%;
  background:var(--rose-100); display:flex; align-items:center; justify-content:center;
  font-size:2rem; margin:0 auto 1.5rem;
}
.feature-card h3 { font-size:1.2rem; margin-bottom:.75rem; color:var(--mauve); }

/* ---- SOBRE PREVIEW ---- */
.about-preview { background:var(--bg-alt); }
.about-preview-inner { display:grid; grid-template-columns:1fr 1.2fr; gap:5rem; align-items:center; }
.about-photo { position:relative; }
.about-photo-frame {
  width:100%; aspect-ratio:4/5;
  border-radius:50% 50% 40% 40% / 20% 20% 80% 80%;
  overflow:hidden;
  background:linear-gradient(160deg,var(--rose-200),var(--rose-300));
  box-shadow:var(--shadow-lg);
}
.about-photo-frame img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.about-photo::before {
  content:''; position:absolute; inset:-1rem;
  border:2px dashed var(--rose-300);
  border-radius:50% 50% 40% 40% / 20% 20% 80% 80%; z-index:-1;
}
.about-content h2      { margin-bottom:.5rem; color:var(--mauve); }
.about-content .subtitle {
  font-size:1.05rem; color:var(--rose-500); font-weight:500;
  margin-bottom:1.5rem; font-family:'Playfair Display',serif; font-style:italic;
}
.about-content p { margin-bottom:1rem; font-size:1rem; }
.about-highlights { display:flex; gap:2rem; margin:2rem 0; flex-wrap:wrap; }
.highlight-item { display:flex; flex-direction:column; }
.highlight-item .number { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:700; color:var(--rose-500); line-height:1; }
.highlight-item .label  { font-size:.78rem; color:var(--text-light); margin-top:.3rem; }

/* ---- SERVIÇOS PREVIEW ---- */
.services-preview { background:var(--white); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; margin-bottom:3rem; }
.service-card {
  padding:2rem; border-radius:var(--radius);
  background:var(--bg); border:1px solid var(--rose-100);
  transition:all var(--transition);
}
.service-card:hover { border-color:var(--rose-300); box-shadow:var(--shadow); transform:translateY(-3px); background:var(--white); }
.service-icon {
  width:54px; height:54px; border-radius:14px;
  background:var(--rose-100); display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:1.2rem;
}
.service-card h4 { font-size:1rem; font-family:'Poppins',sans-serif; font-weight:600; color:var(--mauve); margin-bottom:.5rem; }
.service-card p  { font-size:.87rem; line-height:1.6; }

/* ---- CTA ---- */
.cta-section {
  background:linear-gradient(135deg,var(--rose-500) 0%,var(--rose-600) 100%);
  text-align:center; padding:5rem 0;
}
.cta-section h2 { color:var(--white); margin-bottom:1rem; }
.cta-section p  { color:rgba(255,255,255,.85); font-size:1.05rem; max-width:550px; margin:0 auto 2.5rem; }

/* ---- LOCALIZAÇÃO ---- */
.location-section { background:var(--bg-alt); }
.location-inner { display:grid; grid-template-columns:1fr 1.5fr; gap:3rem; align-items:start; }
.location-info h2 { color:var(--mauve); margin-bottom:1.5rem; }
.location-item { display:flex; gap:1rem; margin-bottom:1.5rem; align-items:flex-start; }
.location-item-icon {
  width:44px; height:44px; border-radius:12px; background:var(--rose-100);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0;
}
.location-item-text strong { display:block; font-size:.85rem; font-weight:600; color:var(--text-dark); margin-bottom:.2rem; }
.location-item-text span  { font-size:.9rem; color:var(--text-mid); }
.map-frame { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); height:380px; }
.map-frame iframe { width:100%; height:100%; border:0; }

/* ---- HERO INTERNO (páginas internas) ---- */
.page-hero {
  padding:8rem 0 4rem;
  background:linear-gradient(135deg,var(--bg) 0%,var(--bg-alt) 100%);
  text-align:center;
}
.page-hero h1 { color:var(--mauve); margin-bottom:.75rem; }
.page-hero p   { font-size:1.05rem; max-width:500px; margin:0 auto; }
.breadcrumb {
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  font-size:.82rem; color:var(--text-light); margin-bottom:1.5rem;
}
.breadcrumb a { color:var(--rose-500); }
.breadcrumb a:hover { text-decoration:underline; }

/* ---- PÁGINA SOBRE ---- */
.about-section { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:5rem; align-items:start; }
.about-sidebar .photo-frame {
  width:100%; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:linear-gradient(160deg,var(--rose-200),var(--rose-300));
  aspect-ratio:3/4; position:sticky; top:100px;
}
.about-sidebar .photo-frame img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.about-body h2 { color:var(--mauve); margin-bottom:.3rem; }
.about-body .dr-title {
  color:var(--rose-500); font-size:1rem; font-weight:500;
  font-style:italic; font-family:'Playfair Display',serif;
  margin-bottom:2rem; display:block;
}
.about-body p { margin-bottom:1rem; font-size:.97rem; }
.about-body h3 {
  font-size:1.1rem; color:var(--mauve); margin:2.5rem 0 1rem;
  padding-bottom:.5rem; border-bottom:2px solid var(--rose-100);
}
.formation-list { display:flex; flex-direction:column; gap:1rem; }
.formation-item { display:flex; gap:1rem; align-items:flex-start; }
.formation-dot { width:12px; height:12px; border-radius:50%; background:var(--rose-400); margin-top:.4rem; flex-shrink:0; }
.formation-item p  { font-size:.95rem; color:var(--text-mid); }
.formation-item strong { color:var(--text-dark); display:block; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:1.5rem; }
.value-card { padding:1.5rem; border-radius:var(--radius-sm); background:var(--bg); border:1px solid var(--rose-100); }
.value-card .icon { font-size:1.5rem; margin-bottom:.75rem; }
.value-card h4 { font-size:.95rem; font-family:'Poppins',sans-serif; font-weight:600; color:var(--mauve); margin-bottom:.3rem; }
.value-card p  { font-size:.82rem; }

/* ---- PÁGINA SERVIÇOS ---- */
.services-full { background:var(--white); }
.services-full-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; }
.service-full-card {
  padding:2.5rem 2rem; border-radius:var(--radius);
  background:var(--bg); border:1px solid var(--rose-100);
  transition:all var(--transition);
}
.service-full-card:hover { border-color:var(--rose-300); box-shadow:var(--shadow); transform:translateY(-3px); }
.service-full-icon {
  width:64px; height:64px; border-radius:var(--radius-sm);
  background:linear-gradient(135deg,var(--rose-100),var(--rose-200));
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem; margin-bottom:1.5rem;
}
.service-full-card h3 { font-size:1.05rem; color:var(--mauve); margin-bottom:.75rem; font-family:'Poppins',sans-serif; font-weight:600; }
.service-full-card p  { font-size:.9rem; line-height:1.7; }

/* ---- PÁGINA CONTATO ---- */
.contact-section { background:var(--white); }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:4rem; align-items:start; }
.contact-info-block h3 { font-size:1.3rem; color:var(--mauve); margin-bottom:2rem; }
.contact-item { display:flex; gap:1.2rem; margin-bottom:2rem; align-items:flex-start; }
.contact-item-icon {
  width:52px; height:52px; border-radius:14px; background:var(--rose-100);
  display:flex; align-items:center; justify-content:center; font-size:1.4rem; flex-shrink:0;
}
.contact-item-text strong { display:block; font-size:.9rem; font-weight:600; color:var(--text-dark); margin-bottom:.3rem; }
.contact-item-text span,
.contact-item-text a { font-size:.9rem; color:var(--text-mid); display:block; line-height:1.6; }
.contact-item-text a:hover { color:var(--rose-500); }
.whatsapp-btn {
  display:inline-flex; align-items:center; gap:.7rem;
  background:#25D366; color:white; padding:.9rem 2rem;
  border-radius:50px; font-weight:500; font-size:.95rem;
  margin-top:.5rem; transition:all var(--transition);
  box-shadow:0 4px 15px rgba(37,211,102,.3);
}
.whatsapp-btn:hover { background:#1da851; transform:translateY(-2px); box-shadow:0 6px 20px rgba(37,211,102,.4); }
.contact-map .map-frame { height:450px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); margin-bottom:1.5rem; }
.contact-map .map-frame iframe { width:100%; height:100%; border:0; }

/* ---- FOOTER ---- */
footer { background:var(--mauve); color:rgba(255,255,255,.75); padding:3.5rem 0 1.5rem; }
.footer-inner {
  display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem;
  padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,.1); margin-bottom:2rem;
}
.footer-brand .logo-name  { color:var(--white); font-size:1.3rem; }
.footer-brand .logo-title { color:var(--rose-200); margin-bottom:1rem; }
.footer-brand p { font-size:.88rem; color:rgba(255,255,255,.6); line-height:1.8; margin-top:.75rem; max-width:280px; }
.footer-links h4 { font-family:'Poppins',sans-serif; font-size:.85rem; font-weight:600; color:var(--rose-200); text-transform:uppercase; letter-spacing:.08em; margin-bottom:1.2rem; }
.footer-links ul { display:flex; flex-direction:column; gap:.7rem; }
.footer-links li a { font-size:.88rem; color:rgba(255,255,255,.65); transition:color var(--transition); }
.footer-links li a:hover { color:var(--rose-200); }
.footer-links address { font-style:normal; font-size:.88rem; line-height:1.8; color:rgba(255,255,255,.65); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:.8rem; color:rgba(255,255,255,.45); flex-wrap:wrap; gap:.5rem; }
.footer-bottom a { color:var(--rose-200); }

/* ---- ANIMAÇÕES ---- */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
.reveal { opacity:0; transform:translateY(25px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ---- RESPONSIVO ---- */
@media (max-width:1024px) {
  .hero-inner { gap:2.5rem; }
  .about-preview-inner, .about-grid { gap:3rem; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .footer-inner > :first-child { grid-column:1 / -1; }
}

@media (max-width:768px) {
  section { padding:3.5rem 0; }
  .navbar-links, .navbar-cta .btn { display:none; }
  .hamburger { display:flex; }
  .hero-inner { grid-template-columns:1fr; text-align:center; padding-top:6rem; }
  .hero-image { order:-1; }
  .hero-photo-frame { max-width:260px; margin:0 auto; }
  .hero-badge { display:none; }
  .hero-actions { justify-content:center; }
  .hero-subtitle { margin:0 auto 2.5rem; }
  .features-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .about-preview-inner, .about-grid, .location-inner, .contact-grid { grid-template-columns:1fr; }
  .about-photo, .about-sidebar .photo-frame { max-width:300px; margin:0 auto; position:static; }
  .services-grid, .services-full-grid { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; }
  .values-grid { grid-template-columns:1fr; }
  .about-highlights { justify-content:center; }
  .footer-inner { grid-template-columns:1fr; gap:2rem; }
  .footer-inner > :first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .page-hero { padding:7rem 0 3rem; }
  .map-frame { height:280px; }
}

@media (max-width:480px) {
  .container { padding:0 1.25rem; }
  .hero h1 { font-size:1.9rem; }
  .btn { padding:.75rem 1.5rem; font-size:.9rem; }
}
