
*{
    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;
}



@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;
    padding-left: 20px;
}
.linkLigas{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding-left: 25px;
    
}

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


.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:30px;
    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: 50px;
        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;
    }

}




/*presentacion*/
.pres{
    
    background-color: #050927; 
    display: flex;
    flex-direction: column; 
    justify-content: space-between;
    align-items: center; 
    padding: 50px 80px; 
    width: 100%;
    gap: 30px;
  
}

.pres p {
    font-family: 'Arial', sans-serif;
    font-size: 16px; 
    color: white;
    line-height: 1.6;
    text-align: center;
    
}

.pres img {
    height: 60px;
    width: auto;
    
}

@media (max-width: 952px) {
    .pres p {
        font-size: 14px; 
        
    }
    
    .pres img {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 780px) {
    .pres p {
        font-size: 12px; 
        text-align: justify;
        
    }
    
    .pres img {
        height: 40px;
        width: auto;
    }
}


/*Rubocast*/
.rubocast {
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px; 
    box-sizing: border-box;
}

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

.imagenac img {
    max-width: 100%; 
    height: auto; 
    pointer-events: none;
}
.rubocastp img{
 width: 400px;
 height: auto;
 pointer-events: none;
 margin: 0 auto;
 
}
.rubocastp {
    width: 50%; 
    box-sizing: border-box;
    padding-left: 50px;
    padding-right: 70px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column; 
    gap: 30px; 
    
}


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

.buttonrub {
    display: flex;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    width: 150px;
    height: 38px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: bolder;
    color: #000;
    background-color: #ffffff;
    
   
}

    .buttonrub:hover {
background-color: #4CAF50;
box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
color: #fff;
transform: translateY(-7px);
}




@media (max-width: 952px) {
    .rubocast {
        flex-direction: column; 
        padding: 20px; 
        gap: 10px; 
        
        
    }

    .imagenac {
        width: 100%; 
        
                
    }

    .rubocastp{
        width: 90%; 
        margin-bottom: 20px;
        padding-left: 5px;
        padding-right: 5px;
        margin: 0 auto; /* Centra el bloque de texto */
    }

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

    .rubocastp img{
        width: 400px;
        height: auto;
        pointer-events: none;
        margin: 0 auto;
        
       }

       .buttonrub {
        
        margin:0 auto;
}

}


@media (max-width: 780px) {
    .rubocast {
        flex-direction: column; 
        padding: 20px; 
        gap: 10px; 
        
        
    }

    .imagenac {
        width: 100%; 
        
                
    }

    .rubocastp{
        width: 90%; 
        margin-bottom: 20px;
        padding-left: 5px;
        padding-right: 5px;
        margin: 0 auto; 
    }

  
    
    .rubocastp p{
        font-family: 'Arial', sans-serif;
        font-size: 12px; 
        line-height: 1.6;
        text-align: justify;
    }

    .rubocastp img{
        width: 250px;
        height: auto;
        pointer-events: none;
        margin: 0 auto;
        
       }

       .buttonrub {
        
        margin:0 auto;
}

}




/* Estilos del carrusel */
@import url("https://fonts.googleapis.com/css?family=Muli&display-swap");

.catalogo{
    /*background: linear-gradient(-45deg, #85e0e0, #d2a679, #80ccff, #b13103);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;*/
    font-size: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    overflow: hidden;
    margin: 0;
    flex-direction: column;
}


.catalogo h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.container {
    display: flex;
    width: 100%;
    padding: 0 70px;
    height: 500px;
  }
  
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .panel {
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
     border-radius: 50px;
    color: #fff;
    text-shadow: 0px 2px 4px #000;
    cursor: pointer;
    flex: 0.3;
    margin: 10px;
    position: relative;
    transition: flex 0.4s ease-in;
    box-shadow: 2px 2px 2px 2px #8a8a8a;

    overflow: hidden;
  }
  
  .panel h3 {
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    left: 30px;
    margin: 0;
    opacity: 0;
    
  }
  
  .panel.active {
    background-size: 100% auto;
    flex: 1.3;
    height: auto;
  }
  
  .panel.active h3 {
    opacity: 1;
    transition: opacity 0.5s ease-in 0.5s;
  }
  
  .panel img {
    width: 100%;  
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.panel.active img {
    width: 100%;  
    height: 100%; 
    object-fit: cover; 
}

.buttoncat{
    display: flex;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    width: 220px;
    height: 45px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bolder;
    color: white;
    background-color: gray;
    box-shadow:1px 1px 1px 1px #616161;

    
   
}

    .buttoncat:hover {
background-color: #4CAF50;
box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
color: #fff;
transform: translateY(-7px);
}


@media (max-width: 952px) {
    .container {
         flex-wrap: wrap; 
        justify-content: center;
        height: auto;
      }
}
@media (max-width: 780px) {
    .container {
      flex-direction: row;
      flex-wrap: wrap; 
      justify-content: center;
      height: auto;
    }
  
    .panel {
      flex: 0 0 85%; 
      width: 120px; 
      height: auto;
      margin-bottom: 10px;
      transition: none; 
      box-shadow: none; 
      position: relative;
      overflow: hidden; 
      border-radius: 20px;
    }
  
    .panel img {
      width: 100%;
      height: auto;
      object-fit: cover; 
    }
  
    .panel h3 {
      position: absolute;
      bottom: 10px;
      left: 10px;
      margin: 0;
      font-size: 18px;
      opacity: 0; 
      transition: opacity 0.3s ease-in-out;
      color: white;
      text-shadow: 0px 2px 4px #000; 
    }
  
   
    .panel:hover h3 {
      opacity: 1;
    }
  
    .panel.active {
        flex: 0 0 100%; 
        height: auto;
      
    }

    .catalogo h1{
        font-size: 30px;
    }
  }
  


/*
@mixin aspect-ratio($width, $height) {
    position: relative;
      
    &:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: ($height / $width) * 100%;
    }
      
    > img {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100%;
          height: 100%;
    }
  }
  
  
  
  section {
      background: #F4F4F4;
      padding: 50px 0;
  }
  
  .container {
      max-width: 1044px;
      margin: 0 auto;
      padding: 0 20px;
  }
  
  .carousel {
      display: block;
      text-align: left;
      position: relative;
      margin-bottom: 22px;
      
      > input {
          clip: rect(1px, 1px, 1px, 1px);
          clip-path: inset(50%);
          height: 1px;
          width: 1px;
          margin: -1px;
          overflow: hidden;
          padding: 0;
          position: absolute;
          
          &:nth-of-type(6):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -500%; }
          &:nth-of-type(5):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -400%; }
          &:nth-of-type(4):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -300%; }
          &:nth-of-type(3):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -200%; }
          &:nth-of-type(2):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: -100%; }
          &:nth-of-type(1):checked ~ .carousel__slides .carousel__slide:first-of-type { margin-left: 0%; }
          
          &:nth-of-type(1):checked ~ .carousel__thumbnails li:nth-of-type(1) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(2):checked ~ .carousel__thumbnails li:nth-of-type(2) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(3):checked ~ .carousel__thumbnails li:nth-of-type(3) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(4):checked ~ .carousel__thumbnails li:nth-of-type(4) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(5):checked ~ .carousel__thumbnails li:nth-of-type(5) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
          &:nth-of-type(6):checked ~ .carousel__thumbnails li:nth-of-type(6) { box-shadow: 0px 0px 0px 5px rgba(0,0,255,0.5); }
      }
  }
  
  .carousel__slides {
      position: relative;
      z-index: 1;
      padding: 0;
      margin: 0;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      display: flex;
  }
  
  .carousel__slide {
      position: relative;
      display: block;
      flex: 1 0 100%;
      width: 100%;
      height: 100%;
      overflow: hidden;
      transition: all 300ms ease-out;
      vertical-align: top;
      box-sizing: border-box;
      white-space: normal;
      
      figure {
          display: flex;
          margin: 0;
      }
      
      div {
          @include aspect-ratio(3, 2);
          width: 100%;
      }
      
      img {
          display: block;
          flex: 1 1 auto;
          object-fit: cover;
      }
      
      figcaption {
          align-self: flex-end;
          padding: 20px 20px 0 20px;
          flex: 0 0 auto;
          width: 25%;
          min-width: 150px;
      }
      
      .credit {
          margin-top: 1rem;
          color: rgba(0, 0, 0, 0.5);
          display: block;        
      }
      
      &.scrollable {
          overflow-y: scroll;
      }
  }
  
  .carousel__thumbnails {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      
      margin: 0 -10px;
      
      .carousel__slides + & {
          margin-top: 20px;
      }
      
      li {        
          flex: 1 1 auto;
          max-width: calc((100% / 6) - 20px);  
          margin: 0 10px;
          transition: all 300ms ease-in-out;
      }
      
      label {
          display: block;
          @include aspect-ratio(1,1);
          
                    
          &:hover,
          &:focus {
              cursor: pointer;
              
              img {
                  box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.25);
                  transition: all 300ms ease-in-out;
              }
          }
      }
      
      img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
  }
  */

    /*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); 
    }


    /* Banner */
.Banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 50px;
    position: relative; /* Necesario para el posicionamiento absoluto del logo */
}

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

/* Estilo para el logo */
.Banner .logo {
    position: absolute;
    top: 20px; /* Ajusta según la posición deseada */
    left: 20px; /* Ajusta según la posición deseada */
    width: 100px; /* Tamaño del logo */
    height: auto;
    z-index: 1;
}

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