@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

* {
    font-family: "Schibsted Grotesk", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
}

header {
    width: 100%;
    height: 90px;
    box-sizing: border-box;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    color: white;
    transition: all 0.4s ease;
}
.idiomas li{
    display: flex;
    align-items: center;
    justify-content: start;
}
.idiomas li img{
    width: 20px;
    height: 20px;
    object-fit: cover;
    text-align: center;
    margin-right: 5px;
}

.logo img {
    height: 60px;
    transition: all 0.4s ease;
}

/*Estilos del menú principal*/
.navegador {
    width: auto;
    position: relative;
    height: 50%;
}

.navegador>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navegador ul>li {
    margin: 0 20px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navegador ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: all 0.4s ease;
}

/*Estilos de los submenu*/
.navegador ul li ol {
    position: absolute;
    top: 90%;
    background-color: white;
    padding: 0;
    box-sizing: border-box;
    border-radius: 5px;
    transition: all 0.4s ease;
    opacity: 0;
    scale: 0;
    transform-origin: top;
    list-style: none;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.253);
}

.navegador ul li ol li {
    padding: 7px 20px;
    position: relative;
    margin: 0;
    color: black;
    cursor: pointer;
    transition: all 0.4s ease;
}

.navegador ul li ol li:hover {
    background-color: rgba(0, 0, 0, 0.144);
}

.navegador ul>li:hover>ol {
    opacity: 1;
    scale: 1;
}

/* Estilos del carrito */
.carrito a {
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
}

.burger {
    display: none;
}



/* Estilos del cuerpo del documento */
/* Iniciamos con la primer página "inicio" */
.inicio {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    box-sizing: border-box;
    margin: 0;
    padding: 0 5%;
    overflow: hidden;
    top: 0;
}

.inicio>.fondo {
    position: absolute;
    width: 300%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    left: 0;
    margin: 0;
}

.fondo img {
    position: relative;
    width: 33.3%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 1s ease-in-out;
}

/* Este pseudoelemento before lo que hace es crear una capa que rellena toda la imagen con una opacidad */
.inicio .fondo::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.inicio div {
    position: relative;
    margin-top: 70px;
    z-index: 2;
}

.visi {
    transition: all 0.6s ease;
    opacity: 0;
    margin-left: -50px;
}

.visible .visi {
    margin-left: 0;
    opacity: 1;
}

.inicio h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin: 0;
    max-width: 60%;
    line-height: 4rem;
}

.color-verde {
    color: #dea71f;
}

.inicio p {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    max-width: 60%;
}

.botones {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: left;
}

