/* =============================================
   VARIABLES
   ============================================= */
:root {
  --primary:    #f4a259;
  --secondary:  #dbfafa;
  --background: #0f3f44;
  --white:      #ffffff;
  --text-dark:  #0f3f44;
  --text-muted: #3b5c60;
}

/* =============================================
   RESET
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background: var(--background);
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   ANIMACIONES
   ============================================= */
@keyframes btnPop {
  0%   { opacity: 0; transform: scale(0.8) translateY(10px); }
  100% { opacity: 1; transform: scale(1)   translateY(0); }
}

@keyframes companias-scroll {
  from { transform: translate3d(0,    0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* =============================================
   LAYOUT BASE
   ============================================= */
.container {
  max-width: 82.5rem;     /* 1320px */
  margin: 0 auto;
  padding: 1.25rem 1.75rem;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 0.15rem 0 0.6rem;
  position: relative;
}

.nav-group {
  display: flex;
  gap: 3.1rem;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav a:hover {
  color: var(--primary);
  transform: translateY(-0.05rem);
}

/* =============================================
   LOGO
   ============================================= */
.logo {
  width: 4.6rem;
  height: 4.6rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 53.75rem;   /* 860px */
  padding-bottom: 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
  margin-top: 4.375rem;
}

/* ===== HERO TEXT ===== */
.kicker {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.125rem;
  text-transform: uppercase;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.45rem;
  line-height: 1.08;
  margin-bottom: 1.375rem;
}

.subtitle {
  font-size: 1.25rem;
  opacity: 0.88;
  margin-bottom: 2rem;
}

.subtitle span {
  margin: 0 0.625rem;
  opacity: 0.7;
}

/* ===== HERO IMAGE ===== */
.hero-image {
  display: flex;
  justify-content: flex-end;
}

.image-circle {
  width: 40rem;
  height: 40rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-circle img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 1.375rem 1.75rem rgba(0, 0, 0, 0.25));
}

/* =============================================
   BOTÓN PRIMARIO
   ============================================= */
.btn-primary {
  background-color: var(--primary);
  border: none;
  padding: 1rem 2.125rem;
  border-radius: 0.75rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1.125rem 2.25rem rgba(0, 0, 0, 0.26);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-0.0625rem);
}

/* =============================================
   NOSOTROS
   ============================================= */
.nosotros {
  background-color: #f4fbfb;
  padding: 6rem 0;
  color: var(--text-dark);
}

.nosotros-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.nosotros-title::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.2rem;
  background-color: var(--text-dark);
  margin: 1rem auto 0;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  text-align: center;
}

.nosotros-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  letter-spacing: 0.08rem;
}

.nosotros-card p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.nosotros-icon {
  margin-bottom: 2rem;
}

.nosotros-icon img {
  width: 4.5rem;
  height: 4.5rem;
  stroke: var(--primary);
}

/* =============================================
   SEGUROS
   ============================================= */
.seguros {
  position: relative;
  padding: 5.5rem 0 6rem;
  color: var(--white);
  background: url("assets/seguros-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.seguros::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(219, 250, 250, 0.80);
}

.seguros__container {
  position: relative;
  z-index: 1;
}

.seguros__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.seguros__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 0.95;
  letter-spacing: 0.08rem;
  color: var(--text-dark);
}

.seguros__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.seguros__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
  justify-items: center;
}

/* ===== SEG-CARD ===== */
.seg-card {
  width: 100%;
  max-width: 18.5rem;
  background: var(--text-dark);
  border-radius: 1.6rem;
  padding: 2rem 1.6rem 1.6rem;
  text-align: center;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.18);
}

.seg-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.seg-card__list {
  list-style: none;
  text-align: left;
  margin: 0 auto 1.6rem;
  padding: 0;
  max-width: 15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.55;
}

.seg-card__list li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0.28rem 0;
}

.seg-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.95);
}

.seg-card__icon {
  display: grid;
  place-items: center;
  margin: 1.6rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.92);
}

.seg-card__icon svg {
  width: 5.2rem;
  height: 5.2rem;
}

