/* Igreja Videira de Ourinhos — Design System */
:root {
  --teal: #2db8a8;
  --teal-dark: #239688;
  --teal-light: #e8f7f5;
  --blue: #4a90e2;
  --purple: #6b308b;
  --navy: #1e2239;
  --gray-900: #0d0d0d;
  --gray-700: #4a5568;
  --gray-500: #6c7a89;
  --gray-200: #e8ecef;
  --gray-100: #f7f9fa;
  --white: #ffffff;
  --gradient-brand: linear-gradient(135deg, var(--teal) 0%, var(--blue) 55%, var(--purple) 100%);
  --shadow-sm: 0 2px 8px rgba(30, 34, 57, 0.06);
  --shadow-md: 0 8px 30px rgba(30, 34, 57, 0.1);
  --shadow-lg: 0 20px 50px rgba(30, 34, 57, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max-width: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-dark);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--gray {
  background: var(--gray-100);
}

.section--dark {
  background: var(--gray-900);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav__link {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav__link:hover,
.nav__link--active {
  color: var(--teal);
}

.nav__link--active {
  position: relative;
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav__cta-mobile {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 184, 168, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline-dark:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--teal-light);
  color: var(--navy);
}

.btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--copy svg {
  width: 16px;
  height: 16px;
}

.btn--copy:hover {
  background: var(--teal-dark);
}

.btn--copy--success {
  background: #22a06b;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/Hero-Videira-Ourinhos.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.55) 0%,
    rgba(13, 13, 13, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 8rem 1.25rem 5rem;
  max-width: 760px;
}

.hero__logo {
  width: auto;
  height: 80px;
  margin: 0 auto 2rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Quick links bar */
.quick-links {
  background: var(--gradient-brand);
  padding: 1.25rem 0;
}

.quick-links__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.quick-links__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.quick-links__item:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--white);
  transform: translateY(-1px);
}

/* Cards */
.section--cards {
  padding-top: 3rem;
}

.section__header--cards {
  margin-bottom: 2.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Vision */
.vision {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.vision__lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.vision__pillars {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.vision__pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.vision__pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
}

.vision__pillar-icon svg {
  width: 22px;
  height: 22px;
}

.vision__pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.vision__pillar-text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Schedule */
.schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.schedule__item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.schedule__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.schedule__day {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.schedule__time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.schedule__label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.35rem;
}

/* Social */
.social {
  max-width: 880px;
  margin: 0 auto;
}

.social__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.social__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  transition: var(--transition);
  min-height: 80px;
  grid-column: span 2;
}

.social__card:hover {
  color: var(--navy);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 184, 168, 0.15);
}

.social__card--featured {
  grid-column: span 3;
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(45, 184, 168, 0.08) 0%, var(--white) 100%);
  min-height: 88px;
}

.social__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--white);
}

.social__card-icon--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social__card-icon--youtube {
  background: #ff0000;
}

.social__card-icon--facebook {
  background: #1877f2;
}

.social__card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social__card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.social__card-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.social__card-text span {
  font-size: 0.8rem;
  color: var(--gray-500);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .social__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social__card,
  .social__card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .social__grid {
    grid-template-columns: 1fr;
  }

  .social__card,
  .social__card--featured {
    grid-column: auto;
  }
}

/* Offerings */
.offerings {
  display: flex;
  justify-content: center;
}

.offerings__content {
  width: min(100%, 560px);
  text-align: center;
}

.offerings__content .section__subtitle {
  margin-inline: auto;
}

.offerings__pix-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}

.offerings__pix-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  margin-bottom: 0.65rem;
  text-align: center;
}

.offerings__pix-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.offerings__pix-key {
  font-family: "DM Sans", monospace;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  background: none;
  flex: 1;
  min-width: 0;
  word-break: break-all;
  text-align: center;
}

.offerings__note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.75rem;
  text-align: center;
}

.offerings__actions {
  display: flex;
  justify-content: center;
}

/* Programs */
.program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.program:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}

.program--reverse .program__image {
  order: 2;
}

.program--reverse .program__content {
  order: 1;
}

.program__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  min-height: 220px;
}

.program__image--teal {
  background: linear-gradient(135deg, var(--teal-light) 0%, rgba(45, 184, 168, 0.15) 100%);
}

.program__image--blue {
  background: linear-gradient(135deg, #e8f1fc 0%, rgba(74, 144, 226, 0.15) 100%);
}

.program__image--purple {
  background: linear-gradient(135deg, #f3eaf8 0%, rgba(107, 48, 139, 0.12) 100%);
}

.program__image img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}

.program__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.program__text {
  color: var(--gray-500);
  line-height: 1.75;
}

/* Location */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.location__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.location__address {
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem;
  color: var(--gray-500);
}

.location__hours {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.location__hours h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 184, 168, 0.15);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: 50%;
  color: var(--teal);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.15rem;
}

.contact-info__value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.contact-info__cta {
  align-self: flex-start;
}

.form .btn--primary {
  align-self: flex-start;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--teal);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
}

.faq__item--open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  color: var(--gray-500);
  line-height: 1.7;
}

.faq__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 200;
  padding: 0.85rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.footer__logo {
  width: auto;
  height: 48px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__credit {
  font-size: 0.75rem;
  opacity: 0.45;
  margin-top: 0.75rem;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__credit a:hover {
  color: var(--teal);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* Bio page */
.bio-page {
  min-height: 100vh;
  background: var(--gradient-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem 1.25rem;
}

.bio-card {
  width: min(100%, 420px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.bio-card__logo {
  height: 64px;
  margin: 0 auto 1rem;
}

.bio-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bio-card__subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.bio-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.bio-link:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateX(4px);
}

.bio-link__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  transition: var(--transition);
}

.bio-link:hover .bio-link__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.bio-link__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.bio-card__footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.bio-page__credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.bio-page__credit a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.bio-page__credit a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .cards,
  .schedule,
  .program,
  .location,
  .contact-grid,
  .vision__pillars {
    grid-template-columns: 1fr;
  }

  .section--cards {
    padding-top: 2rem;
  }

  .section__header--cards {
    margin-bottom: 2rem;
  }

  .program--reverse .program__image,
  .program--reverse .program__content {
    order: unset;
  }

  .cards {
    margin-top: 0;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .nav__list--open {
    display: flex;
  }

  .nav__link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta-desktop {
    display: none;
  }

  .nav__cta-mobile {
    display: block;
  }

  .nav__link--active::after {
    display: none;
  }

  .nav__link--active {
    font-weight: 600;
  }

  .nav {
    position: relative;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero__logo {
    height: 60px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .quick-links__item {
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
  }

  .offerings__actions {
    flex-direction: column;
  }

  .offerings__actions .btn {
    width: 100%;
  }

  .form .btn--primary {
    width: 100%;
    align-self: stretch;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
}
