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

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f0f4f6;
  color: #033743;
}

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

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

.page {
  overflow: hidden;
}

/* .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
} */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  color: #fefaf3;
  font-family: "Playfair Display", Georgia, serif;
}

p {
  margin: 0;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "Playfair Display", Georgia, serif;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.btn:focus {
  outline: 2px dashed #fdd8a2;
  outline-offset: 4px;
}

.btn--outline {
  border: 4px solid #ff7a3d;
  color: #ff7a3d;
  background: #ffffff;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 3px #ffffff, 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--directory {
  border: 4px solid #0090a1;
  color: #0090a1;
  background: #ffffff;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 3px #ffffff, 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--solid {
  background: #ff7a3d;
  border-color: #ff7a3d;
  color: #fff6ec;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  margin: 0;
  padding: clamp(3.4rem, 5vw, 4.6rem) 0;
  background-image: url("img/FONDO.webp");
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  overflow: hidden;
  min-height: 600px;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  z-index: 3;
  align-items: center;
}

.hero__copy .hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fdd8a2;
  font-family: "Playfair Display", Georgia, serif;
}

.hero__copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: "Playfair Display", Georgia, serif;
}

.hero__copy .hero__text {
  color: #fff6ec;
  margin-bottom: 1.75rem;
  max-width: 34ch;
}

.hero__art {
  justify-self: center;
  display: grid;
  gap: 1.5rem;
}

.hero__logo {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  background: #fff8ee;
  padding: 0.6rem 1.2rem;
  border-radius: 1.6rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  font-size: 1.45rem;
  font-weight: 700;
  color: #0090a1;
}

.logo-bubble {
  padding: 0.4rem 0.8rem;
  border-radius: 1.5rem;
  background: #d6f3f5;
}

.logo-bubble--accent {
  color: #ff7a3d;
  background: #ffe3d1;
}

.hero__image {
  position: relative;
  padding: 1.25rem 1.5rem;
  background: #fef9f2;
  border-radius: 50% / 38%;
  border: 5px solid #ff7a3d;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50% / 42%;
  border: 2px dashed rgba(0, 109, 121, 0.35);
  pointer-events: none;
}

.insights {
  background-image: url("img/FONDO2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.insights__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.insight-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  text-align: center;
  color: #033743;
  display: grid;
  grid-template-rows: auto auto 1fr;
  height: 100%;
}

.insight-card::before {
  display: none;
}

.insight-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 165, 181, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
}

.insight-card__media::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 1.35rem;
  padding: 4px;
  background: linear-gradient(135deg, #00a5b5, #ff7a3d, #0090a1, #ff6900);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 1;
  animation: gradient-border-flow 4s ease infinite;
  pointer-events: none;
}

.insight-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.03) 100%
  );
  pointer-events: none;
  z-index: 2;
}

@keyframes gradient-border-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}

.insight-card h3 {
  color: #005054;
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
}

