:root {
  --navy: #0b4570;
  --navy-deep: #083452;
  --pink: #f6a3c4;
  --pink-strong: #e85a9b;
  --rose: #ffd6e6;
  --sky: #a8d1f0;
  --sky-strong: #6fb6e7;
  --mint: #d9f1f2;
  --white: #ffffff;
  --ink: #0f2f4a;
  --beige-text: #24364a;
  --muted: #4f667a;
  --shadow: 0 22px 60px rgba(11, 69, 112, 0.18);
  --shadow-soft: 0 18px 40px rgba(232, 90, 155, 0.18);
  --whatsapp: #25d366;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(246, 163, 196, 0.2) 0%, rgba(246, 163, 196, 0.2) 50%, rgba(168, 209, 240, 0.2) 50%, rgba(168, 209, 240, 0.2) 100%);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 500;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.28), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.25), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.container {
  width: min(1320px, 94%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #f6a3c4 0%, #f6a3c4 50%, #a8d1f0 50%, #a8d1f0 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--white);
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: 0.4px;
}

.logo img {
  width: clamp(52px, 4.2vw, 68px);
  height: auto;
  object-fit: contain;
  filter: none;
  background: var(--white);
  border: 0.5px solid rgba(15, 79, 124, 0.35);
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(15, 79, 124, 0.15);
}

.main-nav {
  margin-left: auto;
}


.header-spacer {
  width: 1px;
}
.menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 700;
  color: var(--white);
}

.has-submenu {
  position: relative;
}

.submenu-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 6px 0;
  position: relative;
}

.submenu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-strong), var(--sky-strong));
  transition: width 0.25s ease;
}

.submenu-toggle[aria-expanded="true"]::after {
  width: 100%;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  background: linear-gradient(180deg, rgba(247, 168, 197, 0.9), rgba(169, 207, 238, 0.9));
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 79, 124, 0.15);
  display: none;
  z-index: 20;
  text-align: center;
}

.submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
}

.submenu a:hover {
  background: rgba(255, 255, 255, 0.5);
}

.submenu a:hover {
  background: rgba(247, 168, 197, 0.2);
}

.submenu.open {
  display: grid;
  gap: 6px;
}

.menu a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.2s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-strong), var(--sky-strong));
  transition: width 0.25s ease;
}

.menu a:hover::after,
.menu a:focus::after,
.menu a.active::after {
  width: 100%;
}

.menu a:hover,
.menu a:focus,
.menu a.active {
  color: #000000;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 10px;
  color: var(--white);
  display: none;
  gap: 5px;
  align-content: center;
  justify-items: start;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #0f4f7c;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 48, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-family: "Sora", "Manrope", sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--pink-strong);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(228, 106, 165, 0.42);
}

.btn.whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

.btn.primary:hover,
.btn.whatsapp:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4);
}

.btn.ghost {
  border-color: rgba(15, 79, 124, 0.25);
  color: var(--navy);
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(247, 168, 197, 0.2);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 120px 0;
}

.scroll-hint {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0b2f4a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) brightness(1);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.85);
  opacity: 0;
  animation: heroFade 18s infinite;
}

.hero-slide.slide-1 {
  background-image: linear-gradient(rgba(247, 168, 197, 0.35), rgba(169, 207, 238, 0.35)), url("assets/hero-1.svg");
  animation-delay: 0s;
}

.hero-slide.slide-2 {
  background-image: linear-gradient(rgba(247, 168, 197, 0.3), rgba(169, 207, 238, 0.3)), url("assets/hero-2.svg");
  animation-delay: 6s;
}

.hero-slide.slide-3 {
  background-image: linear-gradient(rgba(247, 168, 197, 0.3), rgba(169, 207, 238, 0.3)), url("assets/hero-3.svg");
  animation-delay: 12s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  transform: translateY(-28px);
}

.hero-text {
  max-width: 620px;
  color: #0b2f4a;
  text-align: center;
  margin: 0 auto;
}

.hero-text::after {
  content: "";
  display: block;
  margin-top: 26px;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-strong), var(--sky-strong));
}

.hero-quote {
  max-width: 640px;
  padding: 34px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 79, 124, 0.12);
  box-shadow: 0 18px 45px rgba(15, 79, 124, 0.15);
  backdrop-filter: blur(6px);
  margin-top: -18px;
}

.hero-quote h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  letter-spacing: -0.015em;
  color: #0b4570;
}

.hero-quote p {
  margin-top: 12px;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 600;
  color: #c84a86;
}

