
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing:border-box;
}

/*Menú*/
nav {
    position: fixed; 
    top: 0;         
    left: 0;       
    width: 100%;
    background: white;
    height: 80px;
    z-index: 1000; 
   
}

.enlace{
    position: absolute;
    padding: 20px 50px;
}

.logo{
    height: 40px;
}

nav ul{
    float: right;
    margin-right: 20px;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: black;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

li a.active, li a:hover{
    background: #D9D9D9;
    transition: .5s;
}

.checkbtn{
    font-size: 30px;
    color: black;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}

/*14:49*/

@media (max-width:952px){
    .enlace{
        padding-left: 20px;
    }
        nav ul li a{
            font-size: 14px;
        }
    
}

@media (max-width:780px){
    .checkbtn{
        display: block;
    }
    ul{
        position:fixed;
        width: 100%;
        height: 100vh;
        background: white;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a{
        font-size: 20px;
    }

    li a:hover, li a.active{
        background: none;
        color:#5caf50;
    }

    #check:checked ~ ul{
        left: 0;
    }
}

/*Footer*/

.Liga {
    background-color: #0d0d0dcb;
    display: flex;
    flex-direction: column; 
    width: 100%;
    
}

.info {
    padding-left: 25px; 
    padding-top: 40px;
    padding-bottom: 20px;
}

.info img {
    height: 60px;
    width: auto;
}
.linkLigas{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    
}

.card{
    display: flex; 
    justify-content: left; 
    
    padding-left: 20px;
   
  
}


.linksLigas img {
    width: 30px; 
    height: auto; 
    margin: 0; 
    padding: 0; 
    padding-bottom: 50px;
    gap: 5px;
}

footer {
    text-align: center;
    background-color: #0d0d0dd3;
    padding: 15px;
}

.Copyright {
    text-align: left;
    color: #ffffffa0;
    font-size: 15px;
    margin: 15px;
}

.Copyright a {
    color: #ffffffa0;
    font-size: 15px;
    text-decoration: underline;
}

.wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left:15px;
    padding-bottom: 30px;
   
  }
  
  .button {
    width: 140px;
    height: 38px;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-weight: 500;
    color: #000;
    background-color: #ffffff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    
    }
  
  .button:hover {
    background-color: #5caf50;
    box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
    color: #fff;
    transform: translateY(-7px);
  }


@media (max-width: 952px) {
    .Liga {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }

    .info {
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .info img {
        height: 40px;
        width: auto;
        
    }

    .linksLigas img {
        width: 22px; 
        margin: 4px 0; 
        padding-bottom: 30px;
    }

}

@media (max-width: 780px) {
    .Liga {
        flex-direction: column;
        align-items: left;
        text-align: left;
       
    }

    .info {
        padding-left: 20PX;
        padding-top: 20px;
        padding-bottom: 5px;
    }
   

   
    .linksLigas {
        flex-direction: column;
        align-items: center;
        
        
    }

    .linksLigas img {
        width: 20px; 
        padding-bottom: 20px;
    }

    
    
}

/*Diferentes*/
.diferentes {
    background-color: black; 
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 50px 80px; 
    width: 100%;
}

.contenidodif {
    width: 40%; 
}

.contenidodif h2 {
    font-family: 'Arial', sans-serif;
    font-size: 35px; 
    color: #e9e6e6;
    margin-bottom: 20px;
}

.contenidodif p {
    font-family: 'Arial', sans-serif;
    font-size: 16px; 
    color: #e9e6e6e3;
    line-height: 1.6;
    text-align: justify;
}

.imagen-dif {
    width: 55%; 
    display: flex;
    justify-content: center;
}

.imagen-dif img {
    max-width: 100%; 
    height: auto; 
    pointer-events: none;
}



@media (max-width:1000px) {
    .diferentes {
        flex-direction: column; 
        padding: 20px;
    }

    .contenidodif {
        width: 90%; 
        margin-bottom: 20px;
    }

    .imagen-dif {
        width: 100%; 
    }

    .contenidodif h2 {
        font-family: 'Arial', sans-serif;
        font-size: 30px; 
        color: #e9e6e6;
        margin-bottom: 20px;
    }
    
    .contenidodif p {
        font-family: 'Arial', sans-serif;
        font-size: 15px; 
        color: #e9e6e6e3;
        line-height: 1.6;
        text-align: justify;
    }
}

/*Banner*/
.Banner{
    width: 100%;
    height: auto;
    overflow: hidden;
   margin-top: 50px;
}

.Banner img{
    width: 100%;
    height: auto; 
    display: block; 
    object-fit: cover;
    pointer-events: none;
    margin-top:10px;
}

@media (max-width:1000px) {
    .Banner{
        
       margin-top: 60px;
    }
}

/*presentacion*/
.podcast-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    background-color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
}

