/* ================================================================
   SOS EPS — Maqueta HTML aprobable
   Bootstrap 5 + Owl Carousel + Fancybox 5 + Font Awesome 6.7.2
   ================================================================ */

:root {
  --sos-blue: #084a9f;
  --sos-blue-700: #073f89;
  --sos-blue-800: #073578;
  --sos-navy: #203a79;
  --sos-navy-900: #152a61;
  --sos-cyan: #0d95bb;
  --sos-sky: #eef6fd;
  --sos-sky-strong: #dceeff;
  --sos-yellow: #ffc83d;
  --sos-yellow-hover: #f3b91b;
  --sos-green: #1fbd62;
  --sos-text: #243653;
  --sos-muted: #5d7189;
  --sos-border: #dce6f2;
  --sos-white: #fff;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 8px 24px rgba(16, 57, 112, 0.08);
  --shadow-md: 0 16px 42px rgba(16, 57, 112, 0.14);
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--sos-text);
  background: #fff;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  top: 0 !important;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--sos-navy-900);
  background: rgba(22, 185, 230, 0.25);
}

:focus-visible {
  outline: 2px solid var(--sos-navy-900);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--sos-yellow);
}

/* Sobre fondos oscuros (navbar azul, hero) el navy se pierde;
   priorizar el anillo amarillo hacia adentro */
.main-navbar :focus-visible,
.hero-section :focus-visible,
.quick-actions :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--sos-yellow);
  box-shadow: 0 0 0 4px var(--sos-navy-900);
}

.container-xxl {
  width: min(100% - 40px, 1200px);
  max-width: 1200px;
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 16px;
  z-index: 3000;
  padding: 0.7rem 1rem;
  color: var(--sos-blue);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2200;
  height: 3px;
  pointer-events: none;
  background: var(--sos-yellow);
  transform: scaleX(0);
  transform-origin: left center;
}

.btn-primary {
  --bs-btn-bg: var(--sos-blue);
  --bs-btn-border-color: var(--sos-blue);
  --bs-btn-hover-bg: var(--sos-blue-800);
  --bs-btn-hover-border-color: var(--sos-blue-800);
  --bs-btn-active-bg: var(--sos-blue-800);
  --bs-btn-active-border-color: var(--sos-blue-800);
}

.btn-warning {
  --bs-btn-bg: var(--sos-yellow);
  --bs-btn-border-color: var(--sos-yellow);
  --bs-btn-color: var(--sos-navy-900);
  --bs-btn-hover-bg: var(--sos-yellow-hover);
  --bs-btn-hover-border-color: var(--sos-yellow-hover);
  --bs-btn-hover-color: var(--sos-navy-900);
}

.btn-outline-light:hover {
  color: var(--sos-blue-800);
}

/* ================================================================
   HEADER
   ================================================================ */
.topheader {
  background: #36c;

  z-index: 9;
  width: 100%;

  top: 0px;

  padding: 10px;
}
#google_translate_element2,
.skiptranslate {
  display: none !important;
}
.site-header {
  z-index: 1040;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 44, 105, 0.09);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 44, 105, 0.14);
}

.topbar {
  min-height: 70px;
  padding: 7px 0;
  background: #fff;
  border-bottom: 1px solid #edf2f8;
}

.topbar > .container-fluid {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(24px, 3vw, 40px);
}

.header-brand-group {
  flex: 0 0 auto;
}

.brand,
.navbar-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.audience-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.audience-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.42rem 0.72rem;
  color: #62738d;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 0.69rem;
  font-weight: 500;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.audience-nav a:is(:hover, .active) {
  color: var(--sos-blue);
  background: #edf5ff;
  border-color: #cfe1f6;
}