.insight-card__content {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-card__subtitle {
  color: #033743;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  position: relative;
  display: inline-block;
}

.insight-card__subtitle::before,
.insight-card__subtitle::after {
  content: "✦";
  color: #005054;
  font-size: 1.2em;
  margin: 0 0.3em;
  display: inline;
}

.insight-card__text {
  color: #033743;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex-grow: 1;
}

.btn--turquoise {
  background: #00a5b5;
  border: 3px solid #00a5b5;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px #00656c, 0 6px 0 #00656c, 0 8px 12px rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  position: relative;
  top: 0;
  transition: all 0.1s ease;
  letter-spacing: 0.02em;
  margin-top: auto;
}

.btn--turquoise:hover {
  top: 3px;
  box-shadow: 0 0 0 4px #00656c, 0 3px 0 #00656c, 0 5px 8px rgba(0, 0, 0, 0.25);
}

.btn--turquoise:active {
  top: 6px;
  box-shadow: 0 0 0 4px #00656c, 0 0 0 #00656c, 0 2px 4px rgba(0, 0, 0, 0.25);
}

.products {
  background: #effbfe;
  padding: clamp(3rem, 5vw, 4rem) 0;
  position: relative;
}

.products-swiper {
  padding: 2rem 0;
  position: relative;
}

.products-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-card {
  background: transparent;
  border-radius: 0;
  padding: 0 0 1rem;
  box-shadow: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card__title {
  color: #005054;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.product-card__description {
  color: #033743;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  padding: 0 0.5rem;
}

.btn--info {
  border-radius: 2rem;
  padding: 0.6rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 0 0 3px transparent;
  transition: all 0.3s ease;
  display: inline-block;
  align-self: center;
  margin-top: auto;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  position: relative;
  overflow: hidden;
}

.btn--info::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn--info:hover::before {
  width: 300px;
  height: 300px;
}

.btn--info-turquoise {
  background: #ffffff;
  border: 3px solid #00a5b5;
  color: #005054;
  box-shadow: 0 0 0 3px #00a5b5;
  animation: pulse-info-turquoise 2s ease-in-out infinite;
}

@keyframes pulse-info-turquoise {
  0% {
    box-shadow: 0 0 0 3px #00a5b5, 0 0 0 0 rgba(0, 165, 181, 0.7);
  }
  70% {
    box-shadow: 0 0 0 3px #00a5b5, 0 0 0 12px rgba(0, 165, 181, 0);
  }
  100% {
    box-shadow: 0 0 0 3px #00a5b5, 0 0 0 0 rgba(0, 165, 181, 0);
  }
}

.btn--info-turquoise:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 0 3px #00a5b5, 0 8px 16px rgba(0, 165, 181, 0.4);
  animation: none;
}

.btn--info-orange {
  background: #ffffff;
  border: 3px solid #ff7a3d;
  color: #ff7a3d;
  box-shadow: 0 0 0 3px #ff7a3d;
  animation: pulse-info-orange 2s ease-in-out infinite;
}

@keyframes pulse-info-orange {
  0% {
    box-shadow: 0 0 0 3px #ff7a3d, 0 0 0 0 rgba(255, 122, 61, 0.7);
  }
  70% {
    box-shadow: 0 0 0 3px #ff7a3d, 0 0 0 12px rgba(255, 122, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 3px #ff7a3d, 0 0 0 0 rgba(255, 122, 61, 0);
  }
}

.btn--info-orange:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 0 3px #ff7a3d, 0 8px 16px rgba(255, 122, 61, 0.4);
  animation: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0090a1;
  background: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #0090a1;
  opacity: 1;
}

.product-card--mini {
  padding: 1.75rem 1.25rem;
}

.products__row--compact {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.video-feature {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #effbfe;
}

.video-feature__title {
  text-align: center;
  color: #005054;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  margin: 0 0 2.5rem;
  line-height: 1.4;
}

.video-feature__title .text-highlight {
  color: #ff7a3d;
  font-weight: 700;
}

.video-feature__title .text-bold {
  font-weight: 700;
  color: #005054;
}

.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.video-frame__play {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
}

.video-frame__play:focus {
  outline: 3px dashed #0090a1;
  outline-offset: 6px;
}

.video-frame__background {
  width: 100%;
  height: auto;
  display: block;
}

.video-frame__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(60px, 12vw, 120px);
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.video-frame__play:hover .video-frame__play-button {
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.video-frame__embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  overflow: hidden;
}

/* .play-icon is now replaced by video-frame__play-button image */

.play-icon--small {
  width: clamp(2.5rem, 4vw, 3.1rem);
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #ff8a50 20%, #ff6f36 80%);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.play-icon--small::before {
  border-top: calc(clamp(2.5rem, 4vw, 3.1rem) * 0.32) solid transparent;
  border-bottom: calc(clamp(2.5rem, 4vw, 3.1rem) * 0.32) solid transparent;
  border-left: calc(clamp(2.5rem, 4vw, 3.1rem) * 0.52) solid #fff;
}

.feature-cta {
  padding: 0 0 clamp(2rem, 4vw, 3rem) 0;
}

.feature-cta__images {
  display: flex;
  width: 100%;
  gap: 0;
}

.feature-cta__item {
  position: relative;
  width: 50%;
}

.feature-cta__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.feature-cta__btn {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: transform 0.3s ease;
}

.feature-cta__item:first-child .feature-cta__btn:hover {
  transform: translateX(-40%);
}

.feature-cta__item:last-child .feature-cta__btn:hover {
  transform: translateX(-60%);
}

.featured-lineup {
  background: linear-gradient(180deg, #c5f4f8 0%, #a5edf4 100%);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.featured-swiper {
  position: relative;
  padding: 0 60px;
}

.featured-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.featured-swiper .swiper-button-prev,
.featured-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.featured-swiper .swiper-button-prev:after,
.featured-swiper .swiper-button-next:after {
  font-size: 20px;
  color: #00a5b5;
  font-weight: bold;
}

.featured-swiper .swiper-pagination-bullet {
  background: #00a5b5;
  opacity: 0.5;
}

.featured-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.featured-swiper .swiper-pagination {
  bottom: -2.5rem;
}

.shorts {
  background: #fffdf8;
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(4rem, 6vw, 5rem);
}

.shorts__title {
  text-align: center;
  color: #006d79;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
}

.shorts-swiper {
  position: relative;
  padding: 2rem 0;
  width: 100%;
}

.shorts-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centrar cuando hay un solo short */
.shorts-swiper .swiper-wrapper {
  justify-content: center;
}

/* Asegurar que el short card esté centrado */
.short-card {
  width: 100%;
  max-width: 220px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  margin: 0 auto;
}

.short-card:hover {
  transform: scale(1.05);
}

.short-card__frame {
  position: relative;
  width: 100%;
}

.short-card__frame-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.short-card__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 6%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.short-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.short-card__play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  border-radius: 1rem;
}

.short-card:hover .short-card__play-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.short-card__play-overlay svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
  animation: pulse-play 2s ease-in-out infinite;
}

