      body {
        font-family: ArialNarrow, Tahoma;
        margin: 0;
        background-color: #000000;;
        display: flex;
        justify-content: center;
      }
      iframe {
        display: none;
        height: 90vh;
        border: none;
        width: 80%;
      }
      #sidebar {
        width: 10%;
        background-color: #666;
        background: linear-gradient(to bottom, #666, #333);
        color: white;
        padding: 0px;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
      }
      #sidebar img {
        max-width: 100%;
      }
      #menu {
        margin-top: 0px;
      }
      #menu a {
        margin-bottom: 0px;
        color: #333;
        text-decoration: none;
      }
      #contenedor {
        width: 90%;
        background-color: #333;
        padding: 0%;
        box-sizing: border-box;
        margin-left: 10%;
      }
      #main-content {
        width: 100%;
        background-color: #000000;
        padding: 0px;
        box-sizing: border-box;
      }
      #inicio {
        width: 100%; 
        margin: 0 auto;
        height: 60vh;
        background-color: #666666;
        border-radius: 17px;
        color: white;
        text-align: center;
        padding: 0;
      }
      .primera-seccion {
        width:100%; margin: 0 auto;
        height: 60vh;
        background-color: #666666;
        color: white;
        text-align: center;
        border-radius: 17px;
        padding: 0px;
      }
      #news-ticker marquee {
        width: 100%;
        background-color: #333;
        white-space: nowrap;
        font-size: 16px;
        border-radius: 17px;
        color: white;
      }
      #footer {
        width: 100%; margin:0 auto;
        background: linear-gradient(to right, #AAAAAA, #666666);
        border-radius: 17px;
        color: white;
        text-align: center;
        padding: 0px;
        bottom: 0;
      }
      #social {
        width: 100%; margin: 0 auto;
        background-color: #333;
        border-radius: 17px;
        color: white;
        text-align: center;
        padding: 0px;
      }
      .transition {
        -webkit-transform: scale(1.5); 
        -moz-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
      }
      .transition2 {
        -webkit-transform: scale(1.2); 
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
      }
      .boton-menu {
        background-color: #666;
        border: none;
        border-radius: 15px;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        color: #000000;
        margin: 4px 2px;
        cursor: pointer;
      }
      .boton-menu:hover {
        background-color:#AAA;
      }
      #titulo {
        width: 100%;
        position: absolute;
        padding: 0px;
        margin: 0px auto;
        text-align: center;
        font-size: 27px;
        color: rgba(255, 255, 255, 1);
        font-family: 'Open Sans', sans-serif;
        z-index: 9999;
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.33), 
                     -1px 0px 2px rgba(255, 255, 255, 0);
      }
      .imagen-con-borde-redondeado {
            /* border: 2px solid #999;*/
            border-radius: 15px;
            /* padding: 5px; */
      }
      .seccion {
            display: none; /* Oculta todas las secciones por defecto */
      }
      #reloj {
        font-size: 1.1em;
        color: #fff;
        text-align: center;
        margin-top: 0px;
      }    
      /* Estilos para el botón flotante de WhatsApp */
      .whatsapp-button {
        position: fixed;
        bottom: 220px;
        right: 20px;
        width: 80px;
        height: 80px;
        background-color: #25d366;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .whatsapp-button img {
        width: 60px;
        height: 60px;
    }
    .whatsapp-button {
      transition: transform 0.3s ease; /* Suaviza la animación */
    }
  
    .whatsapp-button:hover {
      transform: scale(1.2); /* Aumenta el tamaño del botón en un 20% */
    }
    /* === POPUP TOTALMENTE AISLADO - REEMPLAZAR TODO EL CSS DEL POPUP === */

  /* Contenedor principal - sin afectar nada más */
  div#racPopupOverlay.rac-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
    font-family: Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: normal !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
  }

  /* Cuando se muestra */
  div#racPopupOverlay.rac-popup-overlay.rac-popup-show {
    display: flex !important;
  }

  /* Contenido del popup */
  div#racPopupOverlay .rac-popup-content {
    background-color: white !important;
    border-radius: 17px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
    max-width: 700px !important;
    width: 95% !important;
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden !important;
    position: relative !important;
    border: 3px solid #002654 !important;
    animation: rac-popup-slide 0.4s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    height: auto !important;
    max-height: 500px !important;
  }

  @keyframes rac-popup-slide {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  /* Área de texto - 75% */
  div#racPopupOverlay .rac-popup-text {
    flex: 0 0 75% !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    background-color: white !important;
    display: block !important;
    position: relative !important;
    margin: 0 !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Título del popup */
  div#racPopupOverlay .rac-popup-text h2 {
    margin: 0 0 15px 0 !important;
    color: #002654 !important;
    font-size: 24px !important;
    font-weight: bold !important;
    font-family: Roboto, Arial, sans-serif !important;
    line-height: 1.2 !important;
    text-align: left !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
  }

  /* Párrafos del popup */
  div#racPopupOverlay .rac-popup-text p {
    margin: 0 0 15px 0 !important;
    line-height: 1.6 !important;
    color: #333 !important;
    font-size: 14px !important;
    font-family: Roboto, Arial, sans-serif !important;
    text-align: left !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    font-weight: normal !important;
  }

  /* Área de imagen - 25% */
  div#racPopupOverlay .rac-popup-image {
    flex: 0 0 25% !important;
    background: linear-gradient(135deg, #000000, #888888) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-align: center !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    min-height: 200px !important;
  }

  /* IMAGEN DEL LOGO - CONTROL TOTAL DEL TAMAÑO */
  div#racPopupOverlay .rac-popup-image img {
    width: 120px !important; /* TAMAÑO FIJO EN PÍXELES */
    height: 120px !important; /* TAMAÑO FIJO EN PÍXELES */
    max-width: 120px !important;
    max-height: 120px !important;
    min-width: 120px !important;
    min-height: 120px !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    float: none !important;
    clear: none !important;
    transform: none !important;
  }

  /* Botón cerrar */
  div#racPopupOverlay .rac-popup-close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    background: #002654 !important;
    color: white !important;
    border: none !important;
    font-size: 20px !important;
    cursor: pointer !important;
    font-weight: bold !important;
    z-index: 1000001 !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
    font-family: Arial, sans-serif !important;
  }

  div#racPopupOverlay .rac-popup-close:hover {
    background: #FAC803 !important;
    color: #002654 !important;
  }

  /* Contador */
  div#racPopupOverlay .rac-popup-countdown {
    position: absolute !important;
    bottom: 10px !important;
    right: 15px !important;
    background-color: rgba(0, 38, 84, 0.8) !important;
    color: white !important;
    padding: 5px 12px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    font-family: Roboto, Arial, sans-serif !important;
    margin: 0 !important;
    border: none !important;
    line-height: 1.2 !important;
    text-align: center !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
  }

  /* Responsive */
  @media (max-width: 768px) {
    div#racPopupOverlay .rac-popup-content {
        flex-direction: column !important;
        max-height: 85vh !important;
        max-width: 95% !important;
    }
    
    div#racPopupOverlay .rac-popup-text {
        flex: 1 !important;
        padding: 20px !important;
    }
    
    div#racPopupOverlay .rac-popup-image {
        flex: 0 0 150px !important;
        min-height: 150px !important;
    }
    
    div#racPopupOverlay .rac-popup-image img {
        width: 100px !important;
        height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
    }
  }