.header-tools {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.site-search {
  display: flex;
  flex: 1 1 260px;
  align-items: center;
  min-width: 220px;
  max-width: 320px;
  height: 38px;
  overflow: hidden;
  padding-left: 13px;
  background: #f8fbff;
  border: 1px solid #d7e4f2;
  border-radius: 22px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-search:focus-within {
  border-color: var(--sos-blue);
  box-shadow: 0 0 0 3px rgba(8, 74, 159, 0.09);
}

.site-search i {
  flex: 0 0 auto;
  color: #89a6c4;
  font-size: 0.8rem;
}

.site-search input {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0 8px;
  color: var(--sos-text);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.7rem;
}

.site-search input::placeholder {
  color: #a5b8cf;
}

.site-search button {
  align-self: stretch;
  flex: 0 0 auto;
  padding-inline: 18px;
  color: #fff;
  background: var(--sos-blue);
  border: 0;
  font-size: 0.7rem;
  font-weight: 700;
  transition: background var(--transition);
}

.site-search button:hover {
  background: var(--sos-blue-800);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #50647f;
  font-size: 0.69rem;
  font-weight: 600;
  white-space: nowrap;
}

.phone-link i {
  color: var(--sos-blue);
}

.social-mini {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7b8fa9;
  font-size: 0.65rem;
  white-space: nowrap;
}

.social-mini a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--sos-blue);
  background: #eaf2fd;
  border-radius: 50%;
  font-size: 0.7rem;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.social-mini a:hover {
  color: #fff;
  background: var(--sos-blue);
  transform: translateY(-1px);
}

.main-navbar {
  min-height: 56px;
  padding: 0;
  background: var(--sos-blue);
}

.main-navbar .container-xxl {
  min-height: 56px;
  padding-block: 6px;
}

.main-navbar .navbar-nav {
  align-items: stretch;
}

.main-navbar .nav-link {
  display: flex;
  align-items: center;
  min-height: 47px;
  padding: 0 0.66rem !important;
  color: rgba(255, 255, 255, 0.91) !important;
  border-bottom: 3px solid transparent;
  font-size: 0.66rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.main-navbar .nav-link:is(:hover, .active, :focus-visible) {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: var(--sos-yellow);
}

.main-navbar .dropdown-toggle::after {
  margin-left: 4px;
  border-top-color: rgba(255, 255, 255, 0.75);
}

.main-navbar .dropdown-menu {
  min-width: 210px;
  padding: 0.45rem;
  border: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 36px rgba(6, 70, 156, 0.18);
  font-size: 0.74rem;
}

.main-navbar .dropdown-item {
  padding: 0.58rem 0.72rem;
  color: var(--sos-text);
  border-radius: 7px;
  font-weight: 500;
}

.main-navbar .dropdown-item:hover {
  color: var(--sos-blue);
  background: var(--sos-sky);
}

.nav-cta {
  flex: 0 0 auto;
  align-items: center;
  margin-left: 8px;
}

.nav-cta .btn {
  min-height: 40px;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta .btn-light {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(255, 255, 255, 0.14);
  --bs-btn-border-color: rgba(255, 255, 255, 0.48);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.23);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.6);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgba(255, 255, 255, 0.28);
  --bs-btn-active-border-color: rgba(255, 255, 255, 0.7);
}

.navbar-brand img {
  width: 92px;
  height: auto;
}

.navbar-toggler {
  padding: 0.4rem 0.55rem;
  border-color: rgba(255, 255, 255, 0.48);
  border-radius: 7px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 200, 61, 0.3);
}

.navbar-toggler-icon {
  width: 1.15em;
  height: 1.15em;
  filter: brightness(0) invert(1);
}

.mobile-actions .btn {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
}

.offcanvas {
  max-width: min(88vw, 360px);
  border-left: 0;
}

.offcanvas-header {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e7edf5;
}

.offcanvas-header img {
  width: 100px;
  height: auto;
}

.offcanvas-body {
  padding: 1rem 1.1rem 1.4rem;
}

.mobile-search {
  display: flex;
}

.mobile-search .form-control {
  min-height: 44px;
  border-color: #cfdae8;
  border-radius: 8px 0 0 8px;
}

.mobile-search .btn {
  min-width: 48px;
  border-radius: 0 8px 8px 0;
}

.mobile-nav .list-group-item {
  padding: 0.78rem 0.15rem;
  color: var(--sos-text);
  background: transparent;
  border-color: #e8eef6;
  font-weight: 600;
}