.seg-card__btn {
  border: 0;
  cursor: pointer;
  background: var(--primary);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05rem;
  font-size: 0.85rem;
  padding: 0.8rem 2.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: btnPop 0.6s ease-out 0.4s backwards;
}

.seg-card__btn:hover {
  filter: brightness(1.15);
  transform: translateY(-0.12rem) scale(1.08);
  box-shadow: 0 0.8rem 2rem rgba(244, 162, 89, 0.45);
}

.seg-card__btn:active {
  transform: scale(0.95) translateY(0.05rem);
}

/* =============================================
   SERVICIOS
   ============================================= */
.servicios {
  background: #f4fbfb;
  padding: 5rem 0 6rem;
  color: var(--text-dark);
}

.servicios__container {
  position: relative;
}

.servicios__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.servicios__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0.06rem;
  color: var(--text-dark);
}

.servicios__desc {
  max-width: 46rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #2b5559;
}

.servicios__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.servicios__cards {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

/* ===== SRV-CARD ===== */
.srv-card {
  background: var(--text-dark);
  color: var(--white);
  border-radius: 1.8rem;
  padding: 1.8rem 2rem;
  width: 100%;
  max-width: 26rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.14);
}

.srv-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.srv-card__icon {
  color: rgba(255, 255, 255, 0.95);
}

.srv-card__icon svg {
  width: 3.2rem;
  height: 3.2rem;
}

.srv-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06rem;
  text-decoration: none;
}

.srv-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.srv-card__list li {
  position: relative;
  padding-left: 1.1rem;
}

.srv-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.95);
}

.srv-card__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.srv-card__btn {
  border: 0;
  cursor: pointer;
  background: var(--primary);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05rem;
  font-size: 0.82rem;
  padding: 0.75rem 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: btnPop 0.6s ease-out 0.25s backwards;
}

.srv-card__btn:hover {
  filter: brightness(1.15);
  transform: translateY(-0.12rem) scale(1.08);
  box-shadow: 0 0.8rem 2rem rgba(244, 162, 89, 0.45);
}

.srv-card__btn:active {
  transform: scale(0.95) translateY(0.05rem);
}

/* ===== SERVICIOS IMAGE ===== */
.servicios__image {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  padding-top: 2.5rem;
}

.servicios__image img {
  width: 46rem;
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 2.6rem 4rem rgba(0, 0, 0, 0.25));
}

/* =============================================
   CONTACTO
   ============================================= */
.contacto {
  background: var(--background);
  padding: 4.5rem 0 5rem;
  color: var(--white);
}

.contacto__container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.contacto__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 4.1rem;
  letter-spacing: 0.05rem;
  margin-bottom: 2.4rem;
}

.contacto__items {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-bottom: 2.6rem;
}

.contacto__item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.contacto__icon {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
}

.contacto__icon svg {
  width: 100%;
  height: 100%;
}

.contacto__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03rem;
  color: rgba(255, 255, 255, 0.95);
}

.contacto__btn {
  background: var(--primary);
  color: var(--white);
  border: 0;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.95rem 2.4rem;
  border-radius: 0.8rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.contacto__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-0.08rem);
}

.contacto__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacto__map {
  width: 100%;
  height: 30rem;
  border: 0;
  border-radius: 0.2rem;
  box-shadow: 0 1.3rem 2.6rem rgba(0, 0, 0, 0.22);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--primary);
  padding: 2.2rem 0 0;
  margin: 0;
  color: var(--text-dark);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.footer__logo {
  width: 10rem;
  height: auto;
  display: block;
}

.footer__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.footer__text {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer__nav {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.footer__nav li {
  margin: 0.25rem 0;
}

.footer__nav a {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  text-decoration: none;
}

.footer__social {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__social-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--text-dark);
}

.footer__icon svg {
  width: 100%;
  height: 100%;
}

.footer__link {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  text-decoration: none;
}

/* =============================================
   CARRUSEL COMPAÑÍAS
   ============================================= */
.companias {
  background-color: #ffffff;
  padding: 1.5rem 0 3.5rem;
  overflow: hidden;
}

.companias__heading {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  opacity: 0.75;
}

.companias__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.companias__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 4rem;
  animation: companias-scroll 35s linear infinite;
  will-change: transform;
}

