body {
      background-image: url("/web_images/Fondo-03.jpg");
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Top Navigation Bar */
    nav {
      background: rgba(12, 14, 19, 0.92);
      color: white;
      padding: 10px 18px;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      border-bottom: 1px solid rgba(239, 184, 16, 0.28);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(16px);
      box-sizing: border-box;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 6px;
    }

    nav ul li {
      margin: 0;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      padding: 9px 13px;
      display: flex;
      align-items: center;
      border: 1px solid transparent;
      border-radius: 9px;
      transition: background-color 0.3s, border-color 0.3s, color 0.3s;
      font-size: clamp(0.8rem, 2vw, 1rem);
    }

    nav ul li a i {
      margin-right: 6px;
    }

    nav ul li a:hover {
      background-color: rgba(239, 184, 16, 0.12);
      border-color: rgba(239, 184, 16, 0.4);
      color: #efb810;
    }

    /* Menu toggle button */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 8px 11px;
      border: 1px solid rgba(239, 184, 16, 0.35);
      border-radius: 9px;
      transition: background-color 0.3s;
    }

    .menu-toggle:hover {
      background-color: rgba(239, 184, 16, 0.14);
      color: #efb810;
    }

    /* Mobile menu overlay */
    .menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 99;
    }

    .menu-overlay.active {
      display: block;
    }

    /* Mobile sidebar menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100vh;
      background: #14161d;
      padding-top: 68px;
      border-right: 1px solid rgba(239, 184, 16, 0.32);
      z-index: 101;
      overflow-y: auto;
      flex-direction: column;
      transition: left 0.3s ease;
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: background-color 0.3s;
      font-size: 0.95rem;
    }

    .mobile-menu a i {
      margin-right: 12px;
      font-size: 1.1rem;
    }

    .mobile-menu a:hover {
      background-color: rgba(239, 184, 16, 0.12);
      color: #efb810;
    }

    .mobile-menu a:active {
      background-color: #efb810;
      color: #222;
    }

    main {
      display: flex;
      flex-direction: column;
      margin-top: 55px;
      overflow-x: hidden;
    }

    /* Contenedor principal */
    .main-container {
      margin-bottom: 60px;
      flex: 1;
      padding: 20px;
    }

    /* Contenido principal de la página */
    .content {
      font-size: larger;
      padding: 25px 25px 85px 25px;
      background-color: #333333b7;
      max-width: 1000px;
      margin: 20px auto;
      backdrop-filter: blur(15px);
      border-radius: 33px;
      display: none; /* Hide by default, show via JS */
    }

    .content.active {
      display: block;
    }

    .home-overview {
      position: relative;
      overflow: hidden;
      max-width: 1180px;
      padding: 0;
      background: rgba(20, 22, 29, 0.88);
      border: 1px solid rgba(239, 184, 16, 0.28);
      border-radius: 28px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    }

    .home-overview::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(239, 184, 16, 0.14), transparent 42%, rgba(42, 157, 143, 0.12));
      pointer-events: none;
    }

    .home-hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      gap: 36px;
      align-items: center;
      padding: 58px clamp(24px, 6vw, 76px) 48px;
    }

    .home-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 18px;
      color: #efb810;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .home-hero h1 {
      margin: 0 0 18px;
      text-align: left;
      color: #fff;
      font-size: clamp(2.4rem, 6vw, 5.2rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
    }

    .home-hero h1 strong {
      color: #efb810;
      font-weight: 900;
    }

    .home-lead {
      max-width: 650px;
      margin: 0;
      color: #d1d5db;
      font-size: clamp(1rem, 2vw, 1.22rem);
      line-height: 1.65;
    }

    .home-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .home-primary-link,
    .home-secondary-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 12px 18px;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 800;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .home-primary-link {
      background: #efb810;
      color: #17181d;
    }

    .home-secondary-link {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #fff;
    }

    .home-primary-link:hover,
    .home-secondary-link:hover {
      transform: translateY(-2px);
    }

    .home-hero-visual {
      position: relative;
      min-height: 270px;
      display: grid;
      place-items: center;
    }

    .home-orbit {
      position: absolute;
      width: min(310px, 72vw);
      aspect-ratio: 1;
      border: 1px solid rgba(239, 184, 16, 0.34);
      border-radius: 50%;
      transform: rotate(-18deg);
    }

    .home-orbit::after {
      content: '';
      position: absolute;
      top: 10%;
      right: 5%;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #2a9d8f;
      box-shadow: 0 0 22px rgba(42, 157, 143, 0.8);
    }

    .home-logo-card {
      position: relative;
      display: grid;
      place-items: center;
      width: 190px;
      height: 190px;
      border: 1px solid rgba(239, 184, 16, 0.55);
      border-radius: 28px;
      background: rgba(10, 11, 15, 0.72);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    }

    .home-logo-card img {
      width: 145px;
      max-height: 145px;
      object-fit: contain;
    }

    .home-stat-strip {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin: 0 clamp(24px, 6vw, 76px);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .home-stat {
      padding: 22px 14px;
      text-align: center;
    }

    .home-stat strong {
      display: block;
      color: #fff;
      font-size: 1.55rem;
    }

    .home-stat span {
      display: block;
      margin-top: 4px;
      color: #9ca3af;
      font-size: 0.78rem;
    }

    .home-modules {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      padding: 42px clamp(24px, 6vw, 76px) 54px;
    }

    .home-section-heading {
      grid-column: 1 / -1;
      margin: 0 0 8px;
      color: #fff;
      font-size: 1.35rem;
    }

    .home-module-card {
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.055);
    }

    .home-module-card i {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 15px;
      border-radius: 12px;
      background: rgba(239, 184, 16, 0.16);
      color: #efb810;
    }

    .home-module-card h3 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 1rem;
    }

    .home-module-card p {
      margin: 0;
      color: #aeb4c0;
      font-size: 0.88rem;
      line-height: 1.55;
    }

    .home-workflow {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      padding: 0 clamp(24px, 6vw, 76px) 58px;
    }

    .content:not(.home-overview) {
      max-width: 1180px;
      padding: 48px clamp(24px, 6vw, 76px) 58px;
      background: rgba(20, 22, 29, 0.9);
      border: 1px solid rgba(239, 184, 16, 0.24);
      border-radius: 24px;
      box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
    }

    .content:not(.home-overview) h1 {
      margin: 0 0 12px;
      color: #fff;
      font-size: 2.4rem;
      letter-spacing: -0.03em;
    }

    .content:not(.home-overview) > p {
      max-width: 720px;
      margin: 0 auto 30px;
      color: #aeb4c0;
      text-align: center;
      font-size: 1rem;
      line-height: 1.65;
    }

    .sedes-links {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .sedes-links a,
    .apps-links a {
      min-height: 126px;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 16px;
      color: #fff;
      font-weight: 800;
      text-align: center;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .sedes-links a:hover,
    .apps-links a:hover {
      background: rgba(239, 184, 16, 0.12);
      border-color: rgba(239, 184, 16, 0.7);
      transform: translateY(-4px);
    }

    .sedes-links .imglogo {
      width: 64px;
      height: 64px;
      margin: 0;
      object-fit: contain;
      border-radius: 14px;
    }

    .line {
      width: 100%;
      height: 1px;
      margin: 34px 0 30px;
      background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.72), transparent);
    }

    .apps-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 260px));
      justify-content: center;
      gap: 14px;
    }

    .apps-links h3 {
      grid-column: 1 / -1;
      margin: 18px 0 0;
      color: #efb810;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .apps-links h3:first-child {
      margin-top: 0;
    }

    .apps-links .imglogo-store,
    .apps-links .ion-icon {
      width: 42px;
      height: 42px;
      margin: 0;
    }

    .contact-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .contact-item {
      min-width: 0;
      min-height: 92px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 16px;
      color: #fff;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .contact-item:hover {
      background: rgba(42, 157, 143, 0.14);
      border-color: rgba(42, 157, 143, 0.7);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: none;
    }

    .contact-item i {
      width: 36px;
      margin-right: 14px;
      color: #efb810;
      font-size: 1.45rem;
    }

    .contact-item .value {
      color: #fff;
      font-size: 0.92rem;
      overflow-wrap: anywhere;
    }

    .site-footer {
      position: relative;
      width: 100%;
      margin-top: 24px;
      padding: 22px 20px 30px;
      background: rgba(10, 11, 15, 0.9);
      border-top: 1px solid rgba(239, 184, 16, 0.3);
      box-sizing: border-box;
    }

    .site-footer-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 26px;
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .site-footer-group {
      display: flex;
      flex-wrap: wrap;
      align-content: flex-start;
      gap: 10px 16px;
    }

    .site-footer-group h4 {
      flex-basis: 100%;
      margin: 0 0 4px;
      color: #efb810;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .site-footer-group p,
    .site-footer-group a {
      margin: 0;
      color: #aeb4c0;
      font-size: 0.8rem;
      line-height: 1.5;
      text-decoration: none;
    }

    .site-footer-group a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .site-footer-group a:hover {
      color: #efb810;
    }

    @media (max-width: 900px) {
      .sedes-links,
      .contact-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .site-footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    .home-step {
      position: relative;
      padding: 18px;
      border-left: 2px solid #efb810;
      background: rgba(255, 255, 255, 0.035);
    }

    .home-step b {
      display: block;
      margin-bottom: 8px;
      color: #efb810;
      font-size: 0.76rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .home-step span {
      color: #d1d5db;
      font-size: 0.88rem;
      line-height: 1.45;
    }

    @media (max-width: 820px) {
      .home-hero,
      .home-modules {
        grid-template-columns: 1fr;
      }

      .home-hero-visual {
        min-height: 220px;
      }

      .home-workflow {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .home-hero {
        padding: 38px 20px 34px;
      }

      .home-stat-strip {
        margin: 0 20px;
      }

      .home-stat strong {
        font-size: 1.15rem;
      }

      .home-modules,
      .home-workflow {
        padding-left: 20px;
        padding-right: 20px;
      }

      .home-workflow {
        grid-template-columns: 1fr;
      }
    }

    /* Título principal */
    h1 {
      text-align: center;
      color: #d4d4d4;
    }

    .content p {
      line-height: 1.6;
      color: #c0c0c0;
    }

    .imglogo {
      width: 65px;
      height: 65px;
      margin-right: 10px;
    }

    .imglogo-store {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }

    .span_menu {
      margin-top: 10px;
    }

    .imgpride {
      max-width: 360px;
    }

    footer {
      margin-top: 25px;
      font-size: x-small;
      position: fixed;
      bottom: 0;
      width: 100%;
      text-align: center;
      display: block;
    }

    .informacion-adicional a ion-icon {
      font-size: clamp(14px, 3vw, 21px);
    }

    .contacto a ion-icon {
      font-size: clamp(14px, 3vw, 21px);
    }

    .informacion-adicional,
    .contacto,
    .politicas {
      display: ruby;
      max-width: 100%;
      background-color: #3330;
      border: 0px;
      flex-direction: column;
      align-items: center;
      margin-left: 20px;
      margin-right: 20px;
    }

    div[name="footer"] {
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      width: auto;
      padding: 8px;
      background-color: hsl(0deg 0% 0% / 53%);
      border: 1px solid #efb810;
      border-radius: 5px;
      transition: left 0.3s ease;
    }

    p[name="footer"] {
      vertical-align: super;
      color: #efb810;
      font-size: clamp(9px, 2vw, 17px);
      margin-inline-end: 20px;
    }

    a[name="footer"] {
      display: flex;
      font-size: clamp(14px, 3vw, 21px);
      text-decoration: none;
      color: #efb810;
      margin-inline-start: 0px;
      margin-inline-end: 20px;
      align-items: center;
      font-weight: bold;
    }

    .ion-icon {
      width: 35px;
      height: 35px;
      margin-right: 10px;
    }

    .mi-popup-alert {
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 3px solid #efb810;
    border-radius: 10px;
    color: rgb(255, 255, 255);
    }

    .mi-titulo-alert {
    color: #efb810;
    font-size: 20px;
    font-weight: bold;
    }
    .mi-contenido-alert {
    color: rgb(255, 255, 255);
    font-size: 15px;
    }
    .mi-boton-confirmar-alert {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }
    .mi-boton-confirmar-alert:hover {
    background-color: #efb810;
    color: rgb(0, 0, 0);
    }

    /* Sedes section */
    .sedes-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .sedes-links a {
      display: flex;
      align-items: center;
      padding: 15px;
      background-color: #444;
      color: white;
      text-decoration: none;
      border-radius: 10px;
      transition: background-color 0.3s;
    }

    .sedes-links a:hover {
      background-color: #555;
    }

    /* Apps section */
    .apps-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .apps-links h3 {
      color: #d4d4d4;
    }

    .apps-links a {
      display: flex;
      align-items: center;
      padding: 10px;
      background-color: #444;
      color: white;
      text-decoration: none;
      border-radius: 10px;
      transition: background-color 0.3s;
    }

    .apps-links a:hover {
      background-color: #555;
    }

    /* Contact section styles */
    .contact-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      padding: 15px 25px;
      background-color: #444;
      border-radius: 10px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      min-width: 300px;
      justify-content: flex-start;
    }

    .contact-item:hover {
      background-color: #efb810;
      color: #333;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(239, 184, 16, 0.3);
    }

    .contact-item i {
      font-size: 24px;
      margin-right: 15px;
      width: 30px;
      text-align: center;
    }

    .contact-item span {
      display: flex;
      flex-direction: column;
    }

    .contact-item .label {
      font-size: 12px;
      opacity: 0.8;
      margin-bottom: 2px;
    }

    .contact-item .value {
      font-size: 16px;
      font-weight: bold;
    }

    .policy-preview {
      position: fixed;
      right: 22px;
      bottom: 24px;
      width: min(270px, calc(100vw - 44px));
      background: rgba(20, 22, 29, 0.96);
      color: #fff;
      border: 1px solid rgba(239, 184, 16, 0.45);
      border-radius: 14px;
      padding: 15px;
      box-shadow: 0 14px 35px rgba(0,0,0,0.4);
      z-index: 1100;
      font-size: 0.85rem;
      box-sizing: border-box;
    }

    .policyPreview-show {
      animation: highlight-pulse 5s ease-in-out forwards;
    }

    @keyframes highlight-pulse {
      0% {
      box-shadow: 0 8px 18px rgba(0,0,0,0.35);
      transform: scale(1);
      }
      10% {
      box-shadow: 0 0 30px rgba(239, 184, 16, 1), 0 0 50px rgba(239, 184, 16, 0.6);
      transform: scale(1.05);
      }
      25% {
      box-shadow: 0 0 20px rgba(239, 184, 16, 0.8);
      transform: scale(1.02);
      }
      50% {
      box-shadow: 0 0 30px rgba(239, 184, 16, 1), 0 0 50px rgba(239, 184, 16, 0.6);
      transform: scale(1.05);
      }
      75% {
      box-shadow: 0 0 20px rgba(239, 184, 16, 0.8);
      transform: scale(1.02);
      }
      90% {
      box-shadow: 0 0 30px rgba(239, 184, 16, 1), 0 0 50px rgba(239, 184, 16, 0.6);
      transform: scale(1.05);
      }
      100% {
      box-shadow: 0 8px 18px rgba(0,0,0,0.35);
      transform: scale(1);
      }
    }

    .policy-preview h4 {
      margin: 0 0 8px;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      color: #efb810;
    }

    .policy-preview p {
      margin: 0 0 12px;
      line-height: 1.2;
      font-size: 0.8rem;
    }

    .policy-preview button {
      width: 100%;
      padding: 9px 10px;
      background-color: #efb810;
      border: none;
      border-radius: 8px;
      color: #222;
      font-weight: bold;
      cursor: pointer;
      font-size: 0.85rem;
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .policy-preview button:hover {
      background-color: #ffc500;
      transform: translateY(-1px);
    }

    /* Promo Floating/Hero Banner */
    .promo-top-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 12px;
      margin-left: 6px;
      border-radius: 999px;
      background: linear-gradient(135deg, #efb810, #ffdb58);
      color: #17181d;
      font-weight: 800;
      font-size: 0.76rem;
      text-decoration: none;
      box-shadow: 0 0 16px rgba(239, 184, 16, 0.45);
      animation: promoPulse 2.5s infinite ease-in-out;
    }

    .promo-hero-card {
      position: relative;
      margin-top: 26px;
      padding: 18px 22px;
      border: 1px solid rgba(239, 184, 16, 0.45);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(239, 184, 16, 0.16) 0%, rgba(20, 22, 29, 0.95) 100%);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(10px);
    }

    .promo-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #efb810;
      color: #17181d;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .promo-hero-card h3 {
      margin: 0 0 6px;
      color: #fff;
      font-size: 1.15rem;
      font-weight: 800;
    }

    .promo-hero-card p {
      margin: 0 0 14px;
      color: #d1d5db;
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .promo-hero-card a.promo-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: #efb810;
      color: #17181d;
      font-weight: 800;
      font-size: 0.86rem;
      border-radius: 10px;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .promo-hero-card a.promo-cta-btn:hover {
      background: #ffdb58;
      transform: translateY(-2px);
    }

    @keyframes promoPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 14px rgba(239, 184, 16, 0.4);
      }
      50% {
        transform: scale(1.05);
        box-shadow: 0 0 24px rgba(239, 184, 16, 0.8);
      }
    }

    @media (max-width: 770px) {
      nav {
        padding: 6px 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 110;
      }

      nav ul {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .mobile-menu {
        display: flex;
      }

      main {
        margin-top: 50px;
      }

      .policy-preview {
        right: 14px;
        bottom: 14px;
        width: min(250px, calc(100vw - 28px));
        padding: 13px;
      }

      .policy-preview h4 {
        font-size: 0.85rem;
        margin: 0 0 4px;
      }

      .policy-preview p {
        font-size: 0.75rem;
        margin: 0 0 6px;
      }

      .policy-preview button {
        padding: 5px 6px;
        font-size: 0.75rem;
      }

      .informacion-adicional,
      .contacto,
      .politicas {
        margin-left: 1px;
        margin-right: 1px;
      }

      .sedes-links {
        flex-direction: column;
        align-items: center;
      }

      .contact-item {
        min-width: 280px;
        padding: 12px 15px;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 5px 2px;
      }

      main {
        margin-top: 45px;
      }

      .policy-preview {
        right: 20px;
        bottom: 10px;
        width: calc(100vw - 40px);
        padding: 12px;
      }

      .policy-preview h4 {
        font-size: 0.8rem;
      }

      .policy-preview p {
        font-size: 0.7rem;
        margin: 0 0 5px;
      }

      .policy-preview button {
        padding: 4px 5px;
        font-size: 0.7rem;
      }

      .contact-item {
        min-width: 100%;
        max-width: 90vw;
      }

      .mobile-menu {
        width: 240px;
        left: -240px;
      }

      .content:not(.home-overview) {
        padding: 34px 18px 42px;
      }

      .content:not(.home-overview) h1 {
        font-size: 2rem;
      }

      .sedes-links,
      .contact-links,
      .apps-links,
      .site-footer-inner {
        grid-template-columns: 1fr;
      }

      .apps-links h3 {
        margin-top: 12px;
      }

      .site-footer {
        padding: 24px 18px 32px;
      }
    }