/*Importación de tipografía de google fonts*/
@font-face {
    font-family: 'menunavegacion';
    src: url('Swiss721/swissc.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'menunavegacionhover';
    src: url('Swiss721/swissek.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'texto';
    src: url('Swiss721/swisse.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'textodos';
    src: url('Swiss721/swissc.ttf');
    font-weight: normal;
    font-style: normal;
}

.body{
    width: 100%;
    margin: 0;
    padding: 0;
}
/*Inicio del encabezado de página*/
.header{
    position: fixed;
    background-color: #1e1e1e;
    width: 100%;
    height: 12vh;
    margin: 0;
    padding: 0;
    z-index: 4;
}
.logo{
    position: absolute;
    left: 5%;
    height: 87%;
    top: 5%;
}
.menu{
    position: absolute;
    min-width: 50%;
    right: 5%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu li{
    margin: 0;
    padding: 0 15px;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: rgb(30 30 30);
    transition: all 0.5s;
}
.menu li:hover > .ah{
    font-family: 'menunavegacionhover', sans-serif;
    font-size: 1.3rem;
    color: white;
    
}
.menu li:hover{
    background-color: #c57f43;
    box-shadow: inset 0 0 10px 5px rgba(0, 0, 0, 0.205);
}
.activeh > .ah{
    font-family: 'menunavegacionhover', sans-serif;
    font-size: 1.3rem;
    color: white;
}
.menu li a{
    font-family: 'menunavegacion', sans-serif;
    text-decoration: none;
    color: white;
    transition: color 1s ease;
    transition: all 0.2s;
    font-weight: 300;
    font-size: 1rem;
}


.nave-bar{
    position: absolute;
    right: 5%;
    display: block;
    top: 30%;
    padding: 0;
}
.barra{
    display: flex;
    flex-direction: column;
    width: 3rem;
    height: 3rem;
    border: 0;
    background: transparent;
    gap: 8px;
}

.barra > div{
    background: white;
    height: 2px;
    width: 100%;
    border-radius: 5px;
    transition: all 0.5s;
    transform-origin: left;
}
.redso{
    display: none;
}

/*Fin del header*/

/*Inicio del main*/
.fondocompleto{
    width: 100%;
    position: relative;
    top: 10vh;
    height: auto;
}
#inicio{
    position: relative;
    left: 0;
    width: 100%;
    height: 90vh;
    background-color: #c57f43;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.199);
}
.imagen1{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 570px;
    object-fit: cover;
}

#Modo_de_aislamiento{
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 320px;
}
#svgdos{
    position: absolute;
    top: 0;
    left: 0px;
    width: 406px
}
#svg3{
    position: absolute;
    top: 20px;
    right: 0px;
    width: 620px
}
.texto-inicial{
    left: 2%;
    width: 40%;
    position: absolute;
    top: 20%;
    color: white;
    opacity: 0;
    transition: all 1s;
}

.texto-inicial p{
    margin-top: 0;
    font-size: 1.4rem;
    color: white;
    font-family: 'texto', sans-serif;
}

.boton {
    --color: #018559;
    font-family: 'Swiss CN BT', sans-serif;
    display: inline-block;
    width: 11em;
    height: 2.7em;
    line-height: 2.5em;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid white;
    transition: color .5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 1s;
    background: transparent;
   }
   
   .boton:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: linear-gradient(to bottom, #018559 0%,#00c482 100%);
    height: 150px;
    width: 200px;
    border-radius: 50%;
   }
   
   .boton:hover {
    color: #fff;
    border-color: #018559;
   }
   
   .boton:before {
    top: 100%;
    left: 100%;
    transition: all .7s;
   }
   
   .boton:hover:before {
    top: -30px;
    left: -30px;
   }
   
   .boton:active:before {
    background: #3a0ca3;
    transition: background 0s;
   }
   #conta::before{
    background: linear-gradient(to bottom, #6b4585 0%,#766482 100%);
   }
   #conta:hover{
        border-color: #6b4585;
   }