.companias__item {
  flex: 0 0 auto;
  width: 11rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companias__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.companias__item img:hover {
  opacity: 1;
}

/* =============================================
   HOVER EN CARDS (transición global)
   ============================================= */
.nosotros-card,
.seg-card,
.cubrimos__item,
.planes__card,
.srv-card,
.gestoria-servicios__card,
.gestoria-doc__box,
.proceder-extendido__block {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nosotros-card:hover,
.cubrimos__item:hover,
.planes__card:hover,
.gestoria-servicios__card:hover,
.gestoria-doc__box:hover,
.proceder-extendido__block:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1.4rem 2.4rem rgba(0, 0, 0, 0.10);
}

.seg-card:hover,
.srv-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1.6rem 2.8rem rgba(0, 0, 0, 0.28);
}

/* =============================================
   FOCUS VISIBLE (accesibilidad por teclado)
   ============================================= */
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.seg-card__btn:focus-visible,
.srv-card__btn:focus-visible,
.contacto__btn:focus-visible,
.cubrimos__cta:focus-visible,
.cta-naranja__btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 0.4rem;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   UTILIDAD: IMAGEN TRABAJO EN EQUIPO
   ============================================= */
.trabajo-equipo-img {
  filter: sepia(1) hue-rotate(25deg) saturate(2.5) brightness(1.1);
}

/* =============================================
   PAGE: SEGUROS PERSONALES / EMPRESARIALES
         / INDUSTRIALES (cuerpo claro)
   ============================================= */
body.personales,
body.empresariales,
body.industriales {
  background: #f6fbfb;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* NAV en páginas internas */
body.personales .nav a,
body.empresariales .nav a,
body.industriales .nav a {
  color: rgba(15, 63, 68, 0.75);
}

body.personales .nav a:hover,
body.empresariales .nav a:hover,
body.industriales .nav a:hover {
  color: var(--primary);
}

/* Reset nav/header para que coincida con el index */
body.personales header,
body.personales nav,
body.personales .navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  height: auto !important;
}

body.personales nav a,
body.personales .navbar a {
  line-height: normal;
  padding-top: inherit;
  padding-bottom: inherit;
}

body.personales .hero {
  margin-top: 0 !important;
}

/* HERO páginas internas */
body.personales .hero,
body.empresariales .hero,
body.industriales .hero {
  min-height: auto;
  padding-top: 3.2rem;
  padding-bottom: 4.2rem;
}

/* Layout 2 columnas */
body.personales .hero-grid--personales-2col,
body.empresariales .hero-grid--personales-2col,
body.industriales .hero-grid--personales-2col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 6rem;
  margin-top: 1.8rem;
}

/* Columna izquierda */
body.personales .hero-text--personales-left,
body.empresariales .hero-text--personales-left,
body.industriales .hero-text--personales-left {
  max-width: 44rem;
  text-align: center;
}

/* Título */
body.personales .personales-title,
body.empresariales .personales-title,
body.industriales .personales-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4.1rem;
  line-height: 1.05;
  margin: 0 0 1.8rem;
  color: var(--text-dark);
}

/* Párrafos */
body.personales .personales-lead,
body.empresariales .personales-lead,
body.industriales .personales-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 0 0 2.6rem;
  color: var(--text-dark);
  opacity: 0.9;
}

body.personales .personales-desc,
body.empresariales .personales-desc,
body.industriales .personales-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  margin: 0 0 3.4rem;
  color: var(--text-dark);
  opacity: 0.9;
}