.podcast-promotion {
    background-color: #f2f2f2;
    border-radius: 35px;
    padding: 30px;
   
    text-align: center;
    flex: 1;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.podcast-promotion h2 {
    font-size: 30px;
    font-weight: 800px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
   
}

.podcast-promotion p {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.icons {
    display: flex;
    justify-content: center;
    width: 100%;
    
}

.icons a {
    margin: 0 25px;
    
}

.icons img {
    width: 70px;
    height: auto;
}


.podcast-info {
    
    display: flex;
    align-items: center;
    padding: 30px;
    flex: 1;
    max-width: 400px; 
    justify-content: flex-start; 
}

.podcast-info img.podcast-image {
    width: 200px; 
    height: auto;
    border-radius: 35px;
    margin-right: 20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}



.podcast-info p {
    font-size: 16px;
   font-family: Arial, Helvetica, sans-serif;
    margin: 0; 
}


@media (max-width: 952px) {
    .podcast-section{
       align-items: center; 
        margin-right: 0; 
        padding: 20px; 
        justify-content: center;
       
    }
    .podcast-promotion {
         margin-right: 5px;
         max-width: 300px;
         margin-left: 10px;
       
    }
    
    .podcast-promotion h2 {
        font-size: 20px;
       margin-bottom: 10px;
        
       
    }
    
    .podcast-promotion p {
        font-size: 14px;
        margin-bottom: 20px;
      
    }

    .icons img {
        width: 55px;
        height: auto;
    }
    .podcast-info{
        gap: 10px;
    }
    

    .podcast-info img.podcast-image {
        width: 150px; 
        margin-right: 0; 
        margin-bottom: 10px; 
        border-radius: 20px;
    }

  
}

@media (max-width: 780px) {
    .podcast-section{
        align-items: center;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 0;
    }
    .podcast-info {
        padding: 15px; 
        gap: 20px;
    }
    .podcast-info p{
        text-align: right;
        margin-bottom: 4px;
        
    }

    .podcast-info img.podcast-image {
        width: 150px; 
        border-radius: 20px;
        margin-bottom: 4px;
    }

    .podcast-text p {
        font-size: 14px; 
        text-align: right;
        margin-bottom: 4px;
    }

   
}


/* Sección destacada */

.latest {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 70px;
}

.latest h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-left: 75px;
}

.divider {
    border: none;
    height: 2px;
    background-color: rgb(175, 175, 175);
    margin: 10px 75px;
}
/* Carrusel */
.carousel {
    position: relative;
    width: 95%; 
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: flex-start; 
}

.slide {
    flex: 0 0 calc(30% - 20px); 
    margin: 10px; 
    box-sizing: border-box;
}




/* Botones del carrusel */
.carousel-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.carousel-button {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 1100px) {
    .carousel-button {
       
        width: 60px;
        height: 60px;
       
    }

}
/* Estilos de carrusel en pantallas pequeñas */
@media (max-width: 780px) {
    .latest h1 {
        font-size: 25px;
        margin-left: 25px;
    }

    .carousel {
        width: 90%;
        overflow: hidden;
        margin: 0 auto;
    }

    .slider {
        display: flex;
        transition: transform 0.5s ease;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }

    .slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin: 0 10px;
        box-sizing: border-box;
        position: relative;
        padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
        height: 0;
    }

    .carousel iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .carousel-buttons {
        display: none;
    }


}

/*form*/
.container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 50px 80px; 
    width: 100%;
    flex-wrap: wrap; 
}

.texto {
    width: 40%; 
    justify-content: center;
    text-align: center;
}

.participar {
    width: 90%;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.participar h1 {
    font-family: 'Arial', sans-serif;
    font-size: 40px; 
    color: black;
}

.texto p {
    font-family: 'Arial', sans-serif;
    font-size: 40px; 
    color: black;
}

.texto img {
    width: 500px;
    margin: 20px auto; 
}

.margen {
    width: 45%;
    margin: 10px auto;
    border: 3px solid  #b2381d;
    padding: 20px;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 
}

.Formulario {
    display: flex;
    flex-direction: column;
}

form label, form legend {
    display: block;
    font-size: 16px;
    margin: 10px 0; 
    font-family: 'Arial', sans-serif; 
}

.input-padron {
    display: block;
    margin: 0; 
    padding: 10px 4px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    height: 40px; 
}

.input-padron, textarea {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 20px;
    margin-top: 10px; 
}

textarea {
    resize: vertical;
    box-sizing: border-box; 
}

.boton-container {
    display: flex;
    justify-content: space-between; 
    margin-top: 20px; 
}

.enviar {
    width: 40%;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: #6ca3d5;
    border: none;
    border-radius: 5px;
    transition: 1s all;
    cursor: pointer;
    margin-left: 20px;
    margin-top: 20px;
}

.Limpiar:hover {
    background: #5A5A5A;
    transform: scale(1.2); 
}

.Limpiar {
    width: 40%;
    padding: 15px 0;
    font-size: 18px;
    margin-right: 30px;
    margin-left: 20px;
    font-weight: bold;
    color: white;
    background: #828282;
    border: none;
    border-radius: 5px;
    transition: 1s all;
    cursor: pointer;
    margin-top: 20px; 
}

.enviar:hover {
    background: #050927;
    transform: scale(1.2); 
}

@media (max-width: 1250px) {
    .container {
        flex-direction: column; 
        padding: 20px;
    }
    .participar {
        width: 80%;
        align-items: center;
        text-align: center;
        margin: 30px auto;
    }
    .participar h1 {
        font-size: 35px;
    }

    .texto {
        width: 90%; 
        margin-bottom: 20px;  
    }
    .texto p {
        font-size: 40px;
    }
    .texto img {
        width: 400px;
    }

    .margen {
        width: 90%;
        margin-bottom: 20px;
    }

    @media (max-width: 780px) {
        .container {
            flex-direction: column; 
            padding: 20px;
        }
        .participar {
            width: 80%;
            align-items: center;
            text-align: center;
            margin: 30px auto;
        }
        .participar h1 {
            font-size: 30px;
            margin-bottom: 0;
        }
    
        .texto {
            width: 90%; 
            margin-bottom: 10px;  
        }
        .texto p {
            font-size: 30px;
        }
        .texto img {
            width: 250px;
        }
    
        .margen {
            width: 90%;
            margin-bottom: 20px;
        }
    }        

   
}



  /*WhatsApp*/

  .content {
    padding: 20px;
    height: 2000px; 

}

#whatsapp-button {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    
    transition: transform 0.3s; 
}

#whatsapp-button img {
    width: 50px; 
    height: 50px; 
}

#whatsapp-button:hover {
    transform: scale(1.3); 
}