/* ============================================
   GLOBAL CARE F.S. — Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #4d5572;
  --color-secondary: #7a87a5;
  --color-accent: #a3b38d;
  --color-gold: #b8976a;
  --color-bg-light: #e2dfdd;
  --color-bg-neutral: #f0efef;
  --color-white: #ffffff;
  --color-text: #333340;
  --color-text-light: #6b6b7b;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Inter', sans-serif;

  --container-max: 1200px;
  --navbar-height: 84px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(77, 85, 114, 0.10);
  --shadow-lg: 0 12px 40px rgba(77, 85, 114, 0.15);
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__tagline {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: #a6844f;
  border-color: #a6844f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 151, 106, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--navbar-height);
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(77, 85, 114, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.navbar__logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.navbar__logo-global {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navbar__logo-care {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-gold);
}

.navbar__logo-fs {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.navbar__logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links {
  display: flex;
  gap: 8px;
}

.navbar__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar__cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-gold);
  padding: 10px 24px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
}

.navbar__cta:hover {
  background: #a6844f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 151, 106, 0.4);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a4060 40%, var(--color-secondary) 100%);
  background-size: 200% 200%;
  animation: heroGradient 12s ease infinite;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.55) 0%,
    rgba(26, 26, 46, 0.25) 40%,
    rgba(26, 26, 46, 0.6) 100%
  );
  z-index: 0;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Particles */
.hero__particles {
  position: absolute;
  inset: 0;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.hero__particle--gold {
  background: rgba(184, 151, 106, 0.5);
  box-shadow: 0 0 6px rgba(184, 151, 106, 0.3);
}

.hero__particle--accent {
  background: rgba(163, 179, 141, 0.5);
  box-shadow: 0 0 6px rgba(163, 179, 141, 0.3);
}

/* Glowing orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.hero__orb--1 {
  width: 350px;
  height: 350px;
  background: var(--color-gold);
  top: 20%;
  left: 15%;
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 280px;
  height: 280px;
  background: var(--color-accent);
  bottom: 15%;
  right: 10%;
  animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
  33% { transform: translate(40px, -30px) scale(1.1); opacity: 0.22; }
  66% { transform: translate(-20px, 20px) scale(0.95); opacity: 0.12; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.12; }
  40% { transform: translate(-35px, 25px) scale(1.08); opacity: 0.2; }
  70% { transform: translate(25px, -15px) scale(0.92); opacity: 0.1; }
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero__shape--1 {
  width: 600px;
  height: 600px;
  background: var(--color-gold);
  top: -200px;
  right: -150px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: -100px;
  left: -100px;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: var(--color-white);
  top: 30%;
  left: 10%;
}

.hero__shape--4 {
  width: 150px;
  height: 150px;
  background: var(--color-gold);
  bottom: 20%;
  right: 15%;
}

.hero__shape--5 {
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  top: 20%;
  right: 30%;
}

.hero__container {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  color: var(--color-gold);
  margin-bottom: 16px;
  opacity: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  opacity: 0;
}

.hero__subtitle strong {
  color: var(--color-accent);
}

.hero__description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
}

.hero__description strong {
  color: var(--color-gold);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  z-index: 2;
}

.hero__scroll-arrow {
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   BENEFICIOS
   ============================================ */
.beneficios {
  padding: 100px 0;
  background: var(--color-bg-neutral);
}

.beneficios__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.beneficio-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 260px;
  max-width: 340px;
  position: relative;
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 24px 32px;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
  border: 1px solid rgba(77, 85, 114, 0.06);
}

/* Decorative top accent bar */
.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  border-radius: 0 0 4px 4px;
  transition: width 0.4s ease;
}

/* Decorative number watermark */
.beneficio-card::after {
  content: attr(data-number);
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(77, 85, 114, 0.12), 0 8px 20px rgba(184, 151, 106, 0.08);
  border-color: rgba(184, 151, 106, 0.15);
}

.beneficio-card:hover::before {
  width: 100%;
}

.beneficio-card:hover::after {
  opacity: 0.08;
}

.beneficio-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 85, 114, 0.08), rgba(122, 135, 165, 0.06));
  border: 1px solid rgba(77, 85, 114, 0.08);
  border-radius: 16px;
  padding: 15px;
  transition: all 0.4s ease;
}

.beneficio-card:hover .beneficio-card__icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(77, 85, 114, 0.25);
}

.beneficio-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
  transition: stroke 0.4s ease;
}

.beneficio-card:hover .beneficio-card__icon svg {
  stroke: var(--color-white);
}

.beneficio-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.beneficio-card:hover .beneficio-card__title {
  color: var(--color-gold);
}