/* Botón */
body.personales .btn-personales,
body.empresariales .btn-personales,
body.industriales .btn-personales {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 52px;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

body.personales .btn-personales:visited,
body.personales .btn-personales:hover,
body.personales .btn-personales:active {
  text-decoration: none;
}

/* Imagen derecha */
body.personales .hero-image--personales-right,
body.empresariales .hero-image--personales-right,
body.industriales .hero-image--personales-right {
  justify-self: end;
}

body.personales .personales-hero-img,
body.empresariales .personales-hero-img,
body.industriales .personales-hero-img {
  width: min(680px, 60vw);
  height: auto;
  display: block;
  margin-top: 0;
  filter: none;
}

/* Footer páginas internas */
body.personales .footer,
body.empresariales .footer,
body.industriales .footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: auto;
  padding: 2.2rem 0 0;
}

body.personales .footer .container {
  max-width: 82.5rem;
  margin: 0 auto;
}

/* Contacto full-width en páginas internas */
body.personales .contacto {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* =============================================
   SOLO EMPRESARIALES – COLORES
   ============================================= */
body.empresariales .personales-title,
body.empresariales .cubrimos__title,
body.empresariales .planes__title,
body.empresariales .cubrimos__text h3,
body.empresariales .planes__h3 {
  color: var(--primary);
}

body.empresariales .planes__icon,
.planes__card .planes__icon {
  background: var(--primary) !important;
  background-color: var(--primary) !important;
}

body.empresariales .cubrimos__check {
  color: var(--background);
}

body.empresariales .btn-primary,
body.empresariales .btn-personales,
body.empresariales .cubrimos__cta,
body.empresariales .seg-card__btn {
  background: var(--background);
  color: var(--white);
}

body.empresariales .btn-primary:hover,
body.empresariales .btn-personales:hover,
body.empresariales .cubrimos__cta:hover,
body.empresariales .seg-card__btn:hover {
  filter: brightness(1.1);
}

/* =============================================
   SECCIÓN: CUBRIMOS
   ============================================= */
.cubrimos {
  background: #f6fbfb;
  padding: 5.5rem 0 5rem;
}

.cubrimos__inner {
  width: min(980px, 92%);
  margin: 0 auto;
}

.cubrimos__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 1.05;
  text-align: center;
  color: var(--text-dark);
  margin: 0 0 4.2rem;
}

.cubrimos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8rem;
  row-gap: 6rem;
  align-items: start;
}

.cubrimos__item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  row-gap: 1.2rem;
  align-items: start;
}

.cubrimos__item--center {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
}

.cubrimos__check {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary);
  margin-top: 6px;
}

.cubrimos__text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--text-dark);
  margin: 0 0 0.8rem;
}

.cubrimos__text p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(15, 63, 68, 0.92);
  margin: 0;
}

.cubrimos__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 56px;
  margin: 5.2rem auto 0;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

/* =============================================
   SECCIÓN: PLANES
   ============================================= */
.planes {
  background: #f6fbfb;
  padding: 5.5rem 0 5rem;
}

.planes__inner {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.planes__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4.2rem;
  line-height: 1.05;
  text-align: center;
  color: var(--text-dark);
  margin: 0 0 3.8rem;
}

.planes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  align-items: start;
}

.planes__card {
  text-align: center;
}

.planes__icon {
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 1.6rem;
}

.planes__icon svg {
  width: 46px;
  height: 46px;
  color: #0b0b0b;
}

.planes__h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 1.1rem;
}

.planes__p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(15, 63, 68, 0.92);
  margin: 0;
  max-width: 18.5rem;
  margin-inline: auto;
}

/* =============================================
   SSN BAR
   ============================================= */
.ssn-bar {
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.2rem 0;
}

.ssn-bar__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 0 1.5rem;
  text-align: center;
}

.ssn-bar__item {
  font-size: 0.85rem;
  color: #333;
  display: flex;
  flex-direction: column;
}

.ssn-bar__item span   { font-weight: 400; }
.ssn-bar__item strong { font-weight: 600; }

.ssn-bar__divider {
  width: 1px;
  height: 40px;
  background: #ccc;
}

.ssn-bar__logo {
  margin-left: auto;
}

.ssn-bar__logo img {
  height: 80px;
  object-fit: contain;
}

/* =============================================
   RECLAMO A TERCEROS
   ============================================= */
.reclamo-terceros {
  background: #f2f4f5;
  padding: 6rem 0;
}

