
    nav a:hover {
      color: var(--primary-light);
    }

    
    
    /* Hamburguesa — oculta en desktop (display controlado por media queries) */
    .hamburger {
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      z-index: 1100;
      flex-shrink: 0;
    }

    /* Asegurar que la hamburguesa se oculte en desktop */
    @media (min-width: 769px) {
      .hamburger { display: none; }
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Botón cerrar nav — desktop-only rule (mobile handled in main.css) */
    @media (min-width: 769px) {
      .nav-close-btn {
        display: none;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
        padding: 4px 8px;
      }
    }

    /* Botón base movido a css/main.css */

    .btn-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-3px);
    }

    .btn-group {
      display: flex;
      justify-content: center;
      gap: 1.4rem;
      flex-wrap: wrap;
    }

    .btn-hero-contact {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.45);
      color: white;
      padding: 1rem 2.2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Open Sans', sans-serif;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      transition: all 0.3s;
      cursor: pointer;
    }

    .btn-hero-contact:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: white;
      transform: translateY(-3px);
    }

    /* ── Hero ── */
    .hero {
      min-height: 100vh;
      position: relative;
      color: white;
      overflow: hidden;
      display: flex;
      align-items: center;
      background: url('https://www.e-viollier.cl/wp-content/uploads/2019/08/slider1-1.jpg') center/cover no-repeat;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 20, 50, 0.92) 0%, rgba(0, 31, 63, 0.80) 55%, rgba(0, 50, 90, 0.60) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 170px 24px 80px;
    }

    .hero-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.8rem;
      opacity: 0.9;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1.25;
      margin-bottom: 1.8rem;
      font-weight: 700;
    }

    .hero-highlight {
      color: var(--accent);
    }

    .hero-desc {
      font-size: 1.1rem;
      line-height: 1.75;
      opacity: 0.85;
      max-width: 520px;
      margin-bottom: 2.5rem;
    }

    .hero-desc strong {
      color: white;
    }

    .hero-ctas {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item {
      text-align: center;
    }

    .trust-num {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .trust-label {
      font-size: 0.78rem;
      opacity: 0.65;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0.3rem;
      display: block;
    }

    .trust-divider {
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    .phone-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }

    .phone-mockup {
      width: 220px;
      height: 440px;
      border-radius: 36px;
      border: 2px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      animation: floatPhone 4s ease-in-out infinite;
    }

    /* Imagen cargada desde HTML como mockup */
    .phone-mockup .phone-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      display: block;
      pointer-events: none;
    }

    /* Ocultar el contenido interno original (pantalla simulada) */
    .phone-mockup .phone-screen {
      display: none;
    }

    @keyframes floatPhone {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }
    

    .phone-mockup::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 6px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 3px;
    }

    .phone-screen {
      position: absolute;
      inset: 28px 8px 8px;
      background: linear-gradient(180deg, #001f3f 0%, #012a52 100%);
      border-radius: 28px;
      overflow: hidden;
    }

    .phone-screen-inner {
      padding: 14px 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .app-ui-bar {
      height: 4px;
      background: linear-gradient(to right, var(--accent), #0055aa);
      border-radius: 2px;
      margin-bottom: 4px;
    }

    .app-ui-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
      letter-spacing: 0.05em;
    }

    .app-ui-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 10px 12px;
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
    }

    .app-ui-card i {
      color: var(--accent);
      margin-right: 5px;
    }

    .app-ui-card small {
      font-size: 0.6rem;
      opacity: 0.65;
      display: block;
      margin-top: 2px;
    }

    .app-ui-card--green i {
      color: #22d3a5;
    }

    .app-badge-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      opacity: 0.55;
      font-weight: 600;
      color: white;
    }

    .app-badges-hero {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .app-badge-btn {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 14px;
      padding: 0.7rem 1.4rem;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
      backdrop-filter: blur(6px);
    }

    .app-badge-btn:hover {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-3px);
    }

    .app-badge-btn i {
      font-size: 1.6rem;
    }

    .app-badge-btn span {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .app-badge-btn small {
      font-size: 0.65rem;
      opacity: 0.65;
    }

    .app-badge-btn span>*:last-child {
      font-size: 0.95rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
    }

    /* ── Stats bar ── */
    .stats-bar {
      background: var(--primary);
      padding: 2.5rem 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .stat-item {
      color: white;
      padding: 1rem;
      border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-number {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1rem;
      opacity: 0.85;
    }

    /* ── Secciones ── */
    .section {
      padding: 90px 0;
      overflow-x: hidden;
    }

    section h2 {
      text-align: center;
      color: var(--primary);
      font-size: 3.2rem;
      margin-bottom: 6rem;
      position: relative;
    }

    section h2::after {
      content: '';
      width: 110px;
      height: 6px;
      background: var(--primary-light);
      position: absolute;
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 3px;
    }

    section.sucursales h2 {
      color: var(--white);
    }

    /* ── Quiénes Somos ── */
    .quienes-container h2 {
      text-align: left;margin-bottom: 1rem;
    }

    .quienes-container h2::after {
      left: 0;
      transform: translateX(0);
    }

    .quienes-section {
      position: relative;
      background: var(--light);
    }

    .quienes-bg {
      position: absolute;
      inset: 0 0 0 auto;
      width: 40%;
      background: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=90') center/cover;
      opacity: 0.75;
      pointer-events: none;
    }

    .quienes-container {
      position: relative;
      z-index: 2;
    }

    .quienes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8rem;
      align-items: center;
    }

    .quienes p {
      font-size: 1.28rem;
      margin-bottom: 4rem;
      color: var(--gray);
      max-width: 760px;
    }

    .mision-vision {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }

    .card-mv {
      background: rgba(255, 255, 255, 0.92);
      padding: 2.2rem 2.5rem;
      border-radius: 28px;
      box-shadow: 0 14px 50px rgba(0, 0, 0, 0.12);
      transition: all 0.4s ease;
      backdrop-filter: blur(8px);
      min-width: 370px;
    }

    .card-mv:hover {
      transform: translateY(-16px);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
      background: rgba(255, 255, 255, 0.98);
    }

    .card-mv h3 {
      font-size: 2rem;
      margin-bottom: 1.8rem;
      color: var(--primary);
      text-align: center;
    }

    .card-mv p {
      font-size: 1.2rem;
      color: var(--gray);
      text-align: center;
      line-height: 1.7;
    }

    /* ── Servicios ── */
    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 3rem;
    }

    .servicio-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      text-align: center;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
      transition: all 0.4s ease;
      border: 1px solid #e5e7eb;
    }

    .servicio-card .btn {
      margin: 1rem 0;
    }

    .servicio-card:hover {
      transform: translateY(-16px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
      border-color: var(--primary-light);
    }

    .servicio-icon {
      font-size: 5.2rem;
      color: var(--primary-light);
      margin-bottom: 2rem;
    }

    .servicio-card h3 {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
      color: var(--primary);
    }

    .servicio-card p {
      color: var(--gray);
      font-size: 1.08rem;
      line-height: 1.6;
    }

    /* ── Carrusel aseguradoras ── */
    .carousel-aseg-wrap {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding: 1rem 0;
    }

    .carousel-aseg-wrap::before,
    .carousel-aseg-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
    }

    .carousel-aseg-wrap::before {
      left: 0;
      background: linear-gradient(to right, #f8fafc, transparent);
    }

    .carousel-aseg-wrap::after {
      right: 0;
      background: linear-gradient(to left, #f8fafc, transparent);
    }

    .aseg-track {
      display: flex;
      gap: 2rem;
      animation: scrollAseg 45s linear infinite;
      width: max-content;
    }

    .aseg-track:hover {
      animation-play-state: paused;
    }

    .aseg-logo {
      flex-shrink: 0;
      width: 240px;
      height: 140px;
      background: white;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      transition: box-shadow 0.3s, transform 0.3s;
    }

    .aseg-logo:hover {
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-4px);
    }

    .aseg-logo img {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
      filter: grayscale(30%);
      transition: filter 0.3s;
    }

    .aseg-logo:hover img {
      filter: grayscale(0%);
    }

    @keyframes scrollAseg {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }




    /* ══ PRESENCIA NACIONAL ══════════════════════════════ */
    .presencia {
      padding: 8rem 0 6rem;
      background: var(--navy);
      position: relative;
      /*clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);*/
      margin: -3rem 0;
      color: #fff;
    }

    .presencia .section-heading h2 {
      color: #fff;
    }

    .presencia .section-heading p {
      color: rgba(255, 255, 255, 0.6);
    }

    .presencia .section-heading .eyebrow {
      color: #93c5fd;
    }

    .presencia .section-heading .eyebrow::before,
    .presencia .section-heading .eyebrow::after {
      background: #93c5fd;
    }

    .sucursales-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.2rem;
    }

    .sucursal-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 1.6rem;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }

    .sucursal-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26, 86, 219, 0.15), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }

    .sucursal-card:hover {
      border-color: rgba(26, 86, 219, 0.5);
      transform: translateY(-4px);
    }

    .sucursal-card:hover::before {
      opacity: 1;
    }

    .sucursal-card.main {
      border-color: rgba(26, 86, 219, 0.4);
      background: rgba(26, 86, 219, 0.12);
    }

    .sucursal-badge {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #60a5fa;
      background: rgba(26, 86, 219, 0.2);
      padding: 0.25rem 0.7rem;
      border-radius: 100px;
      display: inline-block;
      margin-bottom: 0.8rem;
    }

    .sucursal-city {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: #fff;
      margin-bottom: 0.6rem;
    }

    .sucursal-info {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.6;
    }

    .suc-row {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.35rem;
    }

    .suc-row i {
      color: rgba(100, 160, 255, 0.8);
      font-size: 0.7rem;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .sucursal-card {
      cursor: default;
    }

    .presencia-cta {
      text-align: center;
      margin-top: 3rem;
    }

    /* ── Sucursales ── */
    .sucursales {
      background: var(--primary);
      color: white;
      padding: 140px 0;
    }

    .sucursales-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.8rem 2rem;
      margin: 5rem 0;
    }

    .sucursal-item {
      text-align: center;
      padding: 2.8rem 1.8rem;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .sucursal-item:hover {
      background: rgba(255, 255, 255, 0.18);
      transform: translateY(-10px);
    }

    .sucursal-item i {
      font-size: 4.2rem;
      margin-bottom: 1.6rem;
      color: var(--accent);
    }

    .sucursal-item--highlight {
      background: rgba(0, 170, 255, 0.15);
      border: 1px solid rgba(0, 170, 255, 0.3);
      position: relative;
    }

    .sucursal-item--highlight:hover {
      background: rgba(0, 170, 255, 0.25);
    }

    a.sucursal-item,
    a.sucursal-item h4,
    a.sucursal-item p {
      color: white;
      text-decoration: none;
    }

    /* ── Modal ── */
    .modal-map {
      margin-top: 1.5rem;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }

    .modal-map iframe {
      display: block;
      width: 100%;
      height: 220px;
      border: 0;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.75);
      animation: fadeIn 0.25s;
    }

    .modal-content {
      background: white;
      margin: 8% auto;
      padding: 2.5rem;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      width: 90%;
      max-width: 520px;
      position: relative;
      animation: slideIn 0.3s ease;
    }

    .close-modal {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2.5rem;
      cursor: pointer;
      color: #999;
    }

    .close-modal:hover {
      color: var(--primary);
    }

    #modal-title {
      color: var(--primary);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      text-align: center;
    }

    #modal-body p {
      margin: 1rem 0;
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--gray);
    }

    #modal-body strong {
      color: var(--primary);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slideIn {
      from {
        transform: translateY(40px);
        opacity: 0;
      }

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

    /* ── Red Internacional ── */
    .red-internacional-preview {
      background: var(--dark);
      color: white;
    }

    .red-internacional-preview h2 {
      color: white;
    }

    .red-internacional-preview h2::after {
      background: var(--accent);
    }

    .red-internacional-preview p {
      color: #94a3b8;
    }

    .red-internacional-preview p strong {
      color: white;
    }

    .internacional-preview-grid {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      margin-top: 2rem;
    }

    .internacional-stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .int-stat {
      text-align: center;
    }

    .int-number {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .int-label {
      display: block;
      font-size: 1rem;
      color: #94a3b8;
      margin-top: 0.5rem;
    }

    .mundial-map-wrap {
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    }

    

    /* ════════════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════════════ */

    /* Tablet */
    @media (min-width: 769px) and (max-width: 1024px) {
      .hero-grid {
        gap: 3rem;
      }

      .hero-title {
        font-size: 2.4rem;
      }

      .phone-mockup {
        width: 190px;
        height: 380px;
      }

      .quienes {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .quienes-bg {
        display: none;
      }

      .mision-vision {
        grid-template-columns: 1fr 1fr;
      }

      .card-mv {
        min-width: unset;
      }

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

      .sucursales-grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }
    }

    .drop-arrow {
      display: inline-block;
      transition: transform 0.3s;
      pointer-events: none;
      margin-left: 2px;
    }

    .dropdown.is-open .drop-arrow {
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {

      /* Hero */
      .hero {
        min-height: 100svh;
      }

      .hero-content {
        padding: 120px 20px 60px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }

      .hero-eyebrow {
        justify-content: center;
        font-size: 0.75rem;
      }

      .hero-title {
        font-size: clamp(1.7rem, 6.5vw, 2.2rem);
      }

      .hero-desc {
        font-size: 0.98rem;
        margin: 0 auto 2rem;
        max-width: 100%;
      }

      .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }

      .btn-hero-contact {
        justify-content: center;
      }

      .hero-trust {
        justify-content: center;
        gap: 1.2rem;
        padding-top: 1.5rem;
      }

      .trust-num {
        font-size: 1.5rem;
      }

      .hero-right {
        order: -1;
      }

      .phone-mockup {
        width: 150px;
        height: 300px;
      }

      .phone-glow {
        width: 160px;
        height: 160px;
      }

      .app-badge-btn {
        padding: 0.6rem 1rem;
      }

      /* .btn responsive moved to css/main.css */

      /* Secciones */
      .section {
        padding: 60px 0;
      }

      section h2 {
        font-size: 2rem;
        margin-bottom: 3.5rem;
      }

      /* Quiénes Somos */
      .quienes-bg {
        display: none;
      }

      .quienes {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .quienes p {
        font-size: 1rem;
        margin-bottom: 2rem;
      }

      .quienes-container h2 {
        text-align: center;
      }

      .quienes-container h2::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .mision-vision {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .card-mv {
        min-width: unset;
        padding: 1.6rem;
      }

      .card-mv h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
      }

      .card-mv p {
        font-size: 0.98rem;
      }

      /* Servicios */
      .servicios-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }

      .servicio-icon {
        font-size: 3.5rem;
      }

      .servicio-card h3 {
        font-size: 1.4rem;
      }

      .servicio-card {
        padding: 2rem 1.5rem;
      }

      /* Sucursales */
      .sucursales {
        padding: 60px 0;
      }

      .sucursales-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
      }

      .sucursal-item {
        padding: 1.5rem 0.8rem;
      }

      .sucursal-item i {
        font-size: 2.5rem;
      }

      .sucursal-item h4 {
        font-size: 0.95rem;
      }

      /* Stats */
      .stats-bar {
        padding: 1.8rem 0;
      }

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

      .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem;
      }

      .stat-number {
        font-size: 2rem;
      }

      .stat-label {
        font-size: 0.85rem;
      }

      /* Internacional */
      .internacional-stats {
        gap: 2rem;
      }

      .int-number {
        font-size: 2.5rem;
      }

      #previewMap {
        height: 260px !important;
      }

      /* Modal */
      .modal-content {
        margin: 8% auto;
        padding: 1.8rem 1.2rem;
        width: 94%;
      }

      #modal-title {
        font-size: 1.3rem;
      }

      .modal-map iframe {
        height: 180px;
      }

      /* Footer */
      footer {
        padding: 4rem 0 2rem;
      }
    }