.hero-quote::after {
  width: 72px;
  margin: 16px auto 0;
  height: 3px;
  background: linear-gradient(90deg, #e85a9b, #6fb6e7);
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #0b3e63;
  font-weight: 600;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Manrope", sans-serif;
  color: #0b2f4a;
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.15rem;
  color: #254b68;
  margin-bottom: 28px;
  font-weight: 500;
}

.has-video .hero-slide {
  display: none;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.55);
  color: #0b2f4a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 22px 0 0;
  justify-content: center;
}

.hero-actions .btn {
  min-width: 240px;
}

.btn.btn-blue {
  background: var(--sky-strong);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(111, 182, 231, 0.4);
}

.btn.btn-blue:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 40px rgba(111, 182, 231, 0.45);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(247, 168, 197, 0.28);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 120px 0;
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.section.tone-pink {
  background: linear-gradient(120deg, rgba(246, 163, 196, 0.34), rgba(255, 221, 236, 0.22));
  color: var(--ink);
}

.section.tone-blue {
  background: linear-gradient(120deg, rgba(168, 209, 240, 0.35), rgba(246, 163, 196, 0.12));
  color: var(--ink);
}

.section.tone-rose {
  background: linear-gradient(120deg, rgba(255, 232, 244, 0.95), rgba(246, 163, 196, 0.18));
  color: var(--ink);
}

.section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, 85%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 79, 124, 0.2), transparent);
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 36px;
  background: radial-gradient(120% 120% at 50% -10%, rgba(255, 255, 255, 0.6), transparent 60%);
  pointer-events: none;
}

.section.tone-pink .section-heading h2,
.section.tone-blue .section-heading h2,
.section.tone-rose .section-heading h2,
.section.tone-pink .section-heading p,
.section.tone-blue .section-heading p,
.section.tone-rose .section-heading p,
.section.tone-pink .section-heading .eyebrow,
.section.tone-blue .section-heading .eyebrow,
.section.tone-rose .section-heading .eyebrow {
  color: var(--ink);
}

.section.tone-pink .two-cols > .reveal,
.section.tone-pink .two-cols > .reveal h2 {
  color: var(--ink);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-heading h2::after {
  content: "";
  display: block;
  margin-top: 12px;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-strong), var(--sky-strong));
  margin-left: auto;
  margin-right: auto;
}

.manifesto {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 79, 124, 0.12);
  box-shadow: var(--shadow-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1c3a56;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  align-items: center;
}

#quem-somos .two-cols {
  grid-template-columns: 1fr 1fr;
}

.story-stack {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.two-cols > .reveal {
  text-align: justify;
  justify-self: center;
  max-width: 560px;
}

.two-cols > .reveal h2,
.two-cols > .reveal .eyebrow {
  text-align: left;
}

#quem-somos .logo-full {
  margin: 10px auto 18px;
}

#quem-somos h2 {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

#quem-somos .story-card {
  max-width: 560px;
  padding: 26px;
}

.two-cols > .reveal h2 {
  margin-top: 8px;
  margin-bottom: 16px;
}

.two-cols > .reveal p + p {
  margin-top: 14px;
}

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

.logo-full {
  display: block;
  width: min(360px, 92%);
  margin: 10px auto 18px;
}

.story-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 79, 124, 0.1);
  display: grid;
  gap: 16px;
  color: var(--ink);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: justify;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(120, 182, 230, 0.22);
}

.story-card h3,
.pro-card h3,
.contact-card h2,
.contact-form label {
  color: var(--navy);
}

.pros-list {
  display: grid;
  gap: 48px;
}

.pro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  align-items: center;
  background: var(--white);
  padding: 44px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 79, 124, 0.1);
  color: var(--ink);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(120, 182, 230, 0.22);
}

.pro-text {
  max-width: 560px;
  text-align: justify;
  align-self: stretch;
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding: 4px 6px;
}

.pro-text h3 {
  text-align: center;
  margin-bottom: 16px;
}

.pro-text p {
  text-align: justify;
  line-height: 1.75;
  font-size: 1.02rem;
  color: #23384f;
}

.pro-text p + p {
  margin-top: 14px;
}

.pro-card:nth-child(even) {
  direction: rtl;
}

.pro-card:nth-child(even) .pro-text {
  direction: ltr;
}

.pro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 20px;
}

.pro-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  justify-self: center;
  border-radius: 26px;
  padding: 6px;
  background: linear-gradient(160deg, rgba(247, 168, 197, 0.55), rgba(169, 207, 238, 0.35));
  border: 1px solid rgba(15, 79, 124, 0.18);
  box-shadow: 0 20px 50px rgba(15, 79, 124, 0.15);
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
  align-self: stretch;
}