.reclamo-terceros__container {
  width: min(1050px, 90%);
  margin: 0 auto;
}

.reclamo-terceros__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #18484a;
  margin-bottom: 2rem;
}

.reclamo-terceros__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c3e40;
  margin-bottom: 2.5rem;
  max-width: 950px;
}

.reclamo-terceros__list {
  padding-left: 1.2rem;
  max-width: 950px;
}

.reclamo-terceros__list li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #2c3e40;
}

/* =============================================
   CTA NARANJA
   ============================================= */
.cta-naranja {
  background: var(--primary);
  padding: 2.8rem 0;
}

.cta-naranja__container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.cta-naranja__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
}

.cta-naranja__btn {
  background: var(--white);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-naranja__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* =============================================
   PROCEDER EXTENDIDO
   ============================================= */
.proceder-extendido {
  background: #f6fbfb;
  padding: 6rem 0;
}

.proceder-extendido__container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.proceder-extendido__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--text-dark);
  margin-bottom: 3.5rem;
}

.proceder-extendido__block {
  margin-bottom: 3rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}

.proceder-extendido__block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.proceder-extendido__block p,
.proceder-extendido__block li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c3e40;
}

.proceder-extendido__block ul {
  padding-left: 1.2rem;
}

/* =============================================
   PAGE: GESTORÍA
   ============================================= */
body.gestoria .gestoria-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

body.gestoria .gestoria-hero__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(244, 162, 89, 0.55);
  padding-bottom: 0.15rem;
}

body.gestoria .gestoria-hero__link:hover {
  border-bottom-color: var(--primary);
}

/* Trámites */
.gestoria-servicios {
  background: #f6fbfb;
  padding: 5.5rem 0;
  color: var(--text-dark);
}

.gestoria-servicios__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.gestoria-servicios__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.gestoria-servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.gestoria-servicios__card {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 1.2rem 2.2rem rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(15, 63, 68, 0.08);
}

.gestoria-servicios__card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.gestoria-servicios__card p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
  color: rgba(15, 63, 68, 0.9);
}

.gestoria-servicios__hint {
  display: inline-block;
  font-size: 0.92rem;
  color: rgba(15, 63, 68, 0.75);
}

/* Documentación */
.gestoria-doc {
  background: #f2f4f5;
  padding: 6rem 0;
}

.gestoria-doc__container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.gestoria-doc__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.gestoria-doc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.gestoria-doc__box {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1.6rem 1.4rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 1.2rem 2.2rem rgba(0, 0, 0, 0.06);
}

.gestoria-doc__box h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  color: var(--text-dark);
}

.gestoria-doc__box ul {
  padding-left: 1.2rem;
  margin: 0;
}

.gestoria-doc__box li {
  margin: 0.45rem 0;
  line-height: 1.6;
  color: rgba(15, 63, 68, 0.9);
}

.gestoria-doc__note {
  margin-top: 1.4rem;
  color: rgba(15, 63, 68, 0.75);
  font-size: 0.95rem;
}

/* =============================================
   HAMBURGER + MENÚ MOBILE
   ============================================= */
.nav-burger,
.mobile-menu { display: none; }

/* =============================================
   RESPONSIVE – DESKTOP (≤ 1100px / 68.75rem)
   ============================================= */
