/* ===== Fonts ===== */
@font-face {
  font-family: "Roca One";
  src: url("_assets/fonts/9bd981869676973acd26eb53bfeeddb2.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roca One";
  src: url("_assets/fonts/199076837d7e0e6e42abf0d7f6cbfd21.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("_assets/fonts/881b8da5ad9b82b143ab37dcdf069c4c.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("_assets/fonts/b13d468f88f904752a71651083120b9b.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("_assets/fonts/527cd5a6be21d4e008281f52ae03e6de.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("_assets/fonts/3caeb8725430f400cbc24c4707d72558.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #156669;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Backgrounds ===== */
.bg-cream { background-color: #eeecde; }
.bg-blue  { background-color: #b2dcfa; }
.bg-coral { background-color: #ffd3c2; }

/* ===== Decorated sections ===== */
.section-decorated {
  position: relative;
  overflow: hidden;
}

.section-bg-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-bg-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.section-decorated > .container {
  position: relative;
  z-index: 1;
}

/* ===== Sections ===== */
.section {
  padding: 80px 60px;
}

.section-heading {
  font-family: "Roca One", serif;
  font-size: 56px;
  color: #156669;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn img {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.btn-coral {
  background: #ff9999;
  color: #f84444;
  font-family: "Roca One", serif;
  font-size: 32px;
  font-weight: 700;
  padding: 18px 48px;
  border: none;
}
.btn-coral:hover {
  background: #ff8888;
}

.btn-whatsapp {
  background: #156669;
  color: #fff;
  font-size: 18px;
  padding: 16px 40px;
  white-space: nowrap;
}

.btn-teal {
  background: #156669;
  color: #fff;
  font-size: 18px;
  padding: 18px 40px;
}

.btn-coral-filled {
  background: #ff9999;
  color: #f84444;
  font-family: "Roca One", serif;
  font-size: 28px;
  font-weight: 700;
  padding: 18px 48px;
}

/* ===== Nav ===== */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 20px 40px;
}
.nav a {
  font-weight: 500;
  color: #156669;
  font-size: 15px;
}
.nav a:hover { text-decoration: underline; }

/* ===== Hero ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #eeecde;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-orb {
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(245,170,145,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 65% 25%, rgba(185,210,165,0.6) 0%, transparent 45%),
    radial-gradient(ellipse at 45% 75%, rgba(195,175,215,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 45%, rgba(248,190,165,0.9) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(240,175,155,0.7) 0%, transparent 50%);
  filter: blur(55px);
  border-radius: 50%;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-content {
  flex: 1;
}

.hero-mandala {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.hero-name {
  font-family: "Roca One", serif;
  font-size: 72px;
  color: #156669;
  line-height: 1.0;
  margin-bottom: 0;
  font-weight: 700;
}

.hero-title {
  font-family: "Roca One", serif;
  font-size: 100px;
  color: #156669;
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 4px;
}

.hero-crp {
  font-family: "Roca One", serif;
  font-size: 22px;
  font-weight: 700;
  color: #156669;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 20px;
  color: #156669;
  margin-bottom: 12px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-desc:last-of-type {
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero-photo {
  flex: 0 0 auto;
}
.hero-photo img {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: 0 8px 32px rgba(21,102,105,0.18);
}

/* ===== About ===== */
.about-grid {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.about-photo {
  flex: 0 0 auto;
}
.about-photo img {
  width: 340px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-content {
  flex: 1;
}

.about-sub {
  font-family: "Roca One", serif;
  font-size: 35px;
  color: #156669;
  margin-bottom: 16px;
}

.about-text {
  font-size: 21px;
  color: #156669;
  margin-bottom: 24px;
  line-height: 1.5;
}

.about-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff9999;
  color: #f84444;
  font-weight: 700;
  font-size: 18px;
  margin-top: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  background: #ff8888;
}
.about-instagram img {
  width: 34px;
  height: 34px;
}

/* ===== Content sections ===== */
.content-narrow {
  max-width: 900px;
}

.bullet-list {
  list-style: none;
  margin-bottom: 8px;
}
.bullet-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 18px;
  font-size: 21px;
  color: #156669;
  line-height: 1.5;
}
.bullet-list li::before {
  content: "\2022";
  color: #156669;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
  font-weight: bold;
}

.bullet-closing {
  font-size: 21px;
  color: #156669;
  font-style: italic;
  margin-top: 24px;
  line-height: 1.5;
}

.cta-wrap {
  margin-top: 36px;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 8px;
}

.testimonial-card {
  background: transparent;
  border-left: 4px solid #156669;
  padding: 28px 24px;
}

.testimonial-text {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  color: #156669;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 15px;
  color: #156669;
}

/* ===== Stats / Cuidado Garantido ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 48px;
}

.stat-number {
  font-family: "Roca One", serif;
  font-size: 56px;
  color: #156669;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #156669;
  margin-top: 4px;
}

.cards-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}

.info-card {
  background: #eeecde;
  border: 2px solid #156669;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.info-card img {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.info-card .card-title {
  font-family: "Roca One", serif;
  font-size: 24px;
  font-weight: 700;
  color: #156669;
  margin-bottom: 8px;
}

.info-card .card-desc {
  font-size: 15px;
  color: #156669;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 40px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-mandala {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
}

.footer-name {
  font-family: "Roca One", serif;
  font-size: 28px;
  color: #156669;
  line-height: 1;
}

.footer-title {
  font-family: "Roca One", serif;
  font-size: 36px;
  color: #156669;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-crp {
  font-size: 14px;
  color: #888;
}

.footer-tagline {
  font-size: 16px;
  color: #156669;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.footer-contact-block {
  margin-bottom: 16px;
}

.footer-contact-heading {
  font-family: "Roca One", serif;
  font-size: 24px;
  color: #156669;
  margin-bottom: 12px;
}

.footer-contact-links {
  font-size: 15px;
  color: #156669;
  margin-bottom: 8px;
}

.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #156669;
  font-weight: 500;
}
.footer-contact-links a:hover { text-decoration: underline; }

.footer-icon {
  width: 20px;
  height: auto;
  object-fit: contain;
}

/* ===== Page links ===== */
.page-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.page-link {
  font-weight: 500;
  font-size: 15px;
  color: #156669;
  padding: 10px 24px;
  border: 2px solid #156669;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.page-link:hover {
  background: #156669;
  color: #fff;
}

.page-link-active {
  background: #156669;
  color: #fff;
}

/* ===== Casal page ===== */
.casal-hero-section { min-height: auto; }
.casal-hero-grid { padding-top: 40px; }
.casal-hero-name { font-size: 64px; }
.casal-hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}

.casal-questions { list-style: none; margin-bottom: 32px; }
.casal-questions li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 21px;
  color: #156669;
  line-height: 1.5;
  font-style: italic;
}
.casal-questions li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: #156669;
}

.casal-reassurance {
  font-size: 21px;
  color: #156669;
  line-height: 1.6;
  border-left: 4px solid #156669;
  padding-left: 20px;
  margin-top: 16px;
}

.casal-text {
  font-size: 21px;
  color: #156669;
  line-height: 1.6;
  margin-bottom: 20px;
}

.casal-subheading {
  font-family: "Roca One", serif;
  font-size: 32px;
  color: #156669;
  margin-top: 40px;
  margin-bottom: 20px;
}
.casal-subheading-light { margin-top: 48px; }

.casal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.casal-tag {
  background: #156669;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
}

/* ===== Calendly widget ===== */
.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.agende-subtitle {
  font-size: 20px;
  color: #156669;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    padding: 16px 20px;
    font-size: 13px;
  }

  /* Hero */
  .hero-grid {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-mandala { margin: 0 auto 16px; }
  .hero-name { font-size: 48px; }
  .hero-title { font-size: 60px; }
  .hero-crp { font-size: 18px; }
  .hero-desc { max-width: 100%; font-size: 17px; }
  .hero-buttons {
    align-items: center;
    width: 100%;
  }
  .hero-photo img {
    width: 240px;
    height: 240px;
  }
  .hero-orb {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 50%;
  }
  .hero { padding: 20px 0 40px; }

  /* Buttons */
  .btn-coral {
    font-size: 22px;
    padding: 14px 28px;
  }
  .btn-whatsapp {
    padding: 14px 24px;
    font-size: 15px;
    white-space: normal;
  }
  .btn-coral-filled {
    padding: 14px 28px;
    font-size: 18px;
  }

  /* About */
  .about-grid {
    flex-direction: column;
    text-align: center;
  }
  .about-photo { display: flex; justify-content: center; width: 100%; }
  .about-photo img { width: 260px; }
  .about-instagram {
    font-size: 15px;
    padding: 12px 24px;
  }
  .about-sub { font-size: 28px; }

  /* Sections */
  .section-heading { font-size: 32px; }
  .section { padding: 48px 20px; }

  .about-text,
  .bullet-list li,
  .bullet-closing {
    font-size: 17px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-text { font-size: 15px; }

  /* Stats */
  .stats-row {
    flex-direction: column;
    gap: 24px;
  }
  .stat-number { font-size: 42px; }

  /* Cards */
  .cards-row {
    flex-direction: column;
    align-items: center;
  }
  .info-card { max-width: 100%; width: 100%; }

  /* Calendly widget */
  .calendly-inline-widget {
    min-width: unset !important;
    width: 100%;
    height: 500px;
  }
  .agende-subtitle { font-size: 17px; }

  /* Casal page */
  .casal-hero-name { font-size: 42px; }
  .casal-hero-title { font-size: 18px; }
  .casal-questions li { font-size: 17px; }
  .casal-reassurance { font-size: 17px; }
  .casal-text { font-size: 17px; }
  .casal-subheading { font-size: 24px; }
  .casal-tag { font-size: 14px; padding: 8px 16px; }

  /* Page links */
  .page-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Footer */
  .footer { padding: 40px 0 32px; }
  .footer-name { font-size: 24px; }
  .footer-title { font-size: 28px; }
  .footer-tagline { font-size: 14px; }
}