#nosotros{
    position: relative;
    width: 100%;
    left: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #766482;
    z-index: -1;
}
.s2{
    position: absolute;
    right: 0;
    top: 0;
    width: 509px;
}
.texto-quees{
    width: 50%;
    position: absolute;
    top: 5%;
    color: white;
    transition: all 1s;
    opacity: 0;
}
.texto-quees img{
    width: 55%;
    margin-left: 27.5%;
}
.texto-quees p{
    text-align: center;
    margin-top: 0;
    font-size: 1.5rem;
    color: white;
    font-family: 'textodos', sans-serif;
    margin-top: 40px;
}

#servicios{
    position: relative;
    width: 100%;
    left: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4c636b;
    z-index: 1;
}
.servi{
    width: 100%;
    position: absolute;
    left: 0;
    top: 5%;
    text-align: center;
    opacity: 0;
    transition: all 1s;
}
.servi img{
    width: 350px;
}
.bigcon{
    position: absolute;
    width: 80%;
    top: 35%;
    left: 5%;
    opacity: 0;
    overflow: hidden;
    height: 380px;
    transition: all 1s;
    transform: scale(0.95);
}
#backt{
    position: absolute;
    top: 30%;
    width: 100px;
    left: 10%;
    border: none;
    background: transparent;
    height: 40px;
    background-image: url(imagenes/Flecha-Linea.png);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.5s;
    transform: rotate(180deg);
    margin-left: -20px;
    opacity: 0;
}

#backt2{
    position: absolute;
    right: 10%;
    bottom: 2%;
    width: 100px;
    border: none;
    background: transparent;
    height: 40px;
    background-image: url(imagenes/Flecha-Linea.png);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.5s;
    margin-left: -20px;
    opacity: 0;
}
#backt2:hover, #backt:hover{
    background-image: url(imagenes/Flecha-Rellena.png);
}
.service{
    position: absolute;
    width: 300%;
    top: 20px;
    list-style: none;
    padding: 10px;
    transition: all 1s;
}
.service li{
    float: left;
    margin-left: 60px;
    position: relative;
    transition: all 0.5s;
}
.service li:first-child{
    margin-left: 0;
}
.linee{
    position: relative;
    width: 85%;
    left: 7.5%;
    height: 2px;
    border-radius: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), white, rgba(0, 0, 0, 0));
    top: 10px;
}
.tc{
    position: relative;
    font-family: 'menunavegacionhover', sans-serif;
    font-weight: 900;
    width: 90%;
    color: white;
    text-align: center;
    font-size: 1.2rem;
}
#pc{
    font-family: "textodos",sans-serif;
    font-size: 1.5rem;
}
.pc{
    font-family: 'textodos', sans-serif;
    font-size: 1.2rem;
    color: white;
    text-align: center;
    width: 80%;
    position: relative;
    overflow: hidden;
    transition: all 1s;
    font-weight: 100;
}

.icono-bola{
    width: 60px;
    height: 60px;
    border-radius: 30px;
    position: relative;
    background-color: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*Estilo de tarjeta*/
.card {
    position: relative;
    width: calc(8.33% - 60px);
    height: 310px;
    background: rgb(30 30 30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    border: none;
}
  .card:hover{
    scale: 1.05;
    background-color: #4c636b;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.274);
  }
.card:hover > .pc{
    opacity: 1;
    height: auto;
}

  


/*Fin de estilos tarjeta*/
#galeria{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #6d9773;
}
.s5{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 380px;
}

/*Inicio de la sesión de galería*/
.carousel-container {
    position: relative;
    width: 50%;
    height: 100vh;
    overflow: hidden;
  }
  
  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .carousel-slide.active {
    opacity: 1;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pho{
    position: absolute;
    right: 5%;
    top: 5%;
    color: white;
    text-shadow: 1px 1px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
  }
  .pho:hover{
    text-shadow: 0 0 5px #1e1e1e8e;
  }
  .desc-e{
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1e1e1ebe;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.5s;
    font-family: "textodos", sans-serif;
  }
  .desc-e div{
    text-align: center;
  }
 
  .desc-e:hover{
    opacity: 1;
  }
  .nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
  }
  
  .nav-indicator {
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
  }
  
  .nav-indicator.active {
    background-color: #000;
  }
.texto-3{
    position: absolute;
    left: 50%;
    width: 40%;
    margin: 0%;
    height: 70vh;
    top: 25vh;
    opacity: 0;
    transition: all 1s;
}
.texto-3 img{
    position: relative;
    width: 90%;
    left: 0%;
}
.texto-3 p{
    text-align: left;
    font-size: 1.5rem;
    color: white;
    font-family: 'textodos', sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 80%;
}
/*Sección de clientes*/
#clientes{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(imagenes/Fondo-Clap.png);
    background-size: cover;
    background-position: center;
}
.tapa1{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
}
.tapa1 img{
    position: absolute;
    width: 25%;
    left: 37.5%;
    top: 7%;
    transition: all 1s;
    opacity: 0;
}