.mobile-nav .list-group-item:is(:hover, .active) {
  color: var(--sos-blue);
  background: transparent;
}

/* ================================================================
   HERO
   ================================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--sos-navy-900);
}

.hero-section .owl-carousel,
.hero-section .owl-stage-outer,
.hero-section .owl-stage,
.hero-section .owl-item {
  height: 100%;
}

.hero-slide {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  color: #fff;
  background-color: var(--sos-navy-900);
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 27, 79, 0.9) 0%,
    rgba(12, 39, 93, 0.72) 43%,
    rgba(10, 49, 102, 0.18) 72%,
    rgba(10, 49, 102, 0.02) 100%
  );
}

.hero-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 25, 70, 0.18), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 12px;
  padding-bottom: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 0.35rem 0.72rem;
  color: #d9e8ff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.35vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 510px;
  margin-bottom: 22px;
  color: #e6edf8;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
}

.hero-section .owl-nav {
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  margin: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-section .owl-nav button.owl-prev,
.hero-section .owl-nav button.owl-next {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 !important;
  place-items: center;
  color: #fff !important;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.hero-section .owl-nav button:hover {
  color: var(--sos-navy-900) !important;
  background: var(--sos-yellow) !important;
  transform: scale(1.05);
}

.hero-section .owl-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  z-index: 9;
  margin: 0 !important;
  text-align: center;
}

.hero-section .owl-theme .owl-dots .owl-dot span {
  width: 19px;
  height: 7px;
  margin: 3px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 5px;
  transition:
    width var(--transition),
    background var(--transition);
}

.hero-section .owl-theme .owl-dots .owl-dot.active span {
  width: 38px;
  background: var(--sos-yellow);
}

/* CC20 — Control Pausa/Play accesible del carrusel del hero */
.hero-play-toggle {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--sos-navy-900);
  background: var(--sos-yellow);
  border: 2px solid var(--sos-navy-900);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition);
}

.hero-play-toggle:hover {
  background: var(--sos-yellow-hover);
  transform: scale(1.05);
}

.hero-play-toggle .icon-play {
  display: none;
}

.hero-play-toggle[aria-pressed="true"] .icon-pause {
  display: none;
}

.hero-play-toggle[aria-pressed="true"] .icon-play {
  display: inline-block;
}

/* ================================================================
   QUICK ACTIONS
   ================================================================ */
.quick-actions-wrap {
  padding: 22px 0 0;
  background: #f3f8fd;
}

.quick-actions {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  padding: 8px;
  background: var(--sos-blue-800);
  border-radius: 13px;
  box-shadow: 0 10px 30px rgba(7, 53, 120, 0.2);
}

.quick-actions::before {
  position: absolute;
  top: -155px;
  right: -120px;
  width: 260px;
  height: 260px;
  content: "";
  pointer-events: none;
  background: rgba(22, 185, 230, 0.11);
  border-radius: 50%;
}

.quick-actions a {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 100px;
  padding: 0.8rem 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  font-size: clamp(0.78rem, 0.9vw, 0.875rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  transition:
    background var(--transition),
    transform var(--transition);
}

.quick-actions a:last-child {
  border-right: 0;
}

.quick-actions a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  transform: translateY(-2px);
}

.quick-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--sos-cyan);
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 7px;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.12);
  font-size: 1.05rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.quick-actions a:hover .quick-icon {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px) rotate(-2deg);
}

/* ================================================================
   SHARED SECTIONS
   ================================================================ */
.section-pad {
  padding: 74px 0;
}

.section-heading {
  margin-bottom: 7px;
}

.section-heading h2 {
  margin: 0 0 7px;
  color: var(--sos-blue);
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.16;
  text-wrap: balance;
}

.section-heading h2 span,
.plans-section .section-heading h2 span {
  color: var(--sos-blue);
}

.plans-section .section-heading h2 {
  color: #222c3a;
}

.section-heading p {
  margin: 0;
  color: var(--sos-muted);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sos-blue);
  font-size: 0.875rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--sos-blue-800);
}

.services-section,
.news-section {
  background: #f3f8fd;
}

