/* ==========================================
   VARIABLES BASE
========================================== */
:root {
  --color-primary: #1C2340;         /* Azul navy */
  --color-accent: #cc5500;          /* Naranja */
  --color-light: #f8f9fa;
  --color-dark: #212529;
  --color-muted: #6c757d;
  --color-hover-strong: #1b1b1b;
  --ink-700:#2d3648;
  --ink-500:#5f6c80;
  --ink-400:#6b7688;

  --font-family: 'Manrope', sans-serif;
  --font-size-base: 16px;
}


/* ==========================================
   RESET Y BODY
========================================== */
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-dark);
  background-color: #fff;
  margin: 0;
  padding: 0;
}


/* ==========================================
   PREHEADER
========================================== */
#preHeader {
  background-color: #EDEFF4;
  border-bottom: 1px solid #e6e6e6;
  font-size: 0.9rem;
  position: sticky;
  top: 0;
  z-index: 1050; 
}

.text-neutral {
  color: var(--color-muted);
  font-weight: 400;
}

.link-neutral {
  color: var(--color-muted);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-weight: 400;
}

.link-neutral:hover {
  color: var(--color-hover-strong);
  font-weight: 600;
  text-decoration: none;
}

#preHeader .bi {
  font-size: 1rem;
  vertical-align: middle;
}


/* ==========================================
   BOTÓN PRINCIPAL (CTA)
========================================== */
.btn-cta {
  background-color: var(--color-accent);
  color: #ccc;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.btn-cta:hover {
  background-color: var(--color-accent);
  opacity: 1;
}


/* ==========================================
   HEADER Y NAVBAR
========================================== */
#mainHeader {
  background-color: var(--color-primary);
  position: sticky;
  top: 40px;
  z-index: 1040;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-accent);
}

.navbar .dropdown-toggle::after {
  display: none;
}

.dropdown-toggle .bi-chevron-down {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
  display: inline-block;
}

.navbar .dropdown-menu {
  background-color: var(--color-primary);
  border: none;
  border-radius: 0.2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
  min-width: 200px;
}

.dropdown-item {
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
}


/* ==========================================
   HAMBURGER BUTTON ANIMADO
========================================== */
.custom-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  padding: 0;
  position: relative;
}

.hamburger-line {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-line.top {
  top: 4px;
}

.hamburger-line.middle {
  top: 11px;
}

.hamburger-line.bottom {
  top: 18px;
}

.custom-toggler:not(.collapsed) .top {
  transform: rotate(45deg);
  top: 11px;
}

.custom-toggler:not(.collapsed) .middle {
  opacity: 0;
}

.custom-toggler:not(.collapsed) .bottom {
  transform: rotate(-45deg);
  top: 11px;
}

.navbar-toggler:focus {
  box-shadow: none;
}


/* ==========================================
   DROPDOWN FLECHAS ANIMADAS
========================================== */
.navbar .dropdown-toggle .bi.bi-chevron-down {
  transition: transform 0.5s ease;
  display: inline-block;
}

.navbar .dropdown.show > .dropdown-toggle .bi.bi-chevron-down {
  transform: rotate(180deg) !important;
  opacity: 1;
}

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

  .navbar .dropdown:hover > .dropdown-toggle .bi.bi-chevron-down {
    transform: rotate(180deg) !important;
    opacity: 1;
  }

  .navbar .dropdown-toggle {
    pointer-events: none;
  }
}


