:root {
  --bg: #f5f8f7;
  --surface: #ffffff;
  --surface-soft: #eef4f2;
  --text: #20312e;
  --muted: #657773;
  --primary: #376c65;
  --primary-dark: #254d48;
  --primary-deep: #183d39;
  --accent: #bbd7cf;
  --accent-warm: #e7ddd3;
  --line: rgba(32, 49, 46, .12);
  --shadow: 0 24px 60px rgba(39, 73, 68, .12);
  --shadow-soft: 0 14px 38px rgba(39, 73, 68, .08);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }

.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 110px 0; }

.ambient {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .42;
  pointer-events: none;
}
.ambient-one { width: 360px; height: 360px; background: #d6e7e2; top: 5vh; right: -120px; }
.ambient-two { width: 310px; height: 310px; background: #eadfd4; left: -140px; top: 54vh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(245, 248, 247, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(33, 58, 54, .05);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 245px; }
.brand-mark { width: 44px; height: 44px; color: var(--primary); display: grid; place-items: center; }
.brand-mark svg { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-text strong { font-size: 1.12rem; letter-spacing: .12em; }
.brand-text small { margin-top: 5px; font-size: .72rem; color: var(--muted); letter-spacing: .02em; }
.primary-nav { display: flex; align-items: center; gap: 29px; font-size: .91rem; font-weight: 650; }
.primary-nav > a:not(.nav-cta) { position: relative; color: #405450; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.primary-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { padding: 12px 20px; border-radius: 999px; background: var(--primary); color: white; box-shadow: 0 10px 22px rgba(55, 108, 101, .2); transition: .25s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--primary-dark); }
.menu-toggle { display: none; border: 0; background: transparent; width: 45px; height: 45px; border-radius: 50%; padding: 11px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--text); margin: 5px 0; transition: .25s ease; border-radius: 99px; }

.hero { padding-top: 76px; min-height: calc(100vh - 84px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 76px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.eyebrow > span { width: 31px; height: 1px; background: currentColor; }
.eyebrow.light { color: #d8ebe6; }
.hero h1, .section-heading h2, .anxiety-copy h2, .age-copy h2, .facebook-card h2, .contact-copy h2 {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(3.3rem, 6vw, 6.25rem); max-width: 730px; }
.hero h1 em { color: var(--primary); font-style: italic; }
.hero-lead { max-width: 660px; margin: 28px 0 0; font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; border-radius: 999px; font-size: .92rem; font-weight: 750; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 15px 30px rgba(55, 108, 101, .22); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 19px 36px rgba(55, 108, 101, .27); }
.btn-secondary { background: rgba(255,255,255,.68); border: 1px solid var(--line); color: var(--text); }
.btn-secondary:hover { background: white; box-shadow: var(--shadow-soft); }
.hero-meta { display: flex; gap: 36px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta > div { display: flex; align-items: center; gap: 12px; }
.meta-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-soft); color: var(--primary); font-weight: 800; }
.hero-meta p { margin: 0; display: flex; flex-direction: column; }
.hero-meta strong { font-size: .92rem; }
.hero-meta small { color: var(--muted); font-size: .75rem; margin-top: 2px; }

.hero-visual { min-height: 610px; display: grid; place-items: center; }
.visual-shell { position: relative; width: min(100%, 510px); aspect-ratio: .9; }
.visual-shell::before { content: ""; position: absolute; width: 68%; height: 68%; border-radius: 50%; background: radial-gradient(circle, rgba(187,215,207,.55), rgba(187,215,207,0)); top: 12%; left: 15%; }
.visual-orbit { position: absolute; border: 1px solid rgba(55,108,101,.13); border-radius: 50%; animation: spin 22s linear infinite; }
.orbit-a { width: 86%; height: 86%; top: 5%; left: 5%; }
.orbit-b { width: 66%; height: 66%; top: 16%; left: 17%; animation-direction: reverse; animation-duration: 15s; }
.orbit-a::after, .orbit-b::after { content: ""; position: absolute; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; top: -4px; left: 50%; box-shadow: 0 0 0 8px rgba(55,108,101,.08); }
.main-card { position: absolute; inset: 54px 50px 50px 54px; border-radius: 46% 54% 42% 58% / 48% 42% 58% 52%; background: linear-gradient(155deg, #edf5f2, #dfece8); box-shadow: var(--shadow); overflow: hidden; color: var(--primary); }
.line-art { height: 100%; display: grid; place-items: center; }
.line-art svg { width: 86%; height: 86%; }
.visual-message { position: absolute; left: 34px; bottom: 32px; padding: 14px 18px; border-radius: 16px; background: rgba(255,255,255,.86); backdrop-filter: blur(10px); box-shadow: 0 12px 30px rgba(43,75,70,.1); }
.visual-message span { display: block; color: var(--muted); font-size: .71rem; text-transform: uppercase; letter-spacing: .12em; }
.visual-message strong { display: block; margin-top: 4px; color: var(--text); font-family: Georgia, serif; font-size: 1.17rem; }
.float-card { position: absolute; z-index: 4; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 17px 38px rgba(39,73,68,.12); border-radius: 18px; color: var(--text); animation: float 5s ease-in-out infinite; }
.float-card strong { display: block; font-size: .83rem; }
.float-card span { display: block; font-size: .72rem; color: var(--muted); }
.card-one { top: 64px; right: -8px; padding: 13px 17px 13px 36px; }
.card-one .dot { position: absolute; left: 15px; top: 17px; width: 9px; height: 9px; border-radius: 50%; background: var(--primary); }
.card-two { left: 5px; bottom: 102px; padding: 14px 18px; animation-delay: -1.7s; }
.card-three { right: 22px; bottom: 24px; padding: 13px 18px; animation-delay: -3s; }

.intro-section { padding-top: 75px; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading h2, .age-copy h2, .facebook-card h2 { font-size: clamp(2.45rem, 4vw, 4.25rem); }
.intro-copy { max-width: 650px; }
.intro-copy p { margin: 0 0 19px; color: var(--muted); font-size: 1.12rem; line-height: 1.82; }
.intro-copy strong { color: var(--text); }

.anxiety-section { padding-top: 78px; }
.anxiety-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 55px; align-items: center; min-height: 530px; padding: 72px; background: linear-gradient(135deg, var(--primary-deep), var(--primary)); color: #fff; border-radius: var(--radius-lg); box-shadow: 0 32px 70px rgba(32,77,72,.2); }
.anxiety-panel::before, .anxiety-panel::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); }
.anxiety-panel::before { width: 360px; height: 360px; top: -145px; right: 24%; }
.anxiety-panel::after { width: 520px; height: 520px; right: -260px; bottom: -300px; }
.anxiety-copy { position: relative; z-index: 2; }
.anxiety-copy h2 { font-size: clamp(3.1rem, 5vw, 5rem); }
.anxiety-copy p { max-width: 560px; color: rgba(255,255,255,.78); font-size: 1.1rem; margin-top: 24px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 26px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.focus-card { position: relative; z-index: 2; padding: 38px; border-radius: 27px; background: rgba(255,255,255,.93); color: var(--text); box-shadow: 0 25px 55px rgba(0,0,0,.14); transform: rotate(1.2deg); transition: transform .3s ease; }
.focus-card:hover { transform: rotate(0deg) translateY(-5px); }
.focus-icon { width: 68px; height: 68px; color: var(--primary); margin-bottom: 30px; }
.focus-icon svg { width: 100%; height: 100%; }
.focus-card > span { color: var(--primary); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.focus-card h3 { font-family: Georgia, serif; font-size: 2.25rem; line-height: 1.08; margin: 12px 0 15px; font-weight: 500; }
.focus-card p { margin: 0; color: var(--muted); }

.centered { text-align: center; max-width: 790px; margin: 0 auto 48px; }
.centered .eyebrow { justify-content: center; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card { position: relative; min-height: 350px; padding: 38px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.audience-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-number { position: absolute; right: 26px; top: 15px; font-family: Georgia, serif; font-size: 5rem; color: rgba(55,108,101,.07); }
.audience-icon { width: 62px; height: 62px; display: grid; place-items: center; background: var(--surface-soft); color: var(--primary); border-radius: 20px; }
.audience-icon svg { width: 34px; height: 34px; }
.audience-card h3 { margin: 54px 0 12px; font-family: Georgia, serif; font-size: 2.2rem; font-weight: 500; }
.audience-card p { color: var(--muted); max-width: 370px; margin: 0; }

.age-section { background: #eef4f2; }
.age-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: center; }
.age-copy p { color: var(--muted); max-width: 410px; font-size: 1.04rem; margin-top: 20px; }
.age-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.age-card { min-height: 300px; padding: 34px; border-radius: 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(55,108,101,.09); transition: .3s ease; }
.age-card:hover { background: #fff; transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.age-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); font-size: .75rem; color: var(--primary); font-weight: 800; }
.age-card h3 { font-family: Georgia, serif; font-size: 2rem; font-weight: 500; margin: 60px 0 12px; }
.age-card p { color: var(--muted); margin: 0; }

.modalities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.modality-card { min-height: 410px; display: flex; flex-direction: column; padding: 40px; border-radius: var(--radius-md); position: relative; overflow: hidden; transition: transform .3s ease; }
.modality-card:hover { transform: translateY(-7px); }
.modality-card::after { content: ""; position: absolute; right: -80px; bottom: -90px; width: 250px; height: 250px; border-radius: 50%; border: 1px solid currentColor; opacity: .09; }
.modality-presencial { background: var(--primary-deep); color: #fff; }
.modality-online { background: var(--accent-warm); color: var(--text); }
.modality-top { display: flex; justify-content: space-between; align-items: center; }
.modality-badge { border: 1px solid currentColor; opacity: .75; border-radius: 999px; padding: 7px 13px; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.modality-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; border: 1px solid currentColor; font-size: 1.2rem; opacity: .65; }
.modality-card h3 { font-family: Georgia, serif; font-size: 2.6rem; line-height: 1.1; font-weight: 500; margin: 70px 0 16px; }
.modality-card p { max-width: 420px; margin: 0; opacity: .76; }
.modality-card a { display: inline-flex; gap: 10px; align-items: center; margin-top: auto; font-weight: 800; }
.modality-card a span { transition: transform .2s ease; }
.modality-card a:hover span { transform: translateX(5px); }

.info-section { padding-top: 65px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.info-card { min-height: 310px; padding: 40px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.info-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--surface-soft); color: var(--primary); border-radius: 17px; font-size: 1.2rem; }
.info-label { display: block; color: var(--primary); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 800; margin-top: 34px; }
.info-card h3 { font-family: Georgia, serif; font-size: 2.15rem; font-weight: 500; margin: 12px 0 8px; }
.info-card p { color: var(--muted); margin: 0; }
.schedule-card { background: #f9fbfa; }
.schedule-times { display: flex; align-items: baseline; gap: 15px; flex-wrap: wrap; margin-top: 24px; }
.schedule-times strong { font-family: Georgia, serif; font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 500; }
.schedule-times span { color: var(--muted); }

.facebook-section { padding-top: 40px; }
.facebook-card { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; padding: 43px 48px; border: 1px solid var(--line); background: linear-gradient(120deg, #fff, #f0f5f4); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.facebook-symbol { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 24px; background: var(--primary); color: #fff; font-family: Georgia, serif; font-size: 3.8rem; line-height: 1; }
.facebook-card h2 { margin-top: 12px; font-size: clamp(2rem, 3vw, 3.2rem); }

.contact-section { padding-top: 50px; }
.contact-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; align-items: center; padding: 68px; border-radius: var(--radius-lg); background: linear-gradient(130deg, #244e49, #376c65); color: #fff; overflow: hidden; position: relative; }
.contact-panel::after { content: ""; position: absolute; right: -130px; top: -140px; width: 390px; height: 390px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.contact-copy { position: relative; z-index: 2; }
.contact-copy h2 { font-size: clamp(2.7rem, 4.4vw, 4.6rem); max-width: 720px; }
.contact-copy p { color: rgba(255,255,255,.72); margin: 20px 0 0; font-size: 1.03rem; }
.contact-action { position: relative; z-index: 2; padding: 36px; border-radius: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); }
.contact-action > span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.72); }
.phone-number { display: block; font-family: Georgia, serif; font-size: clamp(2rem, 3.4vw, 3rem); margin: 9px 0 24px; line-height: 1; }
.btn-light { background: #fff; color: var(--primary-dark); width: 100%; }

.site-footer { padding: 46px 0 95px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr auto; align-items: center; gap: 35px; padding-top: 35px; border-top: 1px solid var(--line); }
.footer-brand strong { font-family: Georgia, serif; font-size: 1.24rem; font-weight: 600; }
.footer-brand p { margin: 7px 0 0; color: var(--muted); font-size: .86rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 20px; color: var(--muted); font-size: .83rem; }
.footer-links a:hover { color: var(--primary); }
.footer-phone { font-weight: 800; color: var(--primary); }

.floating-contact { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; align-items: center; gap: 10px; min-height: 50px; padding: 0 18px; border-radius: 999px; background: var(--primary); color: #fff; box-shadow: 0 15px 35px rgba(37,77,72,.28); font-size: .86rem; font-weight: 800; transition: .25s ease; }
.floating-contact:hover { transform: translateY(-4px); background: var(--primary-dark); }
.floating-contact svg { width: 18px; height: 18px; }
.back-to-top { position: fixed; right: 27px; bottom: 86px; z-index: 899; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.92); color: var(--primary); border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; box-shadow: var(--shadow-soft); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: revealIn .72s ease both; }
.reveal-delay.is-visible { animation-delay: .10s; }

@keyframes revealIn { from { opacity: .01; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 1040px) {
  .primary-nav { gap: 19px; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(3rem, 6.8vw, 5.4rem); }
  .hero-visual { min-height: 540px; }
  .anxiety-panel { padding: 55px; }
  .contact-panel { padding: 55px; }
}

@media (max-width: 900px) {
  .section { padding: 85px 0; }
  .nav-wrap { min-height: 76px; }
  .menu-toggle { display: block; z-index: 1002; }
  .primary-nav { position: fixed; inset: 76px 16px auto 16px; display: flex; flex-direction: column; align-items: stretch; gap: 7px; padding: 18px; border: 1px solid var(--line); background: rgba(250,252,251,.98); backdrop-filter: blur(20px); border-radius: 20px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px) scale(.98); transition: .25s ease; }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .primary-nav a { padding: 13px 14px; border-radius: 12px; }
  .primary-nav a:not(.nav-cta):hover { background: var(--surface-soft); }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 65px; }
  .hero-grid, .two-col, .anxiety-panel, .age-layout, .contact-panel { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; text-align: left; }
  .hero-visual { min-height: 520px; margin-top: 15px; }
  .visual-shell { width: min(100%, 470px); }

  .two-col { gap: 32px; padding: 56px 0; }
  .intro-copy { max-width: none; }
  .anxiety-panel { gap: 40px; }
  .focus-card { max-width: 560px; }
  .age-layout { gap: 42px; }
  .contact-panel { gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-phone { justify-self: start; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 70px 0; }
  .brand { min-width: 0; }
  .brand-text small { display: none; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-meta { flex-direction: column; gap: 14px; align-items: flex-start; margin-top: 35px; }
  .hero-meta > div { width: 100%; padding: 12px; background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 14px; }
  .hero-visual { min-height: 440px; }
  .visual-shell { width: 100%; max-width: 390px; }
  .main-card { inset: 40px 25px 50px 25px; }
  .visual-message { left: 21px; bottom: 22px; }
  .card-one { right: -2px; top: 28px; }
  .card-two { left: -3px; bottom: 85px; }
  .card-three { right: 4px; bottom: 12px; }

  .section-heading h2, .age-copy h2 { font-size: clamp(2.25rem, 10vw, 3.25rem); }
  .anxiety-panel { padding: 35px 24px; border-radius: 25px; }
  .anxiety-copy h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .focus-card { padding: 29px; }
  .focus-card h3 { font-size: 1.95rem; }
  .audience-grid, .age-cards, .modalities-grid, .info-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 300px; }
  .audience-card h3 { margin-top: 42px; }
  .age-card { min-height: 245px; }
  .age-card h3 { margin-top: 42px; }
  .modality-card { min-height: 350px; padding: 30px; }
  .modality-card h3 { margin-top: 55px; font-size: 2.15rem; }
  .info-card { min-height: 275px; padding: 30px; }
  .schedule-times { flex-direction: column; gap: 4px; }
  .facebook-card { grid-template-columns: 1fr; padding: 32px; }
  .facebook-symbol { width: 64px; height: 64px; font-size: 3rem; }
  .contact-panel { padding: 35px 24px; border-radius: 25px; }
  .contact-action { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-links { gap: 11px 16px; }
  .site-footer { padding-bottom: 110px; }
  .floating-contact { right: 14px; bottom: 14px; }
  .back-to-top { right: 17px; bottom: 76px; }
}

@media (max-width: 430px) {
  .hero-visual { min-height: 395px; }
  .main-card { inset: 46px 18px 45px 18px; }
  .float-card { border-radius: 14px; }
  .float-card strong { font-size: .72rem; }
  .float-card span { font-size: .64rem; }
  .card-one { padding: 11px 12px 11px 30px; }
  .card-one .dot { left: 12px; top: 14px; }
  .card-two, .card-three { padding: 11px 13px; }
  .visual-message { padding: 11px 13px; }
  .visual-message strong { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