.btn {
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn:hover>i {
    opacity: 1;
    margin-left: 5px;
    width: 20px;
}

.btn i {
    transition: all 0.4s ease;
    margin-left: -40px;
    opacity: 0;
    position: relative;
    width: 40px;
}

.btn-primary {
    background-color: #dea71f;
    color: black;
    margin-right: 10px;
    border: solid 2px #dea71f;
}

.btn-secondary {
    border: solid 2px white;
    background-color: transparent;
    color: white;
}

/*Estilos del navegador del slider*/
.inicio .slider {
    position: absolute;
    right: 5%;
    bottom: 20px;
    height: min-content;
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin-right: -50px;
    transition: all 0.6s;
    opacity: 0;
}

.visible .slider {
    opacity: 1;
    margin-right: 0;
}

.slider>.navigation {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 0;
    height: min-content;
}

.desc {
    color: white;
    margin: 0;
}

.slider>.navigation div {
    width: 6px;
    height: 6px;
    outline: solid 2px white;
    border-radius: 3px;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.slider .navigation .active {
    scale: 1.2;
    background-color: white;
}


/*Estilos de la sección servicios*/
.servicios {
    width: 100%;
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 100px 5% 40px 5%;
    text-align: center;
}

.servicio-individual {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 150px;
}

.texto-servicio {
    width: 50%;
    text-align: left;
    height: auto;
    opacity: 0;
    margin-top: -50px;
    transition: all 0.4s ease;
}

.texto-servicio .btn {
    width: max-content;
}

.visible .texto-servicio {
    opacity: 1;
    margin-top: 0;
}

.decorador {
    font-size: 0.9rem;
    color: #dea71f;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
}

.decorador .lineaa {
    position: relative;
    width: 60px;
    margin-right: 10px;
    height: 3px;
    background-color: #dea71f;
    border-radius: 0 1.5px 1.5px 0;
}



.texto-dee h3 {
    font-size: 1.5rem;
    margin-top: 0;
    text-transform: uppercase;
}

.texto-dee p {
    color: gray;
    font-size: 1.1rem;
}

.btn-blue {
    background-color: #1c3049;
    color: white;
}

.imagen-slider {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    margin-left: -50px;
}

.visible .imagen-slider {
    opacity: 1;
    margin-left: 0;
}

.imagen-slider img {
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.imagen-slider::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, black, transparent);
    bottom: 0;
    left: 0;
}

.callAction {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1;
}

.callAction>div:first-child {
    font-size: 1.3rem;
    color: white;
    transition: all 0.4s ease;
}

.callAction:hover>div:first-child {
    margin-left: 10px;
}

.callAction>div:last-child {
    transition: all 0.4s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: white;
}

.callAction:hover>div:last-child {
    background-color: white;
    color: #1C3049;
}

.individual-dos {
    flex-direction: row-reverse;
}


/*Estilos de la sección nosotros*/
.nosotros {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: white;
    text-align: center;
    box-sizing: border-box;
    padding: 70px 5%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #1c3049;

}

.nosotros h2 {
    margin-bottom: 0px;
    font-size: 2.5rem;
    transition: all 0.8s ease;
    opacity: 0;
    margin-top: -40px;
    color: white;
}

.visible h2 {
    opacity: 1;
    margin-top: 0;
}

.visible .container-texto {
    margin-top: 0;
    opacity: 1;
}

.container-texto {
    width: 70%;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    margin-top: -50px;
    opacity: 0;
    transition: all 0.6s ease;
}

.container-texto p {
    font-size: 1.1rem;
    color: rgb(180, 180, 180);
}

.container-texto>div {
    width: 80%;
    position: relative;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-texto div h3 {
    margin: 0;
    font-size: 1.8rem;
}

.tere {
    position: relative;
    margin-top: 60px;
    margin-bottom: 30px;
}

.carousel-nosotros {
    position: relative;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    overflow: hidden;
}

.carousel-nosotros ul {
    position: relative;
    list-style: none;
    width: max-content;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: transladar 8s linear infinite alternate;
}

@keyframes transladar {
    0% {
        transform: translateX(0);
    }

    0% {
        transform: translateX(-50%);
    }
}

.carousel-nosotros ul li {
    width: 300px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
}

.carousel-nosotros ul li img {
    width: 100%;
    position: relative;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.tapa:hover {
    opacity: 0;
}

.tapa {
    position: absolute;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, black, transparent);
    bottom: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 20px;
    color: white;
    font-size: 0.9.rem;
    transition: all 0.4s ease;
    opacity: 1;
    cursor: pointer;
}




/* Estilos del botón de whatsapp */
.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #3AD835;
    color: white;
    border-radius: 30px;
    right: -65px;
    bottom: 10%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.4s ease;
    cursor: pointer;
    animation: whatsappAttention 2s infinite;
}

@keyframes whatsappAttention {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(-10deg);
    }

    50% {
        transform: scale(1) rotate(10deg);
    }

    75% {
        transform: scale(1.1) rotate(-10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}


/*Sección de productos*/
.productos {
    width: 100%;
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    background-color: rgb(243, 243, 243);
    padding: 100px 5% 40px 5%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.resumen-de-cuenta {
    width: 30%;
    background-color: white;
    position: sticky;
    top: 100px;
    height: 100%;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    margin-top: 100px;
}

.resumen-de-cuenta ul {
    list-style: none;
}

.resumen-de-cuenta ul li {
    margin-bottom: 15px;
}

.resumen-de-cuenta ul li button {
    width: min-content;
    background-color: transparent;
    border: none;
    color: red;
    cursor: pointer;
    margin-left: 10px;
}

.resumen-de-cuenta p {
    color: gray;
}

.total {
    position: relative;
    width: 100%;
    padding: 20px 0;
    text-align: right;
}

.total h3 {
    margin: 0;
    font-size: 2rem;
}

.precio {
    font-weight: 600;
    color: gray;
}

.prod {
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}


.prod h2,
.visible .prod h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.6s ease;
}

.prod ul {
    list-style: none;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.prod ul li {
    background-color: white;
    /* Fondo para los elementos */
    padding: 20px;
    /* Ajusta el relleno según sea necesario */
    text-align: center;
    /* Centra el texto dentro de los elementos */
    border: 1px solid #ccc;
    min-height: 150px;
    border-radius: 10px;
}

.porcu {
    color: black;
    font-weight: 600;
    line-height: 0.8rem;
    font-size: 0.8rem;
    margin-bottom: 5px;
    border-top: dashed 1px gray;
    padding-top: 10px;
}

.input-barco {
    height: 30px;
    box-sizing: border-box;
    padding: 0 10px;
    border: solid 1px gray;
    border-radius: 5px;
    margin-bottom: 5px;
    width: 100%;
}

.prod ul li img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.btnd {
    padding: 8px 0;
    width: 100%;
    background-color: #1c3049;
    color: white;
}

.aquip {
    color: #dea71f;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
}

/*Estilo de las experiencias*/
.experiencias {
    width: 100%;
    min-height: 100vh;
    background-color: white;

    box-sizing: border-box;
    padding: calc(70px + 5%) 5% 5% 5%;
}

.experiencia-individual {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-bottom: 70px;
}

.impar {
    flex-direction: row-reverse;
}

.texto-experiencia {
    width: 50%;
}

.texto-experiencia h1 {
    font-size: 3rem;
    color: black;
    margin-top: 0;
}

.texto-experiencia p {
    color: #444444;
}

.texto-experiencia ul {
    list-style: decimal;
    padding: auto;
    color: #444444;
}

.experiencia-img {
    width: 40%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/*Estilos de contacto*/
.contacto {
    position: relative;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 70px 10% 0 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto h2 {
    font-size: 2.5rem;
    transition: all 0.6s ease;
}

.container-form {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-top: -50px;
    opacity: 0;
    transition: all 0.4s ease;
}

.visible .container-form {
    opacity: 1;
    margin-top: 0;
}

.container-form h2 {
    margin: 0;
}

.container-form p {
    color: gray;
    margin-top: 0;
    font-size: 1.1rem;
}

.container-form form {
    margin-top: 50px;
}

.container-form form input,
.container-form form textarea {
    width: 100%;
    background-color: white;
    border: solid 1px rgb(94, 93, 93);
    font-size: 1rem;
    box-sizing: border-box;
    padding: 0 10px;
    height: 40px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.container-form form input:focus,
.container-form form textarea:focus {
    outline: none;
}

/*Sección de la página de reconocimiento*/
.reconocimiento {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reconocimiento .tex {
    width: 40%;
    font-size: 3rem;
    font-weight: bold;
}

.reconocimiento img {
    border-radius: 10px;
    width: 50%;
    object-fit: cover;
}

/*Estilos del pie de página*/
.footer {
    width: 100%;
    min-height: 50vh;
    box-sizing: border-box;
    background-color: #1c3049;
    padding: 5%;
}

.infor {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.infor div strong {
    color: #dea71f;
    font-size: 1.2rem;
}

.infor>div {
    color: white;
    text-align: center;
}

.infor div p {
    margin: 10px 0;
}

.infor div p a {
    margin: 0 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.derechos {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    border-top: solid 1px gray;
    padding-top: 20px;
    color: gray;
}

.input-reserva {
    width: 100%;
    position: relative;
    margin: 10px 0;
}

.input-reserva input {
    border: solid 1px gray;
    width: 200px;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    padding: 10px 20px;
}

/*Estilos que solo se aplican a dispositivos móviles*/
@media only screen and (max-width: 765px) {
    .logo img {
        height: 40px;
        transition: all 0.4s ease;
    }

    .navegador {
        position: fixed;
        width: 100%;
        top: 70px;
        background-color: #1C3049;
        height: 0;
        left: 0;
        transition: all 0.5s;
        overflow: hidden;
    }

    .navegador ul {
        flex-direction: column;
    }

    .navegador ul>li {
        height: min-content;
        flex-direction: column;
        margin-bottom: 40px;
    }

    /*Estilos de los submenu*/
    .navegador ul li ol {
        position: relative;
        top: 10px;
        padding: 0;
        box-sizing: border-box;
        border-radius: 5px;
        transition: all 0.4s ease;
        opacity: 1;
        scale: 1;
        height: 0;
        list-style: none;
        overflow: hidden;
        margin: 0;
    }

    .navegador ul li ol li {
        padding: 10px 20px;
        position: relative;
        margin: 0;
        color: black;
        cursor: pointer;
        transition: all 0.4s ease;
    }

    .navegador ul>li:hover>ol {
        opacity: 1;
        height: 160px;
    }

    .burger {
        position: relative;
        width: 40px;
        height: 30px;
        background: transparent;
        cursor: pointer;
        display: block;
    }

    .burger input {
        display: none;
    }

    .burger span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: white;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .burger span:nth-of-type(1) {
        top: 0px;
        transform-origin: left center;
    }

    .burger span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
        transform-origin: left center;
    }

    .burger span:nth-of-type(3) {
        top: 100%;
        transform-origin: left center;
        transform: translateY(-100%);
    }

    .burger input:checked~span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 0px;
        left: 5px;
    }

    .burger input:checked~span:nth-of-type(2) {
        width: 0%;
        opacity: 0;
    }

    .burger input:checked~span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
        left: 5px;
    }

    /* Estilos de la primer seccion "inicio" */

    .inicio h1 {
        max-width: 100%;
        text-align: center;
        font-size: 3rem;
        line-height: 3rem;
    }

    .inicio p {
        max-width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }

    .botones {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .inicio>div {
        margin-top: 0;
    }

    .inicio .btn {
        min-width: 60%;
    }

    .btn-primary {
        margin-right: 0;
        margin-bottom: 10px;
    }

    /*Estilo sección servicios*/
    .servicio-individual {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .texto-servicio {
        width: 100%;
        text-align: left;
        height: auto;
        opacity: 0;
        margin-top: -50px;
        transition: all 0.4s ease;
        margin-bottom: 20px;
    }

    .imagen-slider {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        transition: all 0.4s ease;
        opacity: 0;
        margin-left: -50px;

    }

    /* Estilo de nosotros */
    .nosotros {
        position: relative;
        width: 100%;
        min-height: 100vh;
        background-color: #1c3049;
        text-align: center;
        box-sizing: border-box;
        padding: 70px 5%;
        color: black;
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: column;
    }

    .container-texto {
        width: 100%;
        position: relative;
        display: flex;
        align-items: start;
        justify-content: space-between;
        flex-direction: column;
    }

    .container-texto>div {
        width: 100%;
    }

    /*Sección de productos*/
    .productos {
        width: 100%;
        position: relative;
        min-height: 100vh;
        box-sizing: border-box;
        background-color: rgb(243, 243, 243);
        padding: 100px 5% 20px 5%;
        display: flex;
        align-items: start;
        justify-content: space-between;
        flex-direction: column-reverse;
    }

    .resumen-de-cuenta {
        width: 100%;
        top: 0;
        margin-top: 20px;
        opacity: 1;
        margin-left: 0px;
    }

    .prod {
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 0px;
        opacity: 1;
    }

    .prod ul {
        list-style: none;
        padding: 0;
        position: relative;
        left: 5%;
        width: 90%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;

    }

    /*Experiancias*/
    .experiencia-individual {
        display: flex;
        align-items: start;
        justify-content: space-between;
        width: 100%;
        height: auto;
        margin-bottom: 70px;
        flex-direction: column-reverse;
    }

    .impar {
        flex-direction: column-reverse;
    }

    .texto-experiencia {
        width: 100%;
    }

    .experiencia-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    /*Sección de la página de reconocimiento*/
    .reconocimiento {
        width: 100%;
        min-height: 100vh;
        box-sizing: border-box;
        padding: 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .reconocimiento .tex {
        width: 100%;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 0;
    }

    .reconocimiento img {
        border-radius: 10px;
        width: 100%;
        object-fit: cover;
    }

    /*Estilos del pie de página*/

    .infor {
        flex-direction: column;
    }

    .infor>div {
        color: white;
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }
}

/* El codigo en esta hoja de estilos fue elaborado por Jeison Aya, de Andromeda Crea */