/* Evitar desbordamiento horizontal */
        html, body {
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }
    
        /* Ocultar barras de desplazamiento */
        html {
            scrollbar-width: none; /* Firefox */
        }
        
        html::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }
        
        body {
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Aplicación de la fuente */
        h1{
            font-size: clamp(5rem, 6vw, 8vw) !important; /* Mínimo 2rem, flexible hasta 5vw, máximo 4rem */
            line-height: 1 !important;
        }
        
        h2 {
            font-size: clamp(3rem, 5vw, 6vw) !important; /* Mínimo 2rem, flexible hasta 5vw, máximo 4rem */
            line-height: 1 !important;
        }
        
        h5{
            font-weight:800;
            font-family: "Helvetica Neue heavy", sans-serif;
            font-size: clamp(1.3rem, 2.1rem, 2.1rem) !important;
        }
    
        p {
            font-family: 'Helvetica Neue', sans-serif !important;
            font-size: clamp(1rem, 1.8rem, 2rem) !important;
            line-height: 1;
        }
    
        /* Botón con fondo sólido */
        .boton {
            background-color: #e23f2a !important;
            color: white !important;
            transition: all 0.3s ease !important;
        }
        
        .boton:hover {
            background-color: #c99052 !important;
            transform: scale(1.1);
            color: white !important;
        }
        
        /* Botón con estilo outline */
        .boton-outline {
            background-color: transparent !important;
            border: 2px solid #437451 !important;
            color: #437451 !important;
            transition: all 0.3s ease !important;
        }
        
        .boton-outline:hover {
            background-color: #c99052 !important;
            border-color: #c99052 !important;
            color: white !important;
            transform: scale(1.1);
        }
        
        .bold {
            font-weight:900!important;
        }
        
        
        .subtitulo{
            font-weight:600;
            font-size: clamp(1em, 1.8rem, 2rem) !important;
            line-height:1;
            color:#e13f2a;
        }
        
        .mySlides {display:none}



  
  #sib-container input:-ms-input-placeholder {
    text-align: left;
    font-family: Helvetica, sans-serif;
    color: #c0ccda;
  }

  #sib-container input::placeholder {
    text-align: left;
    font-family: Helvetica, sans-serif;
    color: #c0ccda;
  }

  #sib-container textarea::placeholder {
    text-align: left;
    font-family: Helvetica, sans-serif;
    color: #c0ccda;
  }

  #sib-container a {
    text-decoration: underline;
    color: #2BB2FC;
  }
