
    @media (max-width: 800px) {
        .contenedor-botones {
         gap: 10px;
        }
        .long-link {
            word-break: break-all; /* Permite cortar palabras largas */
            hyphens: auto; /* Agrega guiones en palabras largas si es necesario */
            overflow-wrap: break-word; /* Otra opción para cortar palabras largas */
         }
    }
    

        .seccion-contenido {
        display: none;
        background: white;
        padding: 30px;
        border-radius: 30px;
        text-align: left; 
        }
        .seccion-activa {
            display: block;
        }
        .contenedor-botones {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }
        .boton-opcion {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            color: white;
            transition: background-color 0.3s;
        }
        .boton-registro {
            background-color: #5CB85C
        }
        .boton-registro:hover {
            background-color: #27ae60;
        }
        .boton-info {
            background-color: #5CB85C
        }
        .boton-info:hover {
            background-color: #27ae60;
        }
        .boton-certificado {
            background-color: #5CB85C        
        }
        .boton-certificado:hover {
            background-color: #27ae60;
        }

        .option-buttons {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }
        .option-button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
        }
        .content-section {
            display: none;
            background: white;
            padding: 30px;
            border-radius: 30px;
            text-align: left; 
        }
        .active-section {
            display: block;
        }
        .imagenes img {
            max-width: 100%;
            height: auto;
        }
        h1 {
            color: #2C3E50;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            color: #34495E;
            margin-bottom: 15px;
        }
        p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }
        ul {
            padding-left: 40px;
        }
        li {
            margin-bottom: 10px;
        }
        .video-container {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        iframe {
            max-width: 100%;
        }
        .hlo img{
            width: 100%;
        }