.beneficio-card__text {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: 0;
  background: #1a1d2e;
}

.video-section__wrapper {
  position: relative;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section__video {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 70vh;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(77, 85, 114, 0.6) 0%,
    rgba(58, 64, 96, 0.5) 50%,
    rgba(163, 179, 141, 0.3) 100%
  );
  z-index: 1;
}

.video-section__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.video-section__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-gold);
  margin-bottom: 12px;
}

.video-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.video-section__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   PRODUCTOS
   ============================================ */
.productos {
  padding: 100px 0;
  background: var(--color-white);
}

.productos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.producto-card {
  position: relative;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

/* Overlay */
.producto-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(77, 85, 114, 0.25) 0%,
    rgba(44, 48, 69, 0.85) 100%
  );
  transition: background 0.5s ease;
}

.producto-card:hover .producto-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(77, 85, 114, 0.15) 0%,
    rgba(44, 48, 69, 0.92) 100%
  );
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(44, 48, 69, 0.25), 0 8px 20px rgba(184, 151, 106, 0.1);
}

/* Content sits on top of overlay */
.producto-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 340px;
  padding: 32px 30px;
}

.producto-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 11px;
  color: var(--color-gold);
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.producto-card:hover .producto-card__icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(184, 151, 106, 0.4);
}

.producto-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.producto-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.producto-card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 18px;
}

.producto-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.producto-card__link:hover {
  color: var(--color-white);
  gap: 10px;
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

/* ============================================
   CONVENIOS
   ============================================ */
.convenios {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(160deg, #2c3045 0%, var(--color-primary) 40%, #3a4060 100%);
  color: var(--color-white);
  overflow: clip;
}

.convenios__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.convenios__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.convenios__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.08);
  top: -100px;
  right: -50px;
}

.convenios__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(163, 179, 141, 0.06);
  bottom: -80px;
  left: -80px;
}

.convenios .section-header__tagline {
  color: var(--color-gold);
}

.convenios .section-header__title {
  color: var(--color-white);
}

.convenios__intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  text-align: center;
}

.convenios__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.convenios__stat {
  text-align: center;
  padding: 36px 20px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.convenios__stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.convenios__stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 10px;
  color: var(--color-gold);
  transition: all 0.4s ease;
}

.convenios__stat:hover .convenios__stat-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #2c3045;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.convenios__stat-icon svg {
  width: 100%;
  height: 100%;
}

.convenios__stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.convenios__number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.convenios__plus {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
}

.convenios__label {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Divider */
.convenios__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  color: rgba(212, 175, 55, 0.35);
}

.convenios__divider span {
  display: block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Marquee */
.convenios__marquee {
  overflow: hidden;
  margin-bottom: 32px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.convenios__track {
  display: flex;
  gap: 20px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.convenio-logo {
  flex-shrink: 0;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.convenio-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.75);
}

.convenio-logo img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.3) brightness(0.9);
  transition: filter 0.3s ease;
}