/*Carousel de marcas*/
.gran-espacio{
    position: absolute;
    width:750px;
    left: calc(50% - 360px);
    top: 40%;
    opacity: 0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 1s;
}
.custom-carousel{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    transition: all 0.5s;
}
.custom-slide{
    width: 200px;
    margin-right: 40px;
    transition: all 0.5s;
    opacity: 100%;
    margin-left: 40px;
}
.custom-active{
    scale: 1.4;
    opacity: 100%;
}
.navegador{
    position: absolute;
    width: 50%;
    left: 25%;
    top: calc(40% + 250px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 1s;
    
}
.navegador span{
    letter-spacing: normal;
    font-family: "texto", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

.active-menu{
    background-color: rgb(30 30 30);
}
.flechas{
    position: absolute;
    width: 85%;
    left: 7.5%;
    top: 50%;
    transition: all 1s;
    opacity: 0;
    
}
.flechas div{
    width: 110px;
    height: 110px;
    cursor: pointer;
    transition: all 0.2s;
}

.flechas div:hover{
    background-image: url(imagenes/Logos/Flecha.png);
}
.next{
    position: absolute;
    right: 0;
    background-image: url(imagenes/Logos/flecha2.png);
    background-size: cover;
    
}
.back{
    position: absolute;
    left: 2%;
    background-image: url(imagenes/Logos/flecha2.png);
    background-size: cover;
    transform: rotate(180deg);
}



/*Inicia la sesión de contacto*/
#contacto{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgb(30 30 30);
    font-family: 'texto', sans-serif;
}
.cont{
    position: absolute;
    width: 40%;
    left: 5%;
    opacity: 0;
    transition: all 1s;
    top: 35%;
    font-family: 'Swiss CN BT', sans-serif;
}
.cont h2{
    color: white;
    font-size: 3rem;
    font-family: 'menunavegacionhover', sans-serif;
}
.cont ul{
    list-style: none;
    color: white;
    padding: 0;
    font-family: 'texto', sans-serif;
    font-size: 1.3rem;
}

.form-box {
    max-width: 300px;
    background: #f1f7fe;
    overflow: hidden;
    border-radius: 16px;
    color: #010101;
    position: absolute;
    right: 5%;
    top: 15%;
    opacity: 0;
    transition: all 1s;
  }
  
  .form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px 24px;
    gap: 16px;
    text-align: center;
  }
  
  /*Form text*/
  .title {
    font-weight: bold;
    font-size: 1.6rem;
  }
  
  .subtitle {
    font-size: 1rem;
    color: #666;
  }
  
  /*Inputs box*/
  .form-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    margin: 1rem 0 .5rem;
    width: 100%;
  }
  
  .input{
    background: none;
    border: 0;
    outline: 0;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    padding: 8px 15px;
  }
  textarea{
    background: none;
    border: 0;
    outline: 0;
    height: 60px;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    padding: 8px 15px;
  }
  
  .form-section {
    padding: 16px;
    font-size: .85rem;
    background-color: #e0ecfb;
    box-shadow: rgb(0 0 0 / 8%) 0 -1px;
  }
  
  .form-section a {
    font-weight: bold;
    color: #0066ff;
    transition: color .3s ease;
  }
  
  .form-section a:hover {
    color: #005ce6;
    text-decoration: underline;
  }
  
  /*Button*/
  .form button {
    background-color: #001220;
    color: #fff;
    border: 0;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
  }
  
  .form button:hover {
    background-color: #005ce6;
  }
