@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@500;600;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a3a6b;
  --navy-deep: #102c52;
  --navy-soft: #315582;
  --green: #4a9b7f;
  --green-dark: #357a63;
  --cream: #fbfaf7;
  --mist: #f5f5f5;
  --white: #fff;
  --ink: #233146;
  --muted: #617087;
  --line: #dfe5eb;
  --shadow: 0 16px 45px rgba(26, 58, 107, 0.12);
  --radius: 18px;
  --max: 1180px;
  --ease: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.18;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(2.15rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

[class^="ri-"],
[class*=" ri-"] {
  font-weight: 400 !important;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--mist);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--navy-deep);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font:
    700 0.76rem "Montserrat",
    sans-serif;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-dark .eyebrow {
  color: #9ed5c1;
}

.section-heading p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.08rem;
}

.section-dark .section-heading p {
  color: #d9e2ed;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font:
    700 0.9rem "Montserrat",
    sans-serif;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(74, 155, 127, 0.25);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  background: #eaf4f0;
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 16px 28px;
}

.topbar {
  height: 38px;
  background: var(--navy-deep);
  color: #dfe8f3;
  font-size: 0.8rem;
}

.topbar-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
}

.topbar i {
  color: #9ed5c1;
  margin-right: 5px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(26, 58, 107, 0.08);
  transition: var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(26, 58, 107, 0.12);
}

.header-inner {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 100px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  background: var(--navy-deep);
  padding: 6px 10px;
  border-radius: 10px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
}

.nav-link {
  padding: 9px 10px;
  border-radius: 8px;
  font:
    600 0.78rem "Montserrat",
    sans-serif;
  color: var(--ink);
  white-space: nowrap;
  transition: var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: #edf3f8;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font:
    700 0.78rem "Montserrat",
    sans-serif;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 5;
}

.hero {
  padding-top: 130px;
  background: var(--navy-deep);
}

.hero-slide {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 44, 82, 0.93),
    rgba(16, 44, 82, 0.62) 55%,
    rgba(16, 44, 82, 0.12)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 0;
}

.hero-copy {
  max-width: 100%;
}

.hero-copy h1,
.hero-copy h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-copy h1 em,
.hero-copy h2 em {
  font-style: normal;
  color: #a7d6c2;
}

.hero-copy p {
  max-width: 760px;
  color: #eef4f8;
  font-size: 1.16rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #b7ddcc;
  font:
    700 0.78rem "Montserrat",
    sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.13);
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  right: 26px !important;
}

.swiper-button-prev {
  left: 26px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1rem !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.55;
}

.swiper-pagination-bullet-active {
  background: #a7d6c2 !important;
  opacity: 1;
}

.welcome-strip {
  background: var(--green);
  color: #fff;
  padding: 20px 0;
}

.welcome-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.welcome-strip strong {
  font:
    600 1.05rem "Montserrat",
    sans-serif;
}

.welcome-strip i {
  font-size: 1.4rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--green);
  border-radius: 18px;
  right: -18px;
  bottom: -18px;
  z-index: -1;
}

.split-copy h2 {
  margin-bottom: 20px;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
}