@media (max-width: 68.75rem) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
  }

  .image-circle {
    width: 35rem;
    height: 35rem;
  }

  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .nosotros-title {
    font-size: 2.2rem;
  }

  .seguros__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seguros__title {
    font-size: 3.6rem;
  }

  .seguros__cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .seg-card {
    max-width: 22rem;
  }

  .servicios__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .servicios__title {
    font-size: 3.2rem;
  }

  .servicios__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .servicios__cards {
    align-items: center;
  }

  .srv-card {
    max-width: 28rem;
  }

  .contacto__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contacto__title {
    font-size: 3.2rem;
    text-align: left;
  }

  .contacto__map {
    height: 22rem;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .gestoria-servicios__grid,
  .gestoria-doc__grid {
    grid-template-columns: 1fr 1fr;
  }

  .planes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   RESPONSIVE – TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) {

  body.personales .hero-grid--personales-2col,
  body.empresariales .hero-grid--personales-2col,
  body.industriales .hero-grid--personales-2col {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.2rem;
  }

  body.personales .hero-text--personales-left,
  body.empresariales .hero-text--personales-left,
  body.industriales .hero-text--personales-left {
    text-align: center;
    margin: 0 auto;
  }

  body.personales .hero-image--personales-right,
  body.empresariales .hero-image--personales-right,
  body.industriales .hero-image--personales-right {
    justify-self: center;
  }

  body.personales .personales-hero-img,
  body.empresariales .personales-hero-img,
  body.industriales .personales-hero-img {
    width: min(560px, 92vw);
    margin-top: 0.8rem;
  }

  body.personales .personales-title,
  body.empresariales .personales-title,
  body.industriales .personales-title {
    font-size: 3rem;
  }

  .cubrimos {
    padding: 4.5rem 0 4rem;
  }

  .cubrimos__title {
    font-size: 3.2rem;
    margin-bottom: 2.8rem;
  }

  .cubrimos__grid {
    grid-template-columns: 1fr;
    row-gap: 2.6rem;
    column-gap: 0;
  }

  .cubrimos__text h3 {
    font-size: 1.3rem;
  }

  .cubrimos__text p {
    font-size: 1.08rem;
  }

  .cubrimos__cta {
    width: min(320px, 92%);
    margin-top: 3.2rem;
  }

  /* Siniestros */
  body.siniestros .hero-grid--personales-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  body.siniestros .hero-text--personales-left {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
  }

  body.siniestros .btn-primary.btn-personales {
    margin: 1.25rem auto 0;
    display: inline-flex;
  }

  body.siniestros .hero-image--personales-right {
    justify-self: center;
  }

  body.siniestros .personales-hero-img {
    width: min(520px, 92vw);
    height: auto;
    margin: 0.5rem auto 0;
    display: block;
  }

  body.siniestros .cubrimos__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2.4rem;
  }

  body.siniestros .cubrimos__item--center {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  body.siniestros .planes__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 560px;
    margin: 0 auto;
    justify-items: stretch;
    text-align: left;
  }

  body.siniestros .proceder-extendido {
    padding: 4.5rem 0;
  }

  body.siniestros .proceder-extendido__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    text-align: left;
  }

  body.siniestros .proceder-extendido__block h3 {
    font-size: 1.3rem;
  }

  body.siniestros .proceder-extendido__block p,
  body.siniestros .proceder-extendido__block li {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* =============================================
   RESPONSIVE – 1100px solo siniestros planes
   ============================================= */
@media (max-width: 1100px) {
  body.siniestros .planes__grid {
    max-width: 980px;
    margin: 0 auto;
  }
}

/* =============================================
   RESPONSIVE – TABLET PEQUEÑA (≤ 700px)
   ============================================= */
@media (max-width: 700px) {

  .gestoria-servicios__grid,
  .gestoria-doc__grid {
    grid-template-columns: 1fr;
  }

  .gestoria-servicios__title,
  .gestoria-doc__title {
    font-size: 2.4rem;
    text-align: left;
  }
}

/* =============================================
   RESPONSIVE – MOBILE (≤ 640px / 40rem)
   ============================================= */
@media (max-width: 40rem) {

  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__logo {
    width: 9rem;
  }
}

/* =============================================
   RESPONSIVE – MOBILE (≤ 600px)
   ============================================= */
@media (max-width: 600px) {

  /* Hero index */
  .hero {
    padding-left: 1rem;
    padding-right: 2rem;
  }

  .hero-grid {
    justify-items: start;
  }

  .hero-text {
    text-align: left;
    align-items: flex-start;
    margin-left: 0;
  }

  .hero .btn,
  .hero button {
    margin-left: 4rem !important;
    margin-right: auto !important;
    display: inline-flex !important;
  }

  .hero-image,
  .hero-circle {
    margin-left: -1.9rem !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: flex-start !important;
  }

  /* Servicios */
  .servicios__grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem !important;
  }

  .servicios__image {
    display: none !important;
  }

  .servicios__cards {
    align-items: flex-start;
  }

  .srv-card {
    width: min(26rem, 92vw) !important;
    max-width: 26rem !important;
    margin-right: 10rem !important;
    margin-left: -0.8rem !important;
    text-align: center;
  }

  .srv-card__header {
    justify-content: center;
  }

  .srv-card ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .srv-card .btn,
  .srv-card .srv-btn,
  .srv-card a {
    margin: 1.5rem auto 0;
    display: inline-flex;
    justify-content: center;
  }

  .servicios__header {
    display: flex;
    flex-direction: column;
  }

  .servicios__title {
    order: -1;
  }

  /* Contacto */
  .contacto__item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    max-width: 320px;
  }

  .contacto__info {
    align-items: center;
  }

  .contacto__item img,
  .contacto__item svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
  }

  .contacto__item p,
  .contacto__item a {
    margin: 0;
    font-size: 1rem;
    word-break: break-word;
  }

  /* Planes */
  .planes {
    padding: 4.5rem 0 4rem;
  }

  .planes__title {
    font-size: 3rem;
    margin-bottom: 2.8rem;
  }

  .planes__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .planes__p {
    max-width: 24rem;
  }

  /* Cubrimos */
  .cubrimos__cta {
    width: 90%;
    max-width: 300px;
    margin: 3.5rem auto 0 !important;
  }

  /* Botones globales centrados */
  .btn-primary,
  .btn-personales,
  .cubrimos__cta,
  .seg-card__btn,
  .srv-card__btn,
  .contacto__btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 1.6rem auto 0 !important;
    text-align: center !important;
  }

  .seg-card__btn,
  .srv-card__btn {
    width: min(320px, 92%);
  }

  /* SSN Bar */
  .ssn-bar {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 2rem 0;
  }

  .ssn-bar__container {
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
  }

  .ssn-bar__divider {
    display: none;
  }

  .ssn-bar__item {
    font-size: 0.75rem;
  }

  .ssn-bar__logo {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .ssn-bar__logo img {
    height: 60px;
  }

  /* Cubrimos – título siniestros */
  body.siniestros .cubrimos__title {
    font-size: 2rem;
    line-height: 1.1;
    white-space: normal;
    word-break: break-word;
    text-align: left;
  }

  body.siniestros .cubrimos__inner {
    padding: 0 1.2rem;
  }

  /* CTA naranja – siniestros */
  body.siniestros .cta-naranja__container {
    gap: 1.2rem;
  }

  body.siniestros .cta-naranja__text {
    font-size: 1.35rem;
  }

  body.siniestros .cta-naranja__btn {
    width: min(320px, 92%);
    text-align: center;
  }

  /* Proceder extendido – siniestros */
  body.siniestros .proceder-extendido__container {
    width: min(950px, 92%);
  }

  body.siniestros .proceder-extendido__block {
    padding-left: 0.85rem;
  }

  /* Siniestros – hero mobile */
  body.siniestros .hero-image--personales-right {
    display: none;
  }

  body.siniestros .personales-title {
    font-size: 2.6rem;
    line-height: 1.05;
  }

  body.siniestros .personales-lead {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
  }

  body.siniestros .personales-desc {
    font-size: 1.05rem;
    margin-bottom: 2.2rem;
  }

  body.siniestros .btn-primary.btn-personales {
    width: min(320px, 92%);
  }

  /* Personales mobile */
  body.personales .hero-image--personales-right,
  body.personales .personales-hero-img {
    display: none !important;
  }

  body.personales .hero-grid--personales-2col,
  body.empresariales .hero-grid--personales-2col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.25rem !important;
    margin: 1rem auto 0 !important;
    width: 100% !important;
  }

  body.personales .container,
  body.personales .hero {
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.personales .hero-text--personales-left {
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 90vw !important;
  }

  body.personales .personales-title {
    text-align: center !important;
    font-size: 3.2rem !important;
    line-height: 1.1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.personales .personales-lead,
  body.personales .personales-desc {
    text-align: center !important;
    margin: 0 auto !important;
  }

  body.personales .personales-lead {
    margin-bottom: 1.2rem !important;
    line-height: 1.6;
  }

  body.personales .personales-desc {
    margin-bottom: 1.6rem !important;
    line-height: 1.65;
  }

  body.personales .personales-title {
    margin-bottom: 1.2rem !important;
  }

  body.personales .btn-personales {
    display: block !important;
    margin: 1.25rem auto 0 !important;
    width: fit-content !important;
  }

  body.personales .hero-image--personales-right {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  body.personales .personales-hero-img {
    margin: 0 auto !important;
  }

  /* Empresariales mobile */
  body.empresariales .container,
  body.empresariales .hero {
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.empresariales .hero-text--personales-left {
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 90vw !important;
  }

  body.empresariales .personales-title {
    text-align: center !important;
    font-size: 2.6rem !important;
    line-height: 1.1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.empresariales .personales-lead,
  body.empresariales .personales-desc {
    text-align: center !important;
    margin: 0 auto !important;
  }

  body.empresariales .btn-personales {
    display: block !important;
    margin: 1.25rem auto 0 !important;
    width: fit-content !important;
  }

  body.empresariales .hero-image--personales-right {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  body.empresariales .personales-hero-img {
    margin: 0 auto !important;
  }

  /* Industriales mobile */
  body.industriales .hero-text--personales-left {
    text-align: left;
    margin-left: 6rem !important;
    padding-right: 6rem !important;
  }
}

/* =============================================
   RESPONSIVE – MOBILE (≤ 560px / 35rem)
   ============================================= */
@media (max-width: 35rem) {

  .nav-group {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .image-circle {
    width: 22.5rem;
    height: 22.5rem;
  }

  /* Hero index centrado */
  .hero-grid {
    justify-items: center;
  }

  .hero-text {
    max-width: 28rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text h1,
  .kicker,
  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* Hamburger */
  .nav {
    position: relative;
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    padding: 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nav-burger span {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
  }

  /* Hamburger verde en páginas internas */
  body.personales .nav-burger span,
  body.empresariales .nav-burger span,
  body.industriales .nav-burger span {
    background: var(--text-dark);
  }

  body.personales .nav-burger,
  body.empresariales .nav-burger,
  body.industriales .nav-burger {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Mobile menu overlay */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--background);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    padding: 2.2rem 1.6rem 2.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }

  .mobile-menu__links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    text-underline-offset: 8px;
    letter-spacing: 0.02rem;
  }

  .mobile-menu__logo {
    margin-top: 3.5rem;
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    overflow: hidden;
  }

  .mobile-menu__logo img {
    width: 210px;
    height: auto;
    object-fit: contain;
    display: block;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* =============================================
   RESPONSIVE – CARRUSEL Y REVEAL (reducción movimiento)
   ============================================= */
@media (prefers-reduced-motion: reduce) {

  .companias__track {
    animation-duration: 90s;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nosotros-card:hover,
  .cubrimos__item:hover,
  .planes__card:hover,
  .seg-card:hover,
  .srv-card:hover {
    transform: none;
  }
}

@media (max-width: 48rem) {

  .companias {
    padding: 2.5rem 0;
  }

  .companias__track {
    gap: 2.5rem;
    animation-duration: 28s;
  }

  .companias__item {
    width: 8rem;
    height: 4.5rem;
  }
}

@media (max-width: 1100px) {

  body.personales .hero-grid--personales-2col {
    gap: 3.6rem;
  }

  body.personales .personales-title {
    white-space: normal;
  }
}
/* =============================================
   BOTÓN FLOTANTE WHATSAPP (solo mobile)
   ============================================= */
@media (max-width: 768px) {
  .whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 3.25rem;
    height: 3.25rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-float:hover,
  .whatsapp-float:active {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  }

  .whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
  }
}

@media (min-width: 769px) {
  .whatsapp-float { display: none; }
}
/* =============================================
   HERO INDEX – H1 MÁS CHICO EN MOBILE
   ============================================= */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}