/*Botón fixed de whatsapp*/
.what2 {
    font-family: inherit;
    font-size: 18px;
    background: linear-gradient(to bottom, #018559 0%,#00c482 100%);
    color: white;
    padding: 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: fixed;
    bottom: 5%;
    left: -300px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    font-size: 1.5rem;
    transition: all 1s;
    cursor: pointer;
    z-index: 2;
  }
  
  .what2:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  }
  .what2:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .what2 .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 0;
    transition: all 0.3s;
  }
  
  .what2:hover .svg-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .what2:hover svg {
    transform: rotate(45deg);
  }
#boton32{
    position: fixed;
    bottom: 15%;
    background: linear-gradient(to bottom, #810185 0%,#9c0583 100%);
} 
  
/*Fin del main*/

.iconosci{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0;
}
.iconosci li{
    color: rgb(30 30 30);
    font-size: 1.5rem;
    margin-left: 10px;
    width: 50px;
    height: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}
.iconosci li:hover{
    background-color: rgb(30 30 30);
    box-shadow: inset 0 0 10px 5px rgba(0, 0, 0, 0.568);
    color: white;
}

/*Aside para bodas*/
aside{
    position: fixed;
    width: 40%;
    bottom: 0;
    height: 20vh;
    background-image: url(imagenes/bodaf.jpg);
    background-size: cover;
    background-color: #c57f43;
    z-index: 3;
    transition: all 0.5s;
    opacity: 0;
    left: -100%;
}
#uno{
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    position: absolute;
    right: 5px;
    top: 5px;
    font-weight: 700;
    text-shadow: 0.5px 0.5px 4px black;
    z-index: 3;
}
.poners3{
    height: 90%;
    position: absolute;
    bottom: 0;
    z-index: 1;
}
#boton4{
    position: absolute;
    bottom: 5%;
    right: 0%;
    opacity: 0;
    background-color: transparent;
    border-color: #c57f43;
    transition: all 0.5s;
    background-color: #c57f43;
    color: white;
    scale: 0.8;
}
#boton4::before{
    background: linear-gradient(to bottom, #A47E6B 0%,#e9bca6 100%);
    
   }