.pro-photo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.contact-modern {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.contact-links {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.contact-logo-full {
  width: min(320px, 88%);
  margin: 0 auto 10px;
}

.linktree {
  display: grid;
  gap: 32px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px 16px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(15, 79, 124, 0.12);
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: visible;
  min-height: 96px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(120, 182, 230, 0.28);
}

.link-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.link-card .link-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.link-card .link-desc {
  color: rgba(24, 50, 74, 0.7);
  font-weight: 500;
}

.link-card.has-left {
  padding-left: 136px;
}

.link-card.has-right {
  padding-right: 136px;
}

.link-card.accent-map {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(226, 243, 255, 0.8));
  border-color: rgba(68, 157, 219, 0.25);
}

.link-card.accent-whatsapp {
  background: linear-gradient(120deg, rgba(229, 255, 240, 0.9), rgba(210, 255, 227, 0.7));
  border-color: rgba(37, 211, 102, 0.3);
}

.link-card.accent-instagram {
  background: linear-gradient(120deg, rgba(255, 226, 241, 0.85), rgba(235, 226, 255, 0.7));
  border-color: rgba(224, 72, 141, 0.32);
}

.link-card.accent-google {
  background: linear-gradient(120deg, rgba(232, 244, 255, 0.9), rgba(255, 243, 224, 0.75));
  border-color: rgba(60, 120, 185, 0.28);
}

.link-card.accent-pink {
  background: linear-gradient(120deg, rgba(246, 163, 196, 0.35), rgba(255, 255, 255, 0.85));
  border-color: rgba(232, 90, 155, 0.3);
}

.link-card.accent-blue {
  background: linear-gradient(120deg, rgba(169, 207, 238, 0.45), rgba(255, 255, 255, 0.9));
  border-color: rgba(111, 182, 231, 0.3);
}

.link-badge {
  position: absolute;
  top: 8px;
  width: min(66px, 27%);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 14px 26px rgba(15, 79, 124, 0.25));
  pointer-events: none;
}

.link-badge.badge-left {
  left: 16px;
}

.link-badge.badge-right {
  right: 16px;
}

@media (max-width: 900px) {
  .contact-links {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .link-badge {
    width: min(70px, 28%);
    top: 8px;
  }

  .link-card.has-left {
    padding-left: 120px;
  }

  .link-card.has-right {
    padding-right: 120px;
  }
}

@media (max-width: 640px) {
  .linktree {
    gap: 30px;
  }

  .link-card {
    padding: 16px 26px 14px;
    min-height: 88px;
  }

  .link-card.has-left {
    padding-left: 114px;
  }

  .link-card.has-right {
    padding-right: 114px;
  }

  .link-badge {
    width: min(68px, 29%);
    top: 8px;
  }

  .link-badge.badge-left {
    left: 16px;
  }

  .link-badge.badge-right {
    right: 16px;
  }

  .link-desc {
    font-size: 0.95rem;
  }
}

.contact-map {
  display: grid;
  justify-items: end;
  align-self: center;
}

.map-card {
  margin-right: -24px;
}

.map-card {
  width: min(640px, 100%);
  background: var(--white);
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(15, 79, 124, 0.12);
  box-shadow: 0 28px 70px rgba(15, 79, 124, 0.18);
  display: grid;
  gap: 18px;
}

.map-frame {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 79, 124, 0.14);
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 236, 248, 0.7));
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  width: 58px;
  height: 58px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(233, 245, 255, 0.9));
  border-radius: 16px;
  border: 2px solid rgba(15, 79, 124, 0.18);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 38px rgba(15, 79, 124, 0.28);
  padding: 8px;
}

.map-pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1px solid rgba(15, 79, 124, 0.08);
}

.map-meta {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
}

.map-meta span {
  color: rgba(24, 50, 74, 0.7);
  font-weight: 500;
}

.instagram-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.instagram-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(380px, 1fr);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.instagram-track::-webkit-scrollbar {
  height: 0;
}

.insta-slide {
  scroll-snap-align: center;
  background: var(--white);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 79, 124, 0.12);
  display: grid;
  gap: 12px;
  min-width: 0;
}

.insta-slide.delay-1 {
  --delay: 0.05s;
}

.insta-slide.delay-2 {
  --delay: 0.1s;
}

.insta-slide.delay-3 {
  --delay: 0.15s;
}

.insta-slide.delay-4 {
  --delay: 0.2s;
}

.insta-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--navy);
}