.services-section.pt-5 {
  padding-top: 64px !important;
}

.service-card,
.news-card,
.plan-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sos-border);
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover,
.news-card:hover,
.plan-card:hover {
  border-color: #c8d9ed;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card > img,
.news-card > img,
.news-card > a > img,
.plan-card > img {
  width: 100%;
  object-fit: cover;
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter var(--transition);
}

.service-card:hover > img,
.news-card:hover > img,
.news-card:hover > a > img,
.plan-card:hover > img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.service-card > img {
  height: 190px;
}

.service-card-body {
  position: relative;
  min-height: 112px;
  padding: 31px 17px 18px;
  text-align: center;
}

.card-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--sos-blue);
  background: #fff;
  border: 1px solid #cbdcf1;
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(6, 70, 156, 0.12);
  font-size: 1.15rem;
  transform: translateX(-50%);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover .card-icon {
  box-shadow: 0 11px 24px rgba(6, 70, 156, 0.18);
  transform: translateX(-50%) translateY(-2px) rotate(-2deg);
}

.service-card h3 {
  min-height: 46px;
  margin: 0 0 8px;
  color: var(--sos-blue-800);
  font-size: clamp(0.95rem, 1.1vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.3;
}

.service-card a {
  color: var(--sos-blue);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ================================================================
   AFFILIATION
   ================================================================ */
.anita-section {
  position: relative;
  padding: 62px 0;
  background-color: #eaf5ff;
  background-image: linear-gradient(180deg, #eaf5ff 0%, #dceefd 100%);
  overflow: hidden;
}

.anita-image-link {
  display: block;
  border-radius: 16px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.anita-image-link:hover,
.anita-image-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(6, 70, 156, 0.18);
}

.anita-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.anita-options {
  padding: 4px 0;
}

.anita-title {
  margin: 0 0 22px;
  color: var(--sos-blue);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
}

.anita-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.anita-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(6, 70, 156, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.anita-item:hover {
  transform: translateY(-2px);
  border-color: #b7d3ef;
  box-shadow: 0 12px 28px rgba(6, 70, 156, 0.12);
}

.anita-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sos-blue), #14bce7);
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 6px 14px rgba(6, 70, 156, 0.25);
}

.anita-item p {
  margin: 0;
  color: var(--sos-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.anita-item p strong {
  color: var(--sos-navy-900);
  font-weight: 700;
}

.anita-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.anita-cta:hover,
.anita-cta:focus-visible {
  background: #1fb955;
  border-color: #1fb955;
  color: #ffffff;
}

.anita-cta i {
  font-size: 1.15rem;
}

/* ================================================================
   NEWS
   ================================================================ */
.news-card > img,
.news-card > a > img {
  height: 190px;
}

.news-card-featured > a > img {
  height: 265px;
}

.news-content {
  display: flex;
  min-height: 175px;
  padding: 18px;
  flex-direction: column;
}

.news-card-featured .news-content {
  min-height: 175px;
}

.tag {
  align-self: flex-start;
  margin-bottom: 9px;
  padding: 0.28rem 0.65rem;
  color: #4d6a8f;
  background: #edf4fc;
  border: 1px solid #d8e7f6;
  border-radius: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-content h3 {
  margin: 0 0 18px;
  font-size: clamp(0.95rem, 1.15vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
}

.news-card-featured .news-content h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.news-content h3 a {
  color: var(--sos-blue-800);
}

.news-meta {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #8295ac;
  font-size: 0.8125rem;
}

.news-meta a {
  color: var(--sos-blue);
  font-weight: 700;
  white-space: nowrap;
}

/* ================================================================
   PLANS
   ================================================================ */
.plans-section {
  background: #fff;
}

.plan-card {
  max-width: 340px;
  margin-inline: auto;
  background: #f7f9fc;
  text-align: center;
}

.plan-card > img {
  height: 180px;
}

.plan-body {
  display: flex;
  min-height: 230px;
  padding: 20px 24px 22px;
  flex-direction: column;
  align-items: center;
}

.plan-body h3 {
  margin: 0 0 12px;
  color: var(--sos-blue);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.plan-body p {
  margin: 0 0 22px;
  color: #5f738f;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  line-height: 1.55;
}

.plan-body .btn {
  min-width: 148px;
  margin-top: auto;
  font-size: 0.9rem;
}

.plan-green {
  background: #effbf0;
  border-color: #d8f1da;
}

.plan-gold {
  background: #fff8df;
  border-color: #f5e6ac;
}

.exclusive {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  padding: 0.3rem 0.58rem;
  color: #8b6b05;
  background: rgba(255, 235, 153, 0.92);
  border-radius: 14px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ================================================================
   NETWORK
   ================================================================ */
.network-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #f2f7fc 0%,
    #f2f7fc 68%,
    #e8f2fc 68%,
    #e8f2fc 100%
  );
}

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

.network-stats > div {
  min-height: 135px;
  padding: 18px 10px;
  background: #fff;
  border: 1px solid var(--sos-border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.network-stats i {
  display: block;
  margin-bottom: 8px;
  color: var(--sos-blue);
  font-size: 1.7rem;
}

.network-stats strong {
  display: block;
  color: var(--sos-blue);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1;
}

.network-stats span {
  display: block;
  margin-top: 8px;
  color: #5b6d84;
  font-size: 0.875rem;
  line-height: 1.35;
}

.network-map {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border: 1px solid #d2dfed;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer-partners {
  padding: 17px 0;
  color: #fff;
  background: var(--sos-blue);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.partner-logo {
  width: auto;
  height: clamp(38px, 3.5vw, 52px);
  object-fit: contain;
}

/* Compatibilidad con clase anterior */
/* Base común */
.partner-logo,
.supersalud-logo {
  width: auto;
  object-fit: contain;
}

/* Alturas ópticas específicas — compensan la proporción real de cada logo */
.partner-supersalud,
.supersalud-logo {
  height: clamp(40px, 3.2vw, 50px);
}

.partner-adres {
  height: clamp(42px, 3.4vw, 52px);
}

.partner-govco {
  height: clamp(34px, 2.8vw, 42px);
}

.partner-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-pills a {
  padding: 0.55rem 1.15rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  font-weight: 500;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.footer-pills a:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 48px 0;
  color: #d8e0ef;
  background: var(--sos-navy);
}

.footer-logo {
  width: 132px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.footer-identity {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-identity strong {
  color: #fff;
  font-weight: 700;
}

.contact-list,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li,
.site-footer ul li {
  margin: 0.5rem 0;
}

.contact-list li {
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  line-height: 1.5;
}

.contact-list i {
  width: 22px;
  color: #fff;
}

.contact-list a,
.site-footer ul a {
  color: #cfd9eb;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-footer ul a {
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 7px;
}

.footer-social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--sos-blue);
  background: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.footer-social a:hover {
  color: var(--sos-navy-900);
  background: var(--sos-yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 16px 0;
  color: #afbdd6;
  background: #15285d;
  font-size: clamp(0.78rem, 0.9vw, 0.85rem);
  line-height: 1.6;
  text-align: center;
}

.footer-bottom a {
  color: #afbdd6;
}

/* ================================================================
   RIGHT SIDE DOCK — expands inward, icon stays attached to right edge
   ================================================================ */
.side-dock {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1025;
  display: flex;
  width: 210px;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  filter: drop-shadow(-3px 0 12px rgba(0, 0, 0, 0.18));
  transform: translateY(-50%);
}

.dock-btn {
  display: flex;
  width: 52px;
  height: 50px;
  padding: 0;
  flex: 0 0 auto;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  pointer-events: auto;
  cursor: pointer;
  background: var(--sos-blue);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    width var(--transition),
    background var(--transition);
}

.dock-btn:first-child {
  border-radius: 10px 0 0;
}

.dock-btn.dock-back {
  border-bottom: 0;
  border-radius: 0 0 0 10px;
}

.dock-btn.dock-back:is(:hover, :focus-visible) {
  width: 52px;
}

.dock-btn.dock-back .dock-lbl {
  display: none;
}

.dock-btn:is(:hover, :focus-visible) {
  width: 205px;
  color: #fff;
  background: var(--sos-blue-800);
}

.dock-btn.dock-yellow {
  color: var(--sos-navy-900);
  background: var(--sos-yellow);
}

.dock-btn.dock-yellow:is(:hover, :focus-visible) {
  color: var(--sos-navy-900);
  background: var(--sos-yellow-hover);
}

.dock-btn.dock-green {
  background: var(--sos-green);
}

.dock-btn.dock-green:is(:hover, :focus-visible) {
  background: #17aa55;
}

.dock-ico {
  display: grid;
  width: 52px;
  height: 50px;
  flex: 0 0 52px;
  place-items: center;
}

.dock-ico i {
  color: currentColor;
  font-size: 1.05rem;
}

.dock-lbl {
  min-width: 0;
  padding: 0 13px 0 15px;
  opacity: 0;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  transition: opacity 120ms ease 60ms;
}

.dock-btn:is(:hover, :focus-visible) .dock-lbl {
  opacity: 1;
}

/* ================================================================
   ANITA + MOBILE UTILITY BAR
   ================================================================ */
.anita-bubble {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 1010;
  cursor: pointer;
  text-align: center;
}

.anita-avatar {
  display: grid;
  width: 66px;
  height: 66px;
  margin-inline: auto;
  overflow: hidden;
  place-items: center;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 23px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
}

.anita-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.anita-bubble:hover .anita-avatar {
  transform: scale(1.06);
}

.anita-label {
  margin-top: -4px;
  padding: 4px 10px 6px;
  color: #fff;
  background: var(--sos-navy-900);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-utility-bar {
  position: fixed;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 10px;
  z-index: 1035;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  padding: 7px 7px 6px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(8, 74, 159, 0.13);
  border-radius: 17px;
  box-shadow: 0 16px 42px rgba(7, 53, 120, 0.22);
  backdrop-filter: blur(14px);
}

.mobile-utility-bar a,
.mobile-utility-bar button {
  display: flex;
  min-width: 0;
  min-height: 47px;
  padding: 4px 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--sos-blue-800);
  background: transparent;
  border: 0;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1;
}

.mobile-utility-bar i {
  font-size: 1rem;
}

.mobile-utility-bar .utility-main {
  width: 54px;
  height: 54px;
  min-height: 54px;
  margin-top: -24px;
  justify-self: center;
  color: #fff;
  background: var(--sos-blue);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(8, 74, 159, 0.3);
}

.mobile-utility-bar .utility-main span {
  display: none;
}

#cari_button {
  position: fixed !important;
  bottom: 16px !important;
  left: 16px !important;
  z-index: 1000 !important;
  width: 80px !important;
  max-width: 80px !important;
  cursor: pointer !important;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199.98px) {
  html {
    scroll-padding-top: 64px;
  }

  .main-navbar,
  .main-navbar .container-xxl {
    min-height: 64px;
  }

  .side-dock {
    display: none;
  }

  .hero-section .owl-nav {
    display: none;
  }

  .quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-actions a:nth-child(3n) {
    border-right: 0;
  }

  .quick-actions a:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 80px;
  }

  .container-xxl {
    width: min(100% - 32px, 900px);
  }

  .hero-slide {
    min-height: 480px;
    background-position: 62% center;
  }

  .hero-slide::before {
    background: linear-gradient(
      90deg,
      rgba(8, 28, 79, 0.94) 0%,
      rgba(9, 38, 92, 0.76) 55%,
      rgba(9, 38, 92, 0.32) 100%
    );
  }

  .hero-copy {
    padding-bottom: 50px;
  }

  .section-pad {
    padding: 62px 0;
  }

  .services-section.pt-5 {
    padding-top: 55px !important;
  }

  .network-section {
    background: #f2f7fc;
  }

  .network-map {
    max-height: none;
  }

  .anita-bubble {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .container-xxl {
    width: min(100% - 24px, 680px);
  }

  .main-navbar,
  .main-navbar .container-xxl {
    min-height: 62px;
  }

  .navbar-brand img {
    width: 84px;
  }

  .mobile-actions .btn {
    min-height: 33px;
    padding: 0.44rem 0.58rem;
    font-size: 0.61rem;
  }

  .hero-slide {
    min-height: 530px;
    background-position: 58% center;
  }

  .hero-slide::before {
    background: linear-gradient(
      180deg,
      rgba(8, 31, 82, 0.28) 0%,
      rgba(8, 31, 82, 0.5) 42%,
      rgba(8, 31, 82, 0.97) 100%
    );
  }

  .hero-copy {
    align-self: end;
    padding: 0 0 66px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    max-width: 540px;
    font-size: clamp(1.82rem, 8vw, 2.35rem);
  }

  .hero-copy p {
    max-width: 95%;
    margin-bottom: 17px;
    font-size: 0.78rem;
  }

  .hero-copy .btn {
    min-height: 44px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .hero-section .owl-dots {
    bottom: 17px;
  }

  .quick-actions-wrap {
    padding-top: 0;
  }

  .quick-actions-wrap .container-xxl {
    width: 100%;
    padding-inline: 12px;
  }

  .quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -1px;
    padding: 12px;
    gap: 8px;
    overflow: hidden;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 12px 28px rgba(7, 53, 120, 0.18);
  }

  .quick-actions a,
  .quick-actions a:nth-child(n) {
    width: auto;
    min-width: 0;
    min-height: 96px;
    padding: 0.85rem 0.6rem;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .quick-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section-pad {
    padding: 52px 0;
  }

  .services-section.pt-5 {
    padding-top: 48px !important;
  }

  .section-heading h2,
  .anita-title {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }

  .service-card > img {
    height: 175px;
  }

  .anita-section {
    padding: 48px 0;
  }

  .anita-title {
    margin-bottom: 18px;
    text-align: center;
  }

  .anita-cta {
    width: 100%;
    justify-content: center;
  }

  .news-card-featured > a > img,
  .news-card > img,
  .news-card > a > img {
    height: 210px;
  }

  .news-content,
  .news-card-featured .news-content {
    min-height: 155px;
  }

  .plan-card {
    max-width: 420px;
  }

  .plan-card > img {
    height: 205px;
  }

  .network-stats {
    grid-template-columns: 1fr;
  }

  .network-stats > div {
    display: grid;
    min-height: 82px;
    padding: 13px 15px;
    grid-template-columns: 42px 62px 1fr;
    align-items: center;
    gap: 8px;
    text-align: left;
  }

  .network-stats i,
  .network-stats strong,
  .network-stats span {
    margin: 0;
  }

  .network-stats i {
    text-align: center;
  }

  .footer-partners .container-xxl {
    justify-content: center !important;
  }

  .partner-logos {
    justify-content: center;
  }

  .footer-pills {
    display: none;
  }

  .footer-main {
    padding: 40px 0;
  }

  .footer-main .row {
    --bs-gutter-y: 2rem;
  }

  .footer-bottom {
    padding-bottom: 18px;
    line-height: 1.55;
  }
}

@media (max-width: 575.98px) {
  .hero-copy .d-flex {
    gap: 7px !important;
  }

  .hero-copy .btn {
    flex: 1 1 145px;
  }

  .service-card > img {
    height: 195px;
  }

  .service-card-body {
    min-height: 105px;
  }

  .news-card-featured > a > img,
  .news-card > img,
  .news-card > a > img {
    height: 205px;
  }

  .plan-card > img {
    height: 190px;
  }

  .partner-wordmark {
    font-size: 0.8rem;
  }

  .supersalud-logo {
    width: 124px;
  }

  .site-footer .col-6 {
    width: 100%;
  }

  .mobile-utility-bar {
    right: 7px;
    bottom: calc(7px + env(safe-area-inset-bottom));
    left: 7px;
    border-radius: 15px;
  }
}

@media (max-width: 389.98px) {
  .mobile-actions .btn {
    padding-inline: 0.46rem;
  }

  .mobile-actions .btn i {
    display: none;
  }

  .hero-slide {
    min-height: 510px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 1.78rem;
  }

  .mobile-utility-bar a,
  .mobile-utility-bar button {
    font-size: 0.49rem;
  }
}

@media (hover: hover) and (min-width: 1200px) {
  .main-navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   AJUSTES FINALES RESPONSIVE
   Solo componentes propios del theme; Bootstrap conserva botones,
   grid, navbar y utilidades base.
   ================================================================ */

/* El alto del hero debe heredarse por sus contenedores internos. */
.hero-slide > .container-xxl,
.hero-slide > .container-xxl > .row {
  min-height: inherit;
}

/* Mayor legibilidad en escritorio para público adulto. */
@media (min-width: 1200px) {
  .topbar {
    min-height: 78px;
    padding-block: 10px;
  }

  .brand img {
    width: 126px;
  }

  .audience-nav a {
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    font-size: 0.79rem;
  }

  .site-search {
    max-width: 365px;
    height: 44px;
  }

  .site-search input,
  .site-search button,
  .phone-link {
    font-size: 0.78rem;
  }

  .social-mini {
    font-size: 0.72rem;
  }

  .social-mini a {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .main-navbar,
  .main-navbar .container-xxl {
    min-height: 56px;
  }

  .main-navbar .nav-link {
    min-height: 56px;
    padding-inline: 0.78rem !important;
    font-size: 0.76rem;
  }

  .nav-cta .btn {
    min-height: 40px;
    padding: 0.55rem 0.92rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 1199.98px) {
  .site-header {
    background: var(--sos-blue);
  }

  .main-navbar {
    min-height: 68px;
    padding: 0;
  }

  .main-navbar > .container-xxl {
    width: 100%;
    min-height: 68px;
    padding-inline: 16px;
    flex-wrap: nowrap;
  }

  /* El menú principal de escritorio no debe reservar espacio en móvil. */
  .main-navbar .navbar-collapse {
    display: none !important;
  }

  .navbar-brand {
    margin-right: auto;
    padding: 0;
  }

  .navbar-brand img {
    width: 108px;
    max-height: 50px;
    object-fit: contain;
  }

  .mobile-actions {
    margin-right: 10px !important;
  }

  .mobile-actions .btn {
    min-height: 42px;
    padding: 0.55rem 0.85rem;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 78px;
    font-size: 15px;
  }

  .main-navbar,
  .main-navbar > .container-xxl {
    min-height: 64px;
  }

  .main-navbar > .container-xxl {
    padding-inline: 12px;
  }

  .navbar-brand img {
    width: 96px;
    max-height: 44px;
  }

  .mobile-actions {
    margin-right: 8px !important;
  }

  .mobile-actions .btn {
    min-height: 40px;
    padding-inline: 0.72rem;
    font-size: 0.72rem;
  }

  .navbar-toggler {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  /* Hero móvil compacto y con contenido siempre visible. */
  .hero-slide {
    min-height: 430px;
    background-position: 72% center;
  }

  .hero-slide::before {
    background: linear-gradient(
      90deg,
      rgba(5, 30, 78, 0.96) 0%,
      rgba(5, 38, 91, 0.88) 58%,
      rgba(5, 38, 91, 0.45) 100%
    );
  }

  .hero-slide > .container-xxl {
    width: 100%;
    padding-inline: 20px;
  }

  .hero-slide > .container-xxl > .row {
    align-items: center !important;
  }

  .hero-copy {
    width: 100%;
    max-width: 350px;
    padding: 36px 0 70px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    max-width: 330px;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 340px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-copy .d-flex {
    max-width: 340px;
  }

  .hero-copy .btn {
    min-height: 44px;
    padding: 0.65rem 0.95rem;
    font-size: 0.78rem;
  }

  .hero-section .owl-dots {
    bottom: 22px;
  }

  .quick-actions-wrap {
    padding-bottom: 18px;
  }
}

@media (max-width: 389.98px) {
  .navbar-brand img {
    width: 88px;
  }

  .mobile-actions .btn {
    padding-inline: 0.58rem;
    font-size: 0.68rem;
  }

  .mobile-actions .btn i {
    display: none;
  }

  .hero-slide {
    min-height: 410px;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 1.78rem;
  }
}
