body {
    background: #f5f5f5;
    font-family: 'Lora', sans-serif;
    font-family: 'Poppins','Helvetica','Arial',sans-serif;
    font-size:1rem;
    color: #133850;    
    }


  /* Estilos personalizados para el botón móvil */
  .mobile-menu-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    opacity: 0.8;
    z-index: 4000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
  }







        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow-x: hidden;
            font-family: 'Open Sans', sans-serif;
        }
        
        .video-container {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .video-container video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: 0;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
        
        .content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        /* Efectos para el texto */
        .display-4 {
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
        }
        
        .lead {
            font-size: 1.2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Sección de contenido adicional */
        .additional-content {
            background: linear-gradient(to bottom, #1a1a1a, #2d2d2d);
            background: linear-gradient(to bottom, #474d53, #2d2d2d);
            background: linear-gradient(to bottom, #020202, #2d2d2d);
            color: white;
        }
        .additional-content2 {
            background: linear-gradient(to bottom, #2d2d2d, #474d53);
            background: linear-gradient(to bottom, #2d2d2d, #020202);
            color: white;
        }
        
        .icon-box {
            transition: transform 0.3s ease;
        }
        
        .icon-box:hover {
            transform: translateY(-5px);
        }