.insta-toolbar a {
  color: var(--pink-strong);
  font-weight: 600;
}

.insta-actions {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.instagram-track .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid rgba(15, 79, 124, 0.12) !important;
}

.instagram-track iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy);
  font-size: 1.6rem;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(120, 182, 230, 0.35);
}

.carousel-btn:active {
  transform: translateY(1px);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(120, 182, 230, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  background: var(--pink-strong);
  transform: scale(1.25);
}

.inline-link {
  color: var(--pink-strong);
  font-weight: 600;
}

.site-footer {
  background: linear-gradient(90deg, #f6a3c4 0%, #f6a3c4 50%, #a8d1f0 50%, #a8d1f0 100%);
  color: var(--white);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  color: var(--white);
}

.footer-logo img {
  width: clamp(52px, 4.2vw, 68px);
  height: auto;
  filter: none;
  background: var(--white);
  border: 0.5px solid rgba(15, 79, 124, 0.35);
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(15, 79, 124, 0.15);
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
  z-index: 120;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulseGlow 2.2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.5);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
    opacity: 0.75;
  }
  60% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.75;
  }
}

@media (max-width: 900px) {
  #quem-somos .two-cols,
  .two-cols {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }

  .contact-map {
    display: none;
  }

  .contact-modern {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-map {
    justify-items: center;
  }

  .map-card {
    width: min(560px, 100%);
  }
  .story-stack {
    justify-items: center;
  }

  #quem-somos .story-card {
    width: min(560px, 100%);
  }
  .header-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
  }

  .main-nav {
    width: auto;
    order: 1;
  }

  
.header-spacer {
  width: 1px;
}
.menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(74vw, 300px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, rgba(247, 168, 197, 0.95), rgba(169, 207, 238, 0.95));
    padding: 90px 18px 24px;
    box-shadow: 0 30px 80px rgba(15, 79, 124, 0.35);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    border-radius: 0 24px 24px 0;
    z-index: 110;
    align-items: center;
    text-align: center;
  }

  .submenu {
    position: static;
    min-width: auto;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .submenu.open {
    display: grid;
    gap: 6px;
    justify-items: center;
  }

  .submenu a {
    width: 100%;
    text-align: center;
  }

  .submenu a {
    color: var(--white);
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: grid;
    margin-left: 0;
  }

  .pro-card {
    grid-template-columns: 1fr;
    text-align: center;
    direction: ltr;
    grid-template-areas:
      "title"
      "photo"
      "text";
  }

  .pro-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    grid-area: text;
  }

  .pro-text h3 {
    margin-bottom: 8px;
  }

  .pro-card:nth-child(even) {
    direction: ltr;
  }

  .pro-card:nth-child(even) .pro-text {
    direction: ltr;
  }

  .pro-photo {
    max-width: 360px;
    grid-area: photo;
    justify-self: center;
    margin: 8px auto 12px;
  }

  .scroll-hint {
    display: flex;
    justify-content: center;
    position: sticky;
    bottom: 18px;
    margin-top: 18px;
    z-index: 5;
  }

  .scroll-hint span {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 79, 124, 0.18);
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 1.4rem;
    animation: scrollPulse 1.6s ease-in-out infinite;
    box-shadow: 0 12px 24px rgba(15, 79, 124, 0.2);
  }

  .logo {
    order: 2;
    margin-left: 12px;
  }

  .menu a,
  .submenu-toggle {
    color: var(--navy);
  }

  .menu a,
  .submenu-toggle {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 100vh;
  }

  .section {
    padding: 90px 0;
    min-height: 100vh;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 92%);
  }

  .header-inner {
    gap: 12px;
    justify-content: flex-start;
    padding: 12px 0;
  }

  .main-nav {
    order: 1;
    width: auto;
  }

  
.header-spacer {
  width: 1px;
}
.menu-toggle {
    padding: 8px 10px;
    margin-left: 0;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 130;
  }

  .logo {
    order: 2;
    margin-left: 56px;
  }

  .main-nav,
  .menu-toggle {
    align-self: center;
  }

  .menu {
    width: min(74vw, 300px);
  }

  .site-header .btn.whatsapp {
    display: none;
  }

  h1 {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
    font-size: 0.95rem;
    display: inline-flex;
    z-index: 140;
  }

  .site-footer,
  .footer-grid,
  .footer-bottom {
    text-align: center;
    align-items: center;
    justify-items: center;
  }

  .instagram-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    justify-self: center;
  }

  .instagram-track {
    grid-auto-columns: 92%;
  }
}