/* ==========================================
   UTILIDADES Y RESPONSIVE EXTRA
========================================== */
.text-accent {
  color: var(--color-accent) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.bg-primary-custom {
  background-color: var(--color-primary) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.fw-semibold {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.sticky-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-accent {
  background-color: #ff6a00;
  border: none;
  color: white;
}
.btn-accent:hover {
  background-color: #e65d00;
}

.btn-outline-dark {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn-outline-dark:hover {
  background-color: #ffffff;
  color: #1c2340;
}

.section-eyebrow {
  font-size: 3rem; 
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.btn-pack-primary {
  background: linear-gradient(135deg, #ff6a00, #ff8800);
  color: white;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-pack-primary:hover {
  background: linear-gradient(135deg, #ff8800, #ff6a00);
  transform: scale(1.03);
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.2);
}




/* Imagen del slider */
.slider-img {
  height: 300px;
  object-fit: cover;
}

/* Estilo para texto sobre imagen */
.carousel-caption-custom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.45);
}


.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ffffff;
  margin: 0 4px;
  transition: background-color 0.3s ease;
}

.carousel-indicators .active {
  background-color: #ffc107; 
}


.hero-stats-section {
  background-size: cover;
  background-position: center;
  height: 340px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
}

.hero-content {
  max-width: 800px;
  padding: 1rem;
  animation: fadeInCenter 0.8s ease-in-out both;
}

.stats-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 1.5rem;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.btn-warning {
  background-color: #FF6A00;
  border: none;
}

.btn-warning:hover {
  background-color: #e35e00;
}

.btn-orange {
  background-color: #FF6A00;
  border: none;
  opacity: 0.95;
  color: white;
}
.btn-orange:hover {
  background-color: #e65c00;
  opacity: 1;
}


.btn-cta {
  border-radius: 50px;
}


.card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}


#porqueElegirnos .d-flex {
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 0.5rem;
}

#porqueElegirnos .d-flex:hover {
  background-color: #f8f9fa; /* Gris claro tipo Bootstrap */
  transform: translateY(-3px);
}

/* Ícono más vivo al hacer hover */
#porqueElegirnos .d-flex:hover i {
  color: #ff7300 !important; /* O usa tu color de acento */
  transform: scale(1.1);
  transition: transform 0.3s ease, color 0.3s ease;
}

.py-7 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.testimonial-card {
  background-color: #f8f9fa; /* gris claro sobrio */
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.testimonial-card:hover {
  background-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}


#cta-final {
  overflow: hidden;
  min-height: 250px;
}
@media (max-width: 768px) {
  #cta-final {
    background-attachment: scroll !important;
  }
}

/* Animación suave */
@keyframes fadeInCenter {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero-stats-section {
    height: 260px;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}


@media (max-width: 768px) {
  #preHeader {
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }

  .btn-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .dropdown-toggle {
    font-size: 0.9rem;
  }

  #mainHeader {
    top: 0;
  }
}

@media (max-width: 992px) {
  .tagline {
    display: none !important;
  }
}


/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
  background-color: #000;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
  filter: brightness(0.8) contrast(1.1);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55); 
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  margin: 0 auto;
  padding: 1rem;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section h1 {
  font-size: 2.75rem;
  line-height: 1.3;
}

.hero-section p {
  font-size: 1.25rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}


/* ==========================================
   FOOTER - PACK TO GO (fondo blanco)
========================================== */
.footer {
  background-color: #EDEFF4;
  color: var(--color-navy);
  border-top: 1px solid #eee;
}

.footer h5 {
  color: var(--color-navy);
  font-weight: 600;
}

.footer p,
.footer-links a {
  font-size: 0.95rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-icons a {
  display: inline-block;
  color: var(--color-navy); /* o un color fijo como #1C2340 */
  font-size: 1.5rem;
  margin-right: 0.75rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icons a:hover {
  color: var(--color-accent); /* o por ejemplo: #FF6A00 */
  transform: scale(1.25);
}

.footer hr {
  border-top: 1px solid #ddd;
}


.link-hover:hover {
  color: #000 !important;       /* o usa tu color primario si prefieres */
  font-weight: 600 !important;  /* Semibold */
  text-decoration: underline;   /* opcional */
}

.footer .link-hover {
  transition: all 0.2s ease-in-out;
}

@keyframes blurFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(6px);
    transform: translateY(40px);
  }
  to {
    opacity: 0.95;
    backdrop-filter: blur(6px);
    transform: translateY(0);
  }
}

@keyframes blurFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(28, 35, 64, 0.6); /* fondo navy con opacidad */
  color: #ffffff;
  border-top: 3px solid #ff6a00;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  animation: blurFadeIn 0.8s ease forwards;
  backdrop-filter: blur(6px); /* difuminado del fondo */
}

.cookie-banner.closing {
  animation: blurFadeOut 0.5s ease forwards;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.92);
}

.cookie-banner a {
  color: #ff6a00;
  font-weight: 500;
  opacity: 0.9;
}
.cookie-banner a:hover {
  color: #ffaa33;
  opacity: 0.9;
  text-decoration: underline;
}

.cookie-icon {
 	flex-shrink: 0;
    line-height: 1;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer .row > div {
    margin-bottom: 2rem;
  }
}