.convenio-logo:hover img {
  filter: grayscale(0) brightness(1);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.convenios__note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Convenios logos — white section */
.convenios-logos {
  background: #fff;
  padding: 64px 0;
  text-align: center;
}

.convenios__destacados {
  text-align: center;
}

.convenios__destacados-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.convenio-destacado {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.convenio-destacado:hover {
  transform: scale(1.05);
}

.convenio-destacado img {
  height: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.convenio-destacado:hover img {
  opacity: 1;
}

.convenios__cta-btn {
  font-size: 1.05rem;
  padding: 18px 40px;
}

@media (max-width: 600px) {
  .convenios-logos {
    padding: 48px 0;
  }

  .convenios__destacados-grid {
    gap: 32px;
  }

  .convenio-destacado img {
    height: 65px;
  }

  .convenios__cta-btn {
    font-size: 0.95rem;
    padding: 16px 28px;
  }
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonios {
  padding: 100px 0;
  background: var(--color-bg-neutral);
}

.testimonios__carousel {
  max-width: 700px;
  margin: 0 auto;
}

.testimonios__track {
  position: relative;
  min-height: 300px;
}

.testimonio-card {
  position: absolute;
  inset: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.testimonio-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.testimonio-card__quote {
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0.4;
}

.testimonio-card__quote svg {
  width: 36px;
  height: 36px;
}

.testimonio-card__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonio-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonio-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonio-card__role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.testimonios__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testimonios__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.testimonios__btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.testimonios__btn svg {
  width: 20px;
  height: 20px;
}

.testimonios__dots {
  display: flex;
  gap: 8px;
}

.testimonios__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-bg-light);
  transition: all var(--transition);
}

.testimonios__dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-final__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.cta-final__shape--1 {
  width: 500px;
  height: 500px;
  background: var(--color-white);
  top: -200px;
  right: -100px;
}

.cta-final__shape--2 {
  width: 300px;
  height: 300px;
  background: var(--color-gold);
  bottom: -100px;
  left: -50px;
}

.cta-final__content {
  text-align: center;
  position: relative;
}

.cta-final__tagline {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-final__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #2c3045;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.footer__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a,
.footer__links span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer__social:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   REVEAL ANIMATION STATES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .beneficio-card {
    flex: 0 1 calc(50% - 12px);
  }
}

@media (max-width: 992px) {
  .convenios__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__links {
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-bottom: 24px;
  }

  .navbar__link {
    padding: 12px 16px;
    width: 100%;
  }

  .navbar__cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .beneficio-card {
    flex: 0 1 calc(50% - 12px);
    padding: 28px 18px;
  }

  .beneficio-card::after {
    font-size: 2.5rem;
  }

  .productos__grid {
    grid-template-columns: 1fr;
  }

  .convenios__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonio-card {
    padding: 32px 24px;
  }

  .testimonios__track {
    min-height: 360px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--large {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: center;
  }

  .beneficio-card {
    flex: 1 1 100%;
  }

  .testimonios__track {
    min-height: 420px;
  }
}

/* ============================================
   RESPONSIVE MOBILE ENHANCEMENTS
   ============================================ */

/* ---------- Tablet (max 768px) ---------- */
@media (max-width: 768px) {
  /* Reduce section paddings */
  .beneficios { padding: 70px 0; }
  .productos { padding: 70px 0; }
  .testimonios { padding: 70px 0; }
  .convenios { padding: 70px 0; }
  .cta-final { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }

  /* Video section — shorter on tablet */
  .video-section__wrapper { max-height: 50vh; }
  .video-section__video { max-height: 50vh; }

  /* Producto cards — reduce min-height */
  .producto-card { min-height: 300px; }
  .producto-card__content { min-height: 300px; padding: 28px 24px; }

  /* Convenios stats — reduce padding */
  .convenios__stat { padding: 28px 16px 24px; }

  /* Hero — hide scroll indicator on small screens */
  .hero__scroll-indicator { bottom: 16px; }

  /* Footer — reduce top padding */
  .footer { padding-top: 48px; }
}

/* ---------- Small mobile (max 480px) ---------- */
@media (max-width: 480px) {
  /* Tighter container padding */
  .container { padding: 0 16px; }

  /* Further reduce section paddings */
  .beneficios { padding: 56px 0; }
  .productos { padding: 56px 0; }
  .testimonios { padding: 56px 0; }
  .convenios { padding: 56px 0; }
  .cta-final { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }

  /* Hero */
  .hero { padding: 80px 16px 60px; }
  .hero__scroll-indicator { display: none; }

  /* Video section — even shorter */
  .video-section__wrapper { max-height: 40vh; }
  .video-section__video { max-height: 40vh; }

  /* Producto cards — more compact */
  .producto-card { min-height: 260px; }
  .producto-card__content { min-height: 260px; padding: 20px 18px; }
  .producto-card__title { font-size: 1.2rem; }
  .producto-card__text { font-size: 0.85rem; margin-bottom: 12px; }

  /* Convenios stats — tighter */
  .convenios__stats { gap: 12px; }
  .convenios__stat { padding: 20px 12px 18px; }
  .convenios__number { font-size: clamp(2rem, 8vw, 2.8rem); }
  .convenios__label { font-size: 0.75rem; }

  /* Testimonios — more vertical space for content */
  .testimonio-card { padding: 24px 18px; }
  .testimonio-card__text { font-size: 0.95rem; line-height: 1.7; }

  /* Footer — tighter */
  .footer { padding-top: 40px; }
  .footer__grid { gap: 28px; }
  .footer__bottom { padding: 18px 0; }

  /* Beneficio cards — less padding */
  .beneficio-card { padding: 24px 16px; }
  .beneficio-card__icon { width: 56px; height: 56px; margin-bottom: 18px; }
}

/* ---------- Very small mobile (max 360px) ---------- */
@media (max-width: 360px) {
  /* Convenios stats — 1 column for very small screens */
  .convenios__stats { grid-template-columns: 1fr; gap: 10px; }
  .convenios__stat { padding: 18px 16px; }

  /* Even tighter padding */
  .container { padding: 0 12px; }
  .navbar { padding: 0 12px; }

  /* Testimonios — allow more scroll space */
  .testimonios__track { min-height: 460px; }

  /* Buttons — fit in narrow screens */
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .btn--large { padding: 14px 28px; font-size: 0.9rem; }
}