#boton4:hover{
    border-color: #A47E6B;
    color: #522f1e;
}
aside h3{
    font-size: 1.5rem;
    z-index: 2;
    position: absolute;
    top: 40%;
    color: white;
    right: 0%;
    opacity: 0;
    transition: all 0.5s;
    text-align: right;
    width: 90%;
    font-family: "texto", sans-serif;
    text-shadow: 0.5px 0.5px black;
    text-align: center;
    
}
.clap{
    font-family: "menunavegacionhover",sans-serif;
}
.weed{
    height: 80%;
    position: absolute;
    z-index: 2;
    left: 5%;
    top: 10%;
}
aside .tapa{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #c3a998c9;
}
.bda{
    cursor: pointer;
    width: 40px;
    opacity: 1;
    overflow: hidden;
    height: 40px;
    border-radius: 20px 0 0 20px;
    position: fixed;
    right: 0;
    bottom: calc(50% - 20px);
    background-color: #c57f43;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.5s;
}
.bda i{
    font-size: 1.3rem;
    color: white;

}
/*Inicio diseño para dispositivos con menor resolución a 765px de ancho*/
@media only screen and (max-width: 765px){
    .nave-bar{
        display: block;
        cursor: pointer;
    }
    .menu{
        position: fixed;
        height: 98vh;
        left: -110%;
        top: 12vh;
        width: 100%;
        overflow: hidden;
        background-color: rgb(30 30 30);
        background-size: cover;
        display: initial;
        align-items: none;
        justify-content: none;
        padding-top: 30px;
        padding-left: 20px;
        opacity: 1;
        transition: all 1s;
    }
    .menu li{
        margin-left: 0;
        margin-top: 30px;
        height: 40px;
        width: max-content;
    }
    .menu li a{
        color: white;
    }
    .menu li::before{
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        border-radius: 4px;
        scale: 0 1;
        transform-origin: right;
        transition: scale 0.25s;
    }
    .redso{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        height: 20%;
        bottom: 10%;
        position: absolute;
    }
    .redso a{
        text-decoration: none;
        color: white;
        font-size: 1.5rem;
        margin: 0 10px;
        cursor: pointer;
    }
    .redso a:hover{
        color: #c57f43;
    }

    /*Inicio del main*/
    .imagen1{
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 570px;
        object-fit: cover;
    }
    
    #Modo_de_aislamiento{
        position: absolute;
        bottom: 0;
        left: 0px;
        width: 280px;
    }
    .texto-inicial{
        left: 10%;
        width: 90%;
        position: absolute;
        top: 18%;
        color: white;
        opacity: 0;
        transition: all 1s;
    }
    .texto-inicial img{
        width: 90%;
    }
    #svgdos{
        position: absolute;
        top: 0;
        left: 0px;
        width: 350px
    }
    #svg3{
        position: absolute;
        top: 10%;
        right: 0px;
        width: auto;
        height: 80%;
        object-fit: cover;
    }
    .texto-quees{
        width: 90%;
        position: absolute;
        top: 5%;
        color: white;
        transition: all 1s;
        opacity: 0;
    }

    /*Sección de servicios*/
    #servicios{
        overflow: hidden;
    }
    .servi{
        width: 100%;
        position: absolute;
        left: 0;
        top: 5%;
        text-align: center;
        opacity: 0;
        transition: all 1s;
    }
    .servi img{
        width: 250px;
    }
    .bigcon{
        position: absolute;
        width: 80%;
        top: 40%;
        left: 0;
        opacity: 0;
        overflow: hidden;
        height: 350px;
        transition: all 1s;
        padding: 10px;
    }
    #backt{
        position: absolute;
        top: 30%;
        width: 100px;
        left: 10%;
        cursor: pointer;
        fill: white;
    }
    
    #backt2{
        position: absolute;
        right: 10%;
        bottom: 2%;
        width: 100px;
        cursor: pointer;
        fill: white;
    }
    
    .service{
        position: absolute;
        width: 700%;
        top: 10px;
        list-style: none;
        padding: 0;
        transition: all 1s;
    }
    .service li{
        float: left;
        margin-left: 30px;
        margin-right: 30px;
        position: relative;
        padding: 0;
    }
    .service li:first-child{
        margin-left: 30px;
    }
    .card {
        position: relative;
        width: calc(14.28% - 60px);
        height: 320px;
        background: rgb(30 30 30);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        font-weight: bold;
        border-radius: 15px;
        cursor: pointer;
        font-family: "bootstrap-icons";
      }
    /*Sección de galería*/
    .carousel-container {
        position: relative;
        width: 100%;
        height: 50vh;
        overflow: hidden;
    }
    .nav {
        width: 90%;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    .texto-3{
        position: absolute;
        left: 5%;
        width: 90%;
        margin: 0%;
        height: 50vh;
        top: 54vh;
        overflow: hidden;
        text-align: center;
    }
    .texto-3 p{
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }
    .texto-3 img{
        width: 60%;
    }

    /*Carousel de marcas*/
    #clientes{
        overflow: hidden;
    }
    .gran-espacio{
        position: absolute;
        width:190px;
        left: calc(50% - 95px);
        padding: 10px;
        top: 25%;
        opacity: 0;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: all 1s;
       
    }
    #tp1{
        width: 60%;
        left: 20%;
    }
    .custom-carousel{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: start;
        transition: all 0.5s;
    }
    .custom-slide{
        width: 180px;
        margin-right: 15px;
        transition: all 0.5s;
        opacity: 100%;
        margin-left: 15px;
    }
    .custom-active{
        scale: 1.4;
        opacity: 100%;
    }
    .navegador{
        position: absolute;
        width: 95%;
        left: 2.5%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 1s;
    }
    .navegador span{
        letter-spacing: normal;
    }

    .active-menu{
        background-color: rgb(30 30 30);
    }
    .flechas{
        position: absolute;
        width: 100%;
        left: 0%;
        top: 50%;
        transition: all 1s;
        opacity: 0;
    }
    .flechas div{
        width: 70px;
        height: 70px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .flechas div:hover{
        background-image: url(imagenes/Logos/Flecha.png);
    }
    .next{
        position: absolute;
        right: 0;
        background-image: url(imagenes/Logos/flecha2.png);
        background-size: cover;
        
    }
    .back{
        position: absolute;
        left: 2%;
        background-image: url(imagenes/Logos/flecha2.png);
        background-size: cover;
        transform: rotate(180deg);
    }



    /*Inicia la sesión de contacto*/
    #contacto{
        position: relative;
        width: 100%;
        height: 150vh;
        background-color: rgb(30 30 30);
        font-family: 'texto', sans-serif;
    }
    .cont{
        position: absolute;
        width: 90%;
        left: 5%;
        opacity: 0;
        transition: all 1s;
        top: 10%;
        font-family: 'Swiss CN BT', sans-serif;
    }
    .cont h2{
        color: white;
        font-size: 3rem;
        font-family: 'menunavegacionhover', sans-serif;
    }
    .cont ul{
        list-style: none;
        color: white;
        padding: 0;
        font-family: 'texto', sans-serif;
        font-size: 1.3rem;
    }

    .form-box {
    max-width: 300px;
    background: #f1f7fe;
    overflow: hidden;
    border-radius: 16px;
    color: #010101;
    position: absolute;
    left: calc(50% - 150px);
    top: 40%;
    opacity: 0;
    transition: all 1s;
  }
  
  .form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px 24px;
    gap: 16px;
    text-align: center;
  }
  
  /*Form text*/
  .title {
    font-weight: bold;
    font-size: 1.6rem;
  }
  
  .subtitle {
    font-size: 1rem;
    color: #666;
  }
  
  /*Inputs box*/
  .form-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    margin: 1rem 0 .5rem;
    width: 100%;
  }
  
  .input {
    background: none;
    border: 0;
    outline: 0;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    padding: 8px 15px;
  }
  
  .form-section {
    padding: 16px;
    font-size: .85rem;
    background-color: #e0ecfb;
    box-shadow: rgb(0 0 0 / 8%) 0 -1px;
  }
  
  .form-section a {
    font-weight: bold;
    color: #0066ff;
    transition: color .3s ease;
  }
  
  .form-section a:hover {
    color: #005ce6;
    text-decoration: underline;
  }
  
  /*Button*/
  .form button {
    background-color: #001220;
    color: #fff;
    border: 0;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
  }
  
  .form button:hover {
    background-color: #005ce6;
  }

  /*Seccoón del aside*/
  aside{
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 40vh;
    background-image: url(imagenes/bodaf.jpg);
    background-size: cover;
    background-color: #c57f43;
    z-index: 3;
    transition: all 0.5s;
    opacity: 0;
    left: -100%;
  }

  #boton4{
    position: absolute;
    bottom: 5%;
    left: 0%;
    opacity: 0;
    background-color: transparent;
    border-color: #522f1e;
    transition: all 0.5s;
    background-color: #522f1e;
    color: white;
    scale: 0.7;
}
aside h3{
    font-size: 1.5rem;
    z-index: 2;
    position: absolute;
    top: 65%;
    color: white;
    right: 0%;
    opacity: 0;
    transition: all 0.5s;
    text-align: right;
    width: 90%;
    font-family: "texto", sans-serif;
    text-shadow: 0.5px 0.5px black;
    text-align: center;
    
}
.weed{
    width: 300px;
    position: absolute;
    z-index: 2;
    left: calc(50% - 150px);
    top: 5%;
}
}