.pillars-elegant{ background-color:#f8f9fa; }
  .pillar-card{
    background:#fff; border:1px solid #eaeaea; border-radius:.75rem;
    padding:2rem; height:100%; transition:all .25s ease;
  }
  .pillar-card:hover{ box-shadow:0 10px 28px rgba(0,0,0,.08); transform:translateY(-4px); }
  .pillar-icon{ font-size:2.2rem; color:var(--color-primary,#0d6efd); margin-bottom:1rem; }
  .pillar-title{ font-weight:600; font-size:1.15rem; margin-bottom:.75rem; color:#212529; }
  .pillar-text{ font-size:.95rem; color:#6c757d; line-height:1.55; margin:0; }


  .philosophy-minimal{background:#fff}
  .philosophy-minimal .motto{
    font-size:clamp(1.4rem,2.2vw,2rem);
    font-weight:500; font-style:italic; color:#374151; line-height:1.45;
    margin-bottom:2rem
  }
  .philosophy-minimal .divider{
    width:64px;height:2px;background:#0d6efd;margin:0 auto 2.25rem auto;opacity:.9
  }

  /* Tarjeta */
  .testi-card{
    background:#fff;border:1px solid #eceff3;border-radius:.9rem; padding:1.5rem 1.5rem 1.25rem;
    height:100%; transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease
  }
  .testi-card:hover{box-shadow:0 14px 32px rgba(0,0,0,.08);transform:translateY(-3px);border-color:#e3e8ef}

  /* Cita principal con comilla decorativa sutil */
  .testi-quote{
    position:relative; color:#4b5563; font-size:.98rem; line-height:1.65; margin:0 0 1rem 0
  }
  .testi-quote::before{
    content:"“"; position:absolute; left:-.4ch; top:-.6ch;
    font-size:2.4rem; line-height:1; color:rgba(13,110,253,.18); font-weight:700; font-style:normal
  }

  /* Divisor tenue dentro de la tarjeta */
  .testi-divider{height:1px;background:#eef2f6;border:0;margin:.75rem 0 1rem}

  /* Ruta (opcional) */
  .testi-route{font-size:.9rem;color:#6b7280}

  /* Meta (iniciales + fecha) */
  .testi-meta{display:flex;align-items:center;gap:.5rem;font-size:.86rem;color:#6b7280}
  .testi-meta .avatar{
    width:36px;height:36px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
    background:#eef2ff;color:#0d6efd;font-weight:700;font-size:.9rem;letter-spacing:.3px
  }
  .testi-meta .initials{font-weight:600;color:#111827}
  .testi-meta .dot{opacity:.55}




  .process-hero {
    background: radial-gradient(1200px 400px at 50% -10%, rgba(13,110,253,.08), transparent 60%),
                linear-gradient(180deg,#f8fafc 0%, #ffffff 100%);
  }
  .process-hero .intro {
    max-width: 780px; margin: 0 auto;
  }

  .timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    counter-reset: step;
  }
  /* Línea vertical central */
  .timeline::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(253, 217, 13, 0.15), rgba(253, 209, 13, 0.35), rgba(253, 233, 13, 0.15));
    transform: translateX(-50%);
  }

  .t-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3.5rem;
    margin-bottom: 2.8rem;
  }
  .t-item:last-child { margin-bottom: 0; }

  /* Colocación alternada */
  .t-item .t-content { grid-column: 1 / span 1; }
  .t-item:nth-child(even) .t-content { grid-column: 2 / span 1; }

  /* Nodo en la línea */
  .t-node {
    position: absolute;
    top: .2rem; left: 50%;
    transform: translate(-50%, 0);
    width: 14px; height: 14px; border-radius: 50%;
    background: #f97d25;
    box-shadow: 0 0 0 6px rgba(253, 189, 13, 0.12), 0 8px 20px rgba(253, 193, 13, 0.25);
  }

  /* Tarjeta del paso */
  .t-card {
    position: relative;
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 14px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 10px 26px rgba(2, 16, 40, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .t-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(2, 16, 40, .10);
    border-color: #d9e6ff;
  }

  /* Número gigante como marca de agua */
  .t-card::after {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    right: 1rem; bottom: .3rem;
    font-size: clamp(2.6rem, 7vw, 4.2rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(13,110,253,.08);
    pointer-events: none;
  }
  /* Si el contenido está a la izquierda, muevo el número hacia la izquierda para balancear */
  .t-item:nth-child(odd) .t-card::after { right: 1rem; }
  .t-item:nth-child(even) .t-card::after { left: 1rem; right: auto; }

  .t-eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: #eef5ff;
    border: 1px solid #dbe9ff;
    padding: .22rem .5rem;
    border-radius: 999px;
    margin-bottom: .6rem;
  }
  .t-title {
    font-weight: 700; color: var(--color-primary); margin: 0 0 .35rem;
    font-size: 1.08rem;
  }
  .t-text {
    color: #76725b; margin: 0;
    font-size: .96rem; line-height: 1.65;
  }

  /* Responsive: en móviles pasa a 1 columna y la línea a la izquierda */
  @media (max-width: 991.98px) {
    .timeline::before { left: 18px; transform: none; }
    .t-item {
      grid-template-columns: 1fr;
      gap: 1rem 0;
      padding-left: 48px;
    }
    .t-item .t-content { grid-column: 1 / -1; }
    .t-item:nth-child(even) .t-content { grid-column: 1 / -1; }
    .t-node { left: 18px; }
    .t-card::after { right: 1rem !important; left: auto !important; }
  }


  .faq-min{background:#fff}
  .faq-min .intro{max-width:720px;margin:.5rem auto 2rem;color:#6b7280}
  .faq-min details{
    border:1px solid #e6ebf3;border-radius:.75rem;background:#fff;
    padding:1rem 1.1rem;margin-bottom:.85rem;transition:box-shadow .2s,border-color .2s
  }
  .faq-min details[open]{box-shadow:0 12px 24px rgba(2,16,40,.06);border-color:#dbe6f7}
  .faq-min summary{
    list-style:none;cursor:pointer;font-weight:600;color:#0b1220;display:flex;align-items:center;gap:.6rem;
    outline:none
  }
  .faq-min summary::-webkit-details-marker{display:none}
  .faq-min summary .sign{margin-left:auto;font-weight:700;color:#0d6efd}
  .faq-min details[open] summary .sign{content:"–"}
  .faq-min .answer{color:#5b6776;line-height:1.65;margin:.75rem 0 0;font-size:.96rem}


  /* Encabezado editorial */
.services-head .overline{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-size: .78rem;
  color: #7a8596;
}
.services-head .title{ letter-spacing: .2px; }
.services-head .intro{ font-size: .98rem; }

/* Item editorial */
.svc-item{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 22px 22px 0;
  border-top: 1px solid rgba(31,42,68,.12);
  position: relative;
}
.svc-item:first-child{ border-top: 1px solid rgba(31,42,68,.12); }

/* Línea lateral de marca (sobria) */
.svc-item::before{
  content:"";
  position:absolute; left:0; top:18px; bottom:18px; width:4px;
  background: linear-gradient(180deg, var(--color-accent,#2FB0AC), rgba(47,176,172,0.15));
  border-radius: 4px;
  opacity:.9;
}

/* Col izquierda: índice + icono */
.svc-left{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  min-width: 84px;
}
.svc-index{
  font-variant-numeric: tabular-nums;
  font-weight: 700; color: var(--color-primary,#1f2a44);
  font-size: 1.05rem;
}
.svc-icon{
  font-size: 1.35rem;
  color: var(--color-primary,#1f2a44);
  opacity:.85;
}

/* Col derecha: contenido */
.svc-title{
  margin: 0 0 6px 0;
  font-weight: 700;
  color: var(--color-primary,#1f2a44);
  line-height: 1.25;
}
.svc-text{ font-size: .96rem; line-height: 1.55; }

/* Bullets sobrios */
.svc-bullets{
  margin: 0 0 8px 0; padding-left: 1.1rem;
}
.svc-bullets li{
  color:#647085; font-size:.95rem; margin-bottom:.25rem;
}

/* Tags (chips) opcionales */
.svc-tags{ display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }
.svc-tag{
  display:inline-block; border:1px solid rgba(31,42,68,.18);
  color:#485368; font-size:.78rem; padding:.22rem .5rem; border-radius:999px;
  background:#fff;
}

/* Hover sutil, corporativo */
.svc-item:hover{
  background: linear-gradient(90deg, rgba(47,176,172,.06), transparent 22%);
}

/* Responsive */
@media (max-width: 575.98px){
  .svc-item{ grid-template-columns: 64px 1fr; padding-right: 8px; }
  .svc-left{ min-width: 64px; }
}


.diff-wrap{
  border: 1px solid rgba(20,24,40,.12);
  border-radius: 8px; /* menos redondeado, más corporativo */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(9,16,39,.06);
}

/* Columna narrativa izquierda */
.diff-aside{
  background: linear-gradient(
    180deg,
    rgba(255,122,0,0.95) 0%,   /* naranja casi sólido arriba */
    rgba(200,80,0,0.92) 100%   /* tono más oscuro abajo */
  );
  color: #fff; /* texto en blanco para contraste */
  border-right: none; /* quita línea para que se vea como bloque sólido */
  padding: 2rem;
}


.overline{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .78rem;
  color: #fff;
}
.diff-title{
  color: #fff;
  font-weight: 800;
}
.diff-lead{
  color: #dfdfdf;
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Items de bullets */
.diff-item{
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(20,24,40,.06);
  border-left: 1px solid rgba(20,24,40,.06);
  min-height: 80px;
  transition: background .25s ease, border-color .25s ease;
}
.diff-item:nth-child(odd){ background: #fff; }
.diff-item:nth-child(even){ background: #fcfcfc; }

/* Badge con acento naranja sobrio */
.diff-index{
  height: 34px; width: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
  color: #fff;
  background: var(--color-accent);
  border: 1px solid rgba(255,122,0,.65);
  box-shadow: none; /* sin glow exagerado */
}

/* Texto bullet */
.diff-text{
  color: #2d3648;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Hover elegante */
.diff-item:hover{
  background: rgba(255,122,0,.04);
  border-color: rgba(255,122,0,.20);
}

/* Responsive */
@media (max-width: 991.98px){
  .diff-aside{ border-right: none; border-bottom: 1px solid rgba(20,24,40,.08); }
  .diff-item{ border-left: none; }
}


/* HERO sección para mascotas */
.hero-pets {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-pets .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-pets .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,48,0.55); /* oscuro elegante */
  z-index: 2;
}

.hero-pets .hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}




/* INTRO */
.intro-pets .intro-title{
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.intro-pets .intro-divider{
  height: 3px; width: 72px; margin: 10px auto 18px;
  background: var(--color-accent);
  border-radius: 2px;
}
.intro-pets .intro-text{
  color: var(--ink-500);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 920px; margin: 0 auto;
}
.intro-pets .intro-coverage{
  color: var(--ink-400);
  font-size: .95rem;
}
.badge-pill{
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(20,24,40,.12);
  border-radius: 999px;
  background:#fff;
  color: var(--ink-700);
  font-size: .85rem;
  font-weight: 600;
}

/* GRID REVISTA */
.mag-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.mag-item{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background:#000;
  isolation: isolate;
}
.mag-item .mag-img{
  width: 100%; height: 100%;
  object-fit: cover; display:block;
  transform: scale(1.02);
  transition: transform .4s ease, filter .4s ease;
}
.mag-item:hover .mag-img{
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}
.mag-item::after{
  content:""; position:absolute; inset:0;
  background: radial-gradient(120% 100% at 50% 80%, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%);
  z-index: 1;
}
.mag-caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 16px;
  color: #fff; z-index: 2;
}
.mag-caption h5,.mag-caption h6{ margin:0 0 4px; font-weight:800; }
.mag-caption p{ margin:0; color: rgba(255,255,255,.72); }

/* spans */
.span-4{ grid-column: span 6; }
.span-3{ grid-column: span 4; }
.span-2{ grid-column: span 2; }
.tall{ aspect-ratio: 4/3; }
.mag-item:not(.tall){ aspect-ratio: 16/9; }

@media (max-width: 1199.98px){
  .span-4{ grid-column: span 6; }
  .span-3{ grid-column: span 4; }
  .span-2{ grid-column: span 3; }
}
@media (max-width: 767.98px){
  .mag-grid{ grid-template-columns: repeat(2, 1fr); }
  .span-4,.span-3,.span-2{ grid-column: span 2; }
}

/* Servicios con foto (tarjeta premium) */
.svc-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.svc-card{
  grid-column: span 4;
  border: 1px solid rgba(20,24,40,.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,122,0,.28);
  box-shadow: 0 12px 30px rgba(9,16,39,.10);
}
.svc-img{
  width: 100%; height: 240px; object-fit: cover; display:block;
}
.svc-body{ padding: 16px 18px; }
.svc-title{
  color: var(--color-primary);
  font-weight: 800;
  margin: 0 0 6px;
}
.svc-text{
  color: var(--ink-500);
  font-size: .98rem; line-height: 1.6;
}

@media (max-width: 991.98px){
  .svc-card{ grid-column: span 6; }
}
@media (max-width: 575.98px){
  .svc-card{ grid-column: span 12; }
  .svc-img{ height: 220px; }
}

