:root {
  --orange: #F28C28;
  --orange-2: #F7B45C;
  --orange-soft: #FFF1E3;
  --sky: #6EC1E4;
  --sky-soft: #EAF8FE;
  --blue: #3A6EA5;
  --blue-soft: #EEF5FD;
  --violet: #8E6BBE;
  --violet-soft: #F4EEFB;
  --green: #A7C957;
  --green-soft: #F2F8E7;
  --dark: #24313F;
  --text: #576473;
  --muted: #7C8997;
  --bg: #FFFDF9;
  --soft: #FBF7F1;
  --line: #E8DED0;
  --white: #FFFFFF;
  --shadow: 0 20px 45px rgba(36, 49, 63, 0.09);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 222, 208, 0.85);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-horizontal {
  gap: 14px;
}

.brand-logo-horizontal {
  width: 18%;
  max-width: 210px;
  min-width: 160px;
  display: flex;
  align-items: center;
}

.brand-logo-horizontal img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-highlight {
  color: var(--orange);
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.accent-orange {
  color: var(--orange);
  font-weight: 800;
}

.agenda-intro {
  max-width: 100%;
}

.agenda-intro h2 {
  max-width: 100%;
  margin-bottom: 12px;
}

.agenda-intro p {
  max-width: 1120px;
  font-size: 1.08rem;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--dark);
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  transition: all 0.3s ease;
}

.menu-toggle .fa-times {
  display: none;
}

.menu-toggle.active .fa-bars {
  display: none;
}

.menu-toggle.active .fa-times {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

nav a {
  color: var(--dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line);
}

.hero {
  padding: 28px 0 44px;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.18), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(110, 193, 228, 0.16), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 42px;
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(167, 201, 87, 0.18), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 18px;
}

h1,
h2,
h3,
h4 {
  color: var(--dark);
  margin-top: 0;
}

h1 {
  font-size: clamp(1.85rem, 3.9vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 760px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.04rem;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
  max-width: 620px;
}

.tag {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  text-align: center;
  font-weight: 800;
  color: var(--dark);
  background: #fff;
  font-size: 1rem;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.tag:nth-child(1) {
  background: var(--orange-soft);
}

.tag:nth-child(2) {
  background: var(--sky-soft);
}

.tag:nth-child(3) {
  background: var(--blue-soft);
}

.tag:nth-child(4) {
  background: var(--green-soft);
}

.tag:nth-child(5) {
  background: var(--violet-soft);
}

.tag:nth-child(6) {
  background: var(--orange-soft);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 145px 65vh;
  gap: 14px;
  width: 100%;
}

.hero-photo {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

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

.hero-photo-tall {
  height: 100%;
}

.hero-photo.large {
  height: 100%;
}

.hero-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

section {
  padding: 78px 0;
}

.soft-section {
  background: var(--soft);
}

.section-title {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-title p {
  margin-top: -4px;
  font-size: 1.03rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 28px;
}

.split > * {
  height: 100%;
}

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

.services-grid,
.audiences-grid,
.why-grid,
.testimonials-grid,
.news-grid,
.team-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audiences-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.stat,
.experience-box,
.method-box,
.testimonial,
.news-card,
.contact-box,
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-self: stretch;
}

.card,
.experience-box,
.method-box,
.testimonial,
.news-card,
.contact-box,
.team-card {
  padding: 24px 24px 22px;
}

.stat {
  padding: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--dark);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.accent-child {
  border-top: 6px solid var(--orange);
}

.accent-teen {
  border-top: 6px solid var(--sky);
}

.accent-family {
  border-top: 6px solid var(--blue);
}

.accent-older {
  border-top: 6px solid var(--violet);
}

.accent-green {
  border-top: 6px solid var(--green);
}

.inline-media {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 18px;
  align-items: center;
}

.inline-media.reverse {
  grid-template-columns: 130px 1fr;
}

.mini-photo {
  width: 130px;
  height: 130px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  flex-shrink: 0;
  border: 4px solid #fff;
  background: linear-gradient(180deg, #ffffff 0%, #faf7fd 100%);
}

.mini-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(142, 107, 190, 0.08);
  pointer-events: none;
}

.mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-photo.pill {
  border-radius: 999px;
  height: 110px;
}

.mini-photo.blob {
  border-radius: 46% 54% 55% 45% / 42% 42% 58% 58%;
}


.process-points {
  margin-top: 18px;
}

.process-point strong {
  letter-spacing: 0.01em;
}


.purpose-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
}

.purpose-grid {
  display: grid;
  gap: 20px;
  align-content: start;
}

.purpose-top {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}

.purpose-lead {
  font-size: 1.06rem;
  margin: 0;
}

.purpose-points {
  display: grid;
  gap: 12px;
}

.purpose-point {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: 14px 16px;
}

.purpose-point strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.purpose-point span {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.calendar-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  margin-top: 18px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: var(--dark);
  font-weight: 800;
}

.calendar-days,
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.calendar-days span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.calendar-dates span {
  padding: 12px 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.94rem;
}

.calendar-dates .active {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: #fff;
  border-color: var(--orange);
  font-weight: 800;
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.slot {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 700;
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  background: linear-gradient(180deg, #273849 0%, #223140 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 26px 0 22px;
  margin-top: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-mark {
  width: 190px;
}

.footer-mark svg {
  width: 100%;
  height: auto;
  display: block;
}

.small {
  font-size: 0.9rem;
}

.whatsapp-inline {
  margin-top: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ae06d, #14a090);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float i {
  line-height: 1;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 1080px) {

  .hero-card,
  .services-grid,
  .audiences-grid,
  .why-grid,
  .testimonials-grid,
  .news-grid,
  .team-grid,
  .stats,
  .tag-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .hero-visual {
    grid-template-rows: 130px 180px;
    height: auto;
    gap: 10px;
  }

  .hero-photo-tall {
    height: 100%;
  }

  .hero-photo.large {
    height: 100%;
  }

  .tag-row {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-subtitle {
    white-space: normal;
  }

  .brand-logo-horizontal {
    width: 50%;
    max-width: 180px;
    min-width: 140px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1000;
  }

  nav.active {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  nav ul li a {
    font-size: 1.6rem;
    font-weight: 800;
  }

  .nav {
    padding: 14px 0;
  }

  .hero-card {
    padding: 28px 22px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-photo.large {
    grid-column: span 1;
  }

  .tag-row,
  .services-grid,
  .audiences-grid,
  .why-grid,
  .testimonials-grid,
  .news-grid,
  .team-grid,
  .stats {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .inline-media,
  .inline-media.reverse {
    grid-template-columns: 1fr;
  }

  .mini-photo {
    width: 100%;
    max-width: 160px;
  }

  .purpose-top {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    font-size: 30px;
  }
}