:root {
  --bg: #fcfaf8;
  --bg-soft: #f8f0f4;
  --bg-section: #f5ede3;
  --card: #ffffff;
  --text: #2f2a28;
  --text-soft: #6e645b;
  --green: #0f7b4d;
  --green-dark: #0a5c39;
  --green-soft: #dff1e8;
  --fuchsia: #c81f72;
  --fuchsia-dark: #a6175c;
  --fuchsia-soft: #f7d7e8;
  --gold: #d4a437;
  --gold-dark: #b38722;
  --gold-soft: #f5e6bc;
  --border: #eadfd6;
  --shadow: 0 12px 30px rgba(70, 50, 30, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #fff7fb 0%, #f3eaf3 40%, #eaf5ef 100%);
  color: var(--text);
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p,
a,
li,
input,
button {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-sm {
  padding: 64px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-title span {
  color: var(--fuchsia);
  font-style: italic;
}

.section-subtitle {
  max-width: 1400px;
  margin-bottom: 36px;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--fuchsia);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: var(--fuchsia-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 250, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.logo-texto {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

    .logo-texto span {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--green);
    }


.logo-texto small {
  margin-top: 8px;
  padding-left: 1.15rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--text-soft);
  font-weight: 700;
}

.menu a:hover {
  color: var(--fuchsia);
}

.hero {
  background:
    radial-gradient(circle at top left, #fff1f8 0%, transparent 28%),
    linear-gradient(135deg, #ffe3ef 0%, #ffd6e6 40%, #fff2da 100%);
  padding: 72px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.hero h1 .accent {
  color: var(--fuchsia);
  font-style: italic;
}

.hero p {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.hero-media {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.about-section {
  background: linear-gradient(to bottom, #fffaf8, #f9f1f5);
}

.about-wrap,
.mission-wrap,
.article-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.about-card,
.mission-card,
.article-card,
.contact-card {
  padding: 42px 34px;
  border-radius: 28px;
}

.about-card {
  background: rgba(255, 255, 255, 0.94);
}

.about-lead,
.article-note {
  font-family: "Playfair Display", serif;
}

.about-lead {
  margin-bottom: 20px;
  color: var(--fuchsia-dark);
  font-size: 1.22rem;
  line-height: 1.6;
}

.about-card p,
.mission-card p,
.intro-box p,
.article-card p {
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.9;
}

.about-card p:last-child,
.mission-card p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  color: var(--green-dark);
  font-weight: 700;
}

.mission-section {
  background: linear-gradient(to bottom, #fffdfb, #f8eff3);
}

.mission-card {
  margin-bottom: 26px;
}

.mission-heading {
  margin-bottom: 16px;
  color: var(--fuchsia-dark);
  font-size: 1.6rem;
}

.values-heading {
  margin-bottom: 20px;
  color: var(--fuchsia-dark);
  font-size: 1.6rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  padding: 24px;
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-soft);
}

.value-card-wide {
  grid-column: 1 / -1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.intro-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.intro-box {
  padding: 34px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.path {
  text-align: center;
  background: linear-gradient(to bottom, #fffdfb, #fcf7f1);
}

.path-grid,
.symptoms-grid,
.testimonials-grid,
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mini-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.mini-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.icon-badge {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-bottom: 12px;
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 700;
}

.mini-card h3,
.symptom-card h3,
.resource h3,
.contact-item h3 {
  font-size: 1.18rem;
}

.mini-card h3 {
  margin-bottom: 8px;
}

.mini-card p,
.symptom-card p,
.resource p,
.testimonial p,
.contact-item a,
.contact-item p,
.contact-lead {
  color: var(--text-soft);
}

.mini-card p,
.symptom-card p,
.resource p,
.testimonial p {
  font-size: 0.95rem;
}

.link-arrow {
  margin-top: auto;
  color: var(--fuchsia);
  font-size: 0.95rem;
  font-weight: 700;
}

.symptoms {
  background: var(--bg-section);
}

.symptom-card {
  padding: 24px;
  border-top: 4px solid var(--gold);
}

.symptom-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.25rem;
}

.testimonial {
  position: relative;
  padding: 26px;
}

.quote-mark {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.testimonial strong {
  color: var(--fuchsia-dark);
  font-size: 0.92rem;
}

.resource {
  padding: 24px;
}

.resource .mini-label,
.article-meta,
.product-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource .mini-label {
  margin-bottom: 12px;
}

.products {
  background: linear-gradient(to bottom, #fffdfb, #f9f3f6);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.product-card {
  padding: 22px;
  border-bottom: 4px solid var(--green);
}

.product-tag {
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.72rem;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.product-card p {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 700;
}

.mini-btn {
  padding: 10px 14px;
  background: var(--fuchsia);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.mini-btn:hover {
  background: var(--fuchsia-dark);
}

.article-section {
  background: linear-gradient(to bottom, #fffdfb, #f8f0f4);
}

.article-meta {
  margin-bottom: 14px;
  padding: 8px 14px;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.76rem;
}

.article-card h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-card .article-intro {
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-card h3 {
  margin: 30px 0 14px;
  color: var(--fuchsia-dark);
  font-size: 1.45rem;
}

.article-card ul {
  margin: 10px 0 20px 22px;
  color: var(--text-soft);
}

.article-card li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.article-note {
  margin-top: 26px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.contact-section {
  background: linear-gradient(to bottom, #fffaf8, #f7eef3);
}

.contact-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.contact-lead {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.04rem;
  line-height: 1.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.contact-item {
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--fuchsia-soft), var(--gold-soft));
  border-radius: 999px;
  color: var(--fuchsia-dark);
}

.contact-item h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
}

.contact-item a {
  line-height: 1.7;
}

.contact-item a:hover {
  color: var(--fuchsia);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.instagram-mini {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--fuchsia-dark);
}

footer {
  background: #4d4138;
  color: #f4ede7;
  padding: 42px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}

.footer-brand h3 {
  margin-bottom: 8px;
  color: #fff;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: #d8cfc7;
  font-size: 0.94rem;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 1rem;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfc2b5;
  font-size: 0.9rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(20, 90, 45, 0.22);
  color: #fff;
}

.whatsapp-float:hover {
  background: #1faa53;
  color: #fff;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .footer-grid,
  .path-grid,
  .symptoms-grid,
  .testimonials-grid,
  .resources-grid,
  .products-grid,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    justify-items: stretch;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0 16px;
  }

  .hero-grid,
  .intro-grid,
  .path-grid,
  .symptoms-grid,
  .testimonials-grid,
  .resources-grid,
  .products-grid,
  .footer-grid,
  .contact-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-media img {
    height: 320px;
  }

  .mini-card img {
    height: 360px;
  }

  .about-card,
  .mission-card,
  .article-card,
  .contact-card {
    padding: 28px 22px;
  }

  .intro-photo {
    height: 320px;
  }

  .intro-photo img {
    object-fit: contain;
  }

  .logo-texto span {
    font-size: 1.8rem;
  }

  .logo-texto small {
    padding-left: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