.short-card__play-overlay svg circle {
  fill: rgba(255, 105, 0, 0.7);
  stroke: none;
}

.short-card__play-overlay svg path {
  fill: #ffffff;
}

.short-card:hover .short-card__play-overlay svg {
  transform: scale(1.15);
  animation: none;
}

@keyframes pulse-play {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.short-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.short-overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

.short-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 69, 77, 0.9);
  backdrop-filter: blur(8px);
}

.short-overlay__content {
  position: relative;
  width: min(92vw, 420px);
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.5);
}

.short-overlay__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  font-size: 2rem;
  line-height: 1;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.short-overlay__close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.short-overlay__iframe-wrap {
  aspect-ratio: 9 / 16;
  background: #000;
  position: relative;
}

.short-overlay__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.no-scroll {
  overflow: hidden;
}

.directory {
  background: linear-gradient(135deg, #d6f3f5 0%, #effbfe 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.directory__title {
  text-align: center;
  color: #ff6900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.1em;
}

.directory__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.directory__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.directory__logo-circle {
  width: clamp(180px, 30vw, 280px);
  height: clamp(180px, 30vw, 280px);
  border-radius: 50%;
  background: linear-gradient(135deg, #00a5b5 0%, #0090a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 165, 181, 0.3);
  padding: 1.5rem;
}

.directory__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.directory__info {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.directory__actions {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.directory__subtitle {
  color: #033743;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.directory__text {
  color: #033743;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
}

.directory__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}

.btn--directory-web,
.btn--directory-contact {
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn--directory-web {
  background: #ff6900;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.btn--directory-web:hover {
  background: #e55e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 105, 0, 0.4);
}

.btn--directory-contact {
  background: #ff6900;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.btn--directory-contact:hover {
  background: #e55e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 105, 0, 0.4);
}

.directory__social {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.directory__social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff6900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

.directory__social-link:hover {
  transform: translateY(-4px);
  background: #e55e00;
  box-shadow: 0 6px 16px rgba(255, 105, 0, 0.4);
}

.directory__social-link i {
  font-size: 24px;
  color: #ffffff;
}

.page-footer {
  background: #02454d;
  color: #c5f4f8;
  padding: 2rem 0;
}

.page-footer p {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .directory__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .directory__logo {
    order: 1;
  }

  .directory__info {
    order: 2;
  }

  .directory__actions {
    order: 3;
  }
}

@media (max-width: 900px) {
  .hero__image {
    border-radius: 45% / 40%;
  }
}

@media (max-width: 720px) {
  .hero {
    background-image: none;
    background: linear-gradient(180deg, #0090a1 0%, #007a86 100%);
    min-height: auto;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy .hero__text {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

  .products::before,
  .products::after {
    display: none;
  }

  .insight-card {
    padding: 2.25rem 1.5rem 1.75rem;
  }

  .feature-cta__images {
    flex-direction: column;
  }

  .feature-cta__item {
    width: 100%;
  }

  .feature-cta__btn {
    bottom: 2rem;
    padding: 0.7rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 540px) {
  /* .container {
    width: min(92vw, 480px);
  } */

  .feature-cta__btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    bottom: 1.5rem;
  }

  .reels__grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}