.check-list i {
  color: var(--green);
  font-size: 1.2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #b7d6c9;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eaf4f0;
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote-block {
  padding: 36px;
  border-left: 4px solid var(--green);
  background: #f4f8f6;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 28px;
}

.quote-block p {
  font:
    italic 1.16rem/1.7 "Montserrat",
    sans-serif;
  color: var(--navy-deep);
}

.quote-block cite {
  display: block;
  margin-top: 14px;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 700;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.schedule-card {
  padding: 24px 18px;
  background: #fff;
  border-top: 4px solid var(--green);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(16, 44, 82, 0.08);
}

.schedule-card .day {
  font:
    700 0.78rem "Montserrat",
    sans-serif;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-card strong {
  display: block;
  font:
    700 1.55rem "Montserrat",
    sans-serif;
  color: var(--navy);
  margin: 8px 0;
}

.schedule-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  min-height: 220px;
  box-shadow: 0 8px 22px rgba(16, 44, 82, 0.08);
}

.testimonial i {
  color: var(--green);
  font-size: 2rem;
}

.testimonial p {
  font-size: 1.04rem;
  color: var(--ink);
  margin: 14px 0 20px;
}

.testimonial strong {
  color: var(--navy);
}

.cta-band {
  background: var(--green);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-band p {
  color: #eef8f4;
  margin-bottom: 26px;
}

.page-hero {
  padding: 190px 0 76px;
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 20%,
    rgba(74, 155, 127, 0.25),
    transparent 35%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.page-hero p {
  color: #e5edf5;
  max-width: 660px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  color: #b6c6d7;
  font-size: 0.85rem;
}

.breadcrumbs a:hover {
  color: #a7d6c2;
}

.timeline {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
  padding: 0 0 40px;
}

.timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 39px;
  top: 72px;
  bottom: 0;
  border-left: 2px dashed #b8d5c8;
}

.timeline-number {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font:
    700 1.5rem "Montserrat",
    sans-serif;
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding-top: 12px;
}

.timeline-content h3 {
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--muted);
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ministry-card {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: var(--ease);
}

.ministry-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.ministry-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ministry-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font:
    700 1rem "Montserrat",
    sans-serif;
  color: var(--navy);
  cursor: pointer;
}

.faq-question i {
  color: var(--green);
  transition: var(--ease);
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--muted);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-panel {
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
}

.contact-panel h2,
.contact-panel h3 {
  color: #fff;
  margin-bottom: 12px;
}

.contact-panel p {
  color: #d8e4ef;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.contact-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.contact-list i {
  font-size: 1.35rem;
  color: #a7d6c2;
}

.contact-list span,
.contact-list a {
  color: #f0f5f8;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  font:
    700 0.82rem "Montserrat",
    sans-serif;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #ccd6e1;
  border-radius: 9px;
  padding: 13px 14px;
  font:
    1rem "Lato",
    sans-serif;
  color: var(--ink);
  background: #fbfcfd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid rgba(74, 155, 127, 0.2);
  border-color: var(--green);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  padding: 12px;
  border-radius: 9px;
  margin-top: 15px;
  font-weight: 700;
}

.form-status.success {
  background: #e8f5ef;
  color: var(--green-dark);
}

.form-status.error {
  background: #fff0f0;
  color: #a33f3f;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 42px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.contribute-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
  height: 100%;
}

.contribute-card h3 {
  margin-bottom: 10px;
}

.placeholder {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 13px;
  background: #fff6df;
  border: 1px dashed #c29c4b;
  border-radius: 8px;
  color: #765b20;
  font-size: 0.88rem;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  padding: 10px 15px;
  border-radius: 999px;
  font:
    700 0.78rem "Montserrat",
    sans-serif;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy-deep);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(transparent, rgba(16, 44, 82, 0.9));
  color: #fff;
  font:
    600 0.88rem "Montserrat",
    sans-serif;
}

.site-footer {
  background: var(--navy-deep);
  color: #d8e4ef;
  padding: 65px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
}

.footer-brand {
  display: block;
  width: 200px;
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-grid p {
  max-width: 300px;
  color: #bdccdc;
  margin-top: 18px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  color: #c9d6e4;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #a7d6c2;
}

.footer-contact {
  display: grid;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  color: #c9d6e4;
  font-size: 0.9rem;
}

.footer-contact i {
  color: #a7d6c2;
  font-size: 1.1rem;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: var(--ease);
}

.socials a:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #aec0d2;
}

.footer-bottom strong {
  color: #a7d6c2;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 19px;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  font:
    700 0.82rem "Montserrat",
    sans-serif;
  transition: var(--ease);
}

#whatsapp-float:hover {
  background: #1da851;
  transform: translateY(-3px);
}

#whatsapp-float i {
  font-size: 1.3rem;
}

@media (max-width: 1100px) {
  .header-nav {
    gap: 0;
  }

  .nav-link {
    font-size: 0.7rem;
    padding: 8px 7px;
  }

  .header-cta {
    font-size: 0.7rem;
    padding: 10px 12px;
  }

  .ministry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .container {
    width: min(var(--max), calc(100% - 36px));
  }

  .topbar-inner span {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 80px;
  }

  .brand img {
    height: 58px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 12px 18px 18px;
    box-shadow: var(--shadow);
  }

  .header-nav.open {
    display: flex;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 12px 15px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-slide {
    min-height: 610px;
  }

  .split,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px 18px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 68px 0;
  }

  .container {
    width: calc(100% - 32px);
  }

  .hero-slide {
    min-height: 650px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .welcome-strip-inner {
    align-items: flex-start;
    text-align: left;
  }

  .cards,
  .schedule-grid,
  .ministry-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 155px 0 58px;
  }

  .timeline-item {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .timeline-number {
    width: 58px;
    height: 58px;
    font-size: 1.1rem;
  }

  .timeline-item:not(:last-child):after {
    left: 28px;
    top: 58px;
  }

  .form-card,
  .contact-panel {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    font-size: 0.76rem;
  }

  #whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 15px;
  }

  #whatsapp-float span {
    display: none;
  }
}
