@import "compass/css3";

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0000;
}

h5 {
    font-size: 14px !important;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
}
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    width: 100%; /* Ancho del encabezado al 100% */
    position: relative; /* Fijar el encabezado en la parte superior */
    top: 0; /* Desde la parte superior */
    left: 0; /* Desde la izquierda */
    z-index: 10000;
}

.black {
    color: #000;
}

.green {
    color: #8ab92d;
}

.white {
    color: #fff;
}

.blue {
    color: #12375e;
}

.gray {
    color: dimgray;
}

.menu-toggle {
    display: none; /* Oculta el icono de hamburguesa en pantallas más grandes */
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle i {
    font-size: 34px;
    color: #ffff;
}

.hero {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.video {
    width: 100%;
    height: 20vh !important; /* Ajuste de altura al 70% de la pantalla */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.box-circle {
    display: flex;
    justify-content: left;
    z-index: 100;
    bottom: -400px;
}
.box-botom {
    display: flexbox;
    justify-content: center;
    bottom: -200px;
    height: 100px;
    z-index: 200;
}

.features-btn {
    margin-top: 1rem;
    background-color: #f9f9f9;
    width: 50%;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 1rem;
}

.btn-primary {
    background-color: #3d3d3b !important;
    border: #2b2b2a !important;
    color: #333 !important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    } /* Empieza completamente transparente */
    100% {
        opacity: 1;
    } /* Termina completamente opaco */
}

/* Aplica la animación fadeIn al elemento y espera 3 segundos antes de iniciarla */
#elemento3 {
    opacity: 0; /* Inicia completamente transparente */
    animation: fadeIn 1s ease-in-out 5s forwards; /* Inicia después de 3 segundos y se mantiene visible */
}

.box-hero-elements {
    position: absolute;
    display: flex;
    flex-direction: row;
    display: flex;
    align-items: center;
    align-content: center;
}

#textDescription-container {
    position: relative;
    overflow: hidden;
}

#textDescription {
    font-size: 70px;
    color: white;
    display: flex;
    background-color: #0056b3;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-out;
}

.show {
    opacity: 1;
}

.overlay-circulo h4 {
    font-size: 2em;
    color: #fff;
    margin-top: 10px;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.content {
    background-color: #f3f3f3;
    color: #333;
}

.box-info-icons {
    display: flex;
    margin: auto;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #8ab92d;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-bottom: 1rem;
    border-radius: 5px;
    margin-right: 0.5rem;
}

.icon-box:hover {
    background-color: rgb(23, 153, 116);
}

.icon-box-white {
    width: 51px;
    height: 50px;
    background-color: #fff;
    color: #8ab92d;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-bottom: 1rem;
    border-radius: 5px;
    margin-right: 0.5rem;
    font-size: 30px;
}

.icon-box i {
    color: #fff;
    font-size: 2rem;
}

.parrafo {
    text-align: justify;
}

.btn-info {
    background-color: #8ab92d !important;
}
nav {
    float: none;
    text-align: right;
    width: 90%;
    z-index: 1100;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

nav ul li {
    display: inline;
    margin-left: 20px; /* Ajusta el espacio entre elementos del menú */
    position: relative; /* Permite posicionar el elemento de resaltado */
    z-index: 1100;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    position: relative; /* Permite posicionar el elemento de resaltado */
    z-index: 1100;
}

nav ul li a:hover:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: yellow;
    transition: width 0.3s ease; /* Transición suave para el cambio de tamaño de la línea */
}

main {
    padding: 20px;
}

.contenedor-fijo {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #f3f3f3;
    overflow: hidden;
    margin-bottom: 2rem;
}

.contenido-desplazable {
    position: absolute;
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease;
    background-color: #333;
    overflow: hidden;
}

.contenedor-text {
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #f3f3f3;
}

.contenedor-fijo:hover > .contenido-desplazable {
    transform: translateX(-100%);
    overflow: hidden;
}

.img-caracteristicas {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 300px;
}

.texto-caracteristicas {
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}
.texto-caracteristicas-int {
    color: #000;
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.box-elements {
    display: flex;
    background-color: #f3f3f3;
    align-items: baseline; /* Centramos verticalmente los elementos */
    justify-content: center; /* Centramos horizontalmente los elementos */
    padding-top: 2rem;
}

.box-abastos:hover {
    background-color: #7f868847;
}

.box:hover {
    background-color: #7f868847;
}
.i-color {
    color: #fff;
    padding-right: 0.5rem;
}

.t-caraca {
    display: flex; /* Utilizamos flexbox */
    align-items: baseline; /* Centramos verticalmente los elementos */
    justify-content: center; /* Centramos horizontalmente los elementos */
    font-size: 24px;
    padding-top: 1rem;
}

.imagen-con-transparencia {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("images/contratacion.png");
    background-size: cover; /* ajustar el tamaño de la imagen para cubrir completamente el contenedor */
    background-position: center;
}

.imagen-con-transparencia1 {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("images/gastos.png");
    background-size: cover; /* ajustar el tamaño de la imagen para cubrir completamente el contenedor */
    background-position: center;
}

.imagen-con-transparencia1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color de fondo con transparencia */
    z-index: 1000;
}

.imagen-con-transparencia2 {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("images/logo_portobelo.png");
    background-size: cover; /* ajustar el tamaño de la imagen para cubrir completamente el contenedor */
    background-position: center;
}

.imagen-con-transparencia2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        251,
        251,
        251,
        0.538
    ); /* Color de fondo con transparencia */
    z-index: 1000;
}

.imagen-con-transparencia3 {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("images/inventario.png");
    background-size: cover; /* ajustar el tamaño de la imagen para cubrir completamente el contenedor */
    background-position: center;
}

.imagen-con-transparencia3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color de fondo con transparencia */
    z-index: 1000;
}

.imagen-con-transparencia4 {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("images/nomina.png");
    background-size: cover; /* ajustar el tamaño de la imagen para cubrir completamente el contenedor */
    background-position: center;
}

.imagen-con-transparencia4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color de fondo con transparencia */
    z-index: 1000;
}

.imagen-con-transparencia::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color de fondo con transparencia */
    z-index: 1000;
}

.img-caracteristicas {
    display: block;
    width: 100%;
    height: auto;
}

.caracteristicas-portada {
    padding: 2rem;
}

.texto-portada {
    padding-left: 2rem;
    padding-right: 2rem;
}
.img-portada {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 700px;
    background-image: url("images/portada2.jpg");
    background-size: cover; /* ajustar el tamaño de la imagen para cubrir completamente el contenedor */
    background-position: center;
}

.img-nosotros {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 800px;
    background-image: url("images/nosotros1.jpeg");
    background-size: cover; /* ajustar el tamaño de la imagen para cubrir completamente el contenedor */
    background-position: center;
}

.modulos {
    background-color: #515151;
    width: 100%;
    height: 500px;
}

.modulos-titulo {
    font-size: xx-large;
    color: #000;
    text-align: center;
}

.modulos-icon-desc {
    display: flex;
    justify-content: left;
    align-items: center;
    align-self: center;
    color: #000;
    padding-left: 4rem;
}

.full-width {
    width: 100%;
}

.contador {
    position: relative;
    overflow: hidden;
    text-align: center; /* Para centrar el contenido */
    height: 20rem;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-image: url("images/hoteles/Dali/401887734.jpg");
    background-color: rgba(6, 5, 5, 0.7);
}

.box-e-contador {
    display: column;
    align-items: center;
    align-content: center;
    justify-content: center !important;
    z-index: 100;
    background-color: rgba(6, 5, 5, 0.5);
    padding: 2rem;
    width: 100%;
    height: 100%;
}
.counter {
    color: #ffff;
    z-index: 1;
    margin: 0;
    font-size: 200px;
}

.años-experiencia-text {
    color: #ffff;
}

.image-overlay {
    height: 500px;
}

.image-overlay img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: bottom;
}

.image-overlay h2 {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #12375e;
    z-index: 1;
    margin: 0;
}

.image-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Color negro con transparencia */
    z-index: 4;
}

.contacto {
    position: relative;
    background-image: url("images/contacto.png");
    background-size: cover;
    background-position: center;
    height: 500px; /* Ajusta la altura según sea necesario */
}

.overlay:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Negro con una opacidad del 30% */
}

.contact-section {
    background-image: url("images/contacto.png");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff; /* Color del texto sobre la imagen */
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(81, 69, 69, 0.7);
    border-radius: 5px;
    box-sizing: border-box;
    background-color: rgba(
        81,
        69,
        69,
        0.7
    ); /* Fondo semi-transparente para hacer el texto más legible */
    color: #fff; /* Color del texto en los campos de entrada */
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    background-color: #4b7b07;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #7fc430;
}

.call-to-action {
    background-color: #12375e; /* Color de fondo */
    color: #fff; /* Color del texto */
    padding: 50px 0; /* Espaciado interno */
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background-color: #000;
    color: #72a403;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

.display {
    font-size: 60px;
    font-family: "Raleway", sans-serif;
}

.hero-nosotros {
    background-image: url("images/nosotros.jpeg");
    background-size: cover;
    background-position: center;
    height: 300px; /* Puedes ajustar la altura según tus necesidades */
    color: #ffffff; /* Color del texto sobre la imagen */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-nosotros:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* Color de superposición semi-transparente */
    z-index: 1; /* Asegura que la superposición esté detrás del texto */
}

.hero-nosotros h1 {
    font-size: 3em;
    margin-bottom: 10px;
    z-index: 4;
}

.hero-nosotros p {
    padding-top: 20px;
    font-size: 50px;
    margin-bottom: 20px;
    z-index: 4;
}

#animated-paragraph {
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    animation: moveAcrossScreen 15s linear infinite;
    white-space: nowrap; /* Evita que el texto se rompa */
    font-size: 50px; /* Tamaño de fuente de ejemplo */
}

@keyframes moveAcrossScreen {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(
            calc(100vw + 100%)
        ); /* Utiliza la anchura de la pantalla */
    }
}

#animated-paragraph {
    position: absolute;
    top: 10%;
    left: 0;
    transform: translateX(-100%);
    animation: moveAcrossScreen 13s linear infinite;
    white-space: nowrap; /* Evita que el texto se rompa */
    font-size: 50px; /* Tamaño de fuente de ejemplo */
}

#animated-paragraph-reverse {
    position: absolute;
    top: 40%;
    right: 0; /* Cambia la dirección del movimiento */
    transform: translateX(100%);
    animation: moveAcrossScreenReverse 13s linear infinite;
    white-space: nowrap; /* Evita que el texto se rompa */
    font-size: 50px; /* Tamaño de fuente de ejemplo */
}

@keyframes moveAcrossScreen {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(
            calc(100vw + 100%)
        ); /* Utiliza la anchura de la pantalla */
    }
}

@keyframes moveAcrossScreenReverse {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(
            calc(-100vw - 100%)
        ); /* Utiliza la anchura de la pantalla */
    }
}

.subheading {
    color: #679805;
}
.p-contenido {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    background-size: cover;
    text-align: match-parent;
}

.services .icon span {
    font-size: 60px;
    color: #8ab92d;
}

.icon-nosotros {
    display: flex;
    align-items: center;
    align-self: center;
}

.counter-wrap {
    background-color: #72a403;
    color: #fff;
    width: 16rem;
}

.number {
    font-weight: 400;
    color: #fff;
    font-size: 50px;
    font-weight: 400;
}

.experiencia-box {
    padding: 5px;
    padding-left: 20px;
    padding-bottom: 20px;
}

.hero-nosotros-call {
    background-color: #4b7b07;
    background-size: cover;
    background-position: center;
    height: 200px;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.confirmButtonText {
    background-color: #4b7b07;
}

.swal-confirm-button {
    background-color: #4b7b07 !important;
    color: white;
}

.footer {
    background-color: #fffbfb; /* Color de fondo del footer */
    color: #000; /* Color del texto del footer */
    justify-content: center;
    align-items: center; /* Centra verticalmente los elementos */
    width: 100%;
    z-index: 1100;
    position: relative;
    bottom: 0;
    width: 100%;
    padding-top: 5rem;
    margin: auto;
}

.footer-menu {
    display: column;
    justify-content: flex-start;
    text-align: left;
}

.footer-menu ul {
    list-style: none; /* Quita los estilos de la lista */
    padding: 0; /* Quita el espaciado interno de la lista */
    margin: 0; /* Quita el margen de la lista */
}

.footer-menu ul li {
    display: column; /* Muestra los elementos de la lista en línea */
    margin-right: 20px; /* Espaciado entre los elementos del menú */
}

.footer-menu ul li:last-child {
    margin-right: 0; /* Quita el margen derecho del último elemento del menú */
}

.footer-menu ul li a {
    color: #fff; /* Color del texto del enlace */
    text-decoration: none; /* Quita la decoración del enlace */
}

.footer-logo {
    filter: invert(100%);
    width: 300px;
    height: auto;
}
.linea-vertical {
    border-left: 2px solid dimgray; /* Ancho, tipo y color del borde */
    height: 213px; /* Altura de la línea */
}

.linea-vertical::before {
    content: ""; /* Contenido del pseudo-elemento */
    display: block; /* Convierte el pseudo-elemento en un bloque */
    border-left: 1px solid #f3efef; /* Ancho, tipo y color del borde */
    height: 100px; /* Altura de la línea */
    margin-right: 1px;
}
.e-footer {
    display: flex;
    align-items: center;
}
.footer-menu-d {
    font-family: "Dosis", sans-serif;
    font-size: 17px;
}

.i-footer {
    font-size: 30px;
    padding-right: 15px;
}

.date {
    display: flex;
    vertical-align: top;
    text-align: left;
    font-family: "Dosis", sans-serif;
    color: #ffffff;
}

.d-flex {
    display: flex;
    flex-direction: row;
    align-items: start;
}

.box-e-footer {
    display: flex;
    align-items: start;
    align-content: center;
    justify-content: center;
    margin: auto;
    padding-top: 2rem;
}

.site-map {
    color: #797373;
    text-decoration: none;
}

.site-map:hover {
    color: #070e79;
}

@media (max-width: 768px) {
    nav {
        display: none; /* Oculta el menú por defecto en dispositivos móviles */
    }

    nav.active {
        display: block; /* Muestra el menú cuando tiene la clase 'active' */
        z-index: 1000;
    }

    nav.active {
        display: block;
        text-align: left;
        width: 100%;
        z-index: 1100;
    }

    .menu-toggle {
        display: block !important; /* Muestra el icono de hamburguesa en dispositivos móviles */
    }

    nav ul li {
        display: block !important;
        margin-left: 5px;
        margin-top: 5px;

        position: relative;
        z-index: 1100;
    }
}

@media screen and (max-width: 768px) {
    .header {
        height: 5rem;
    }
    .hero {
        height: 31vh; /* Cambia el alto de la imagen en pantallas pequeñas */
    }

    .hero-nosotros {
        background-image: url("images/nosotros.jpeg");
        background-size: cover;
        background-position: center;
        height: 300px;
        color: #ffffff;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .overlay-circulo {
        position: absolute;
        top: 107px; /* Posición inicial por encima de la pantalla */
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 200px;
        background-color: rgba(25, 25, 24, 0.698);
        -webkit-border-radius: 40px;
        -moz-border-radius: 50%;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        animation: bounceAnimation 2s ease forwards infinite;
    }

    .display {
        font-size: 30px;
        font-family: "Raleway", sans-serif;
    }
}

@media (max-width: 768px) {
    /* Deshabilitar la animación para dispositivos pequeños */
    .overlay-circulo {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Estilo del texto descriptivo */
    .mobile-text {
        text-align: center; /* Alinea el texto al centro */
        top: -30vh;
        background-color: black;
    }

    .mobile-text::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(
            0,
            0,
            0,
            0.3
        ); /* Color de fondo con transparencia */
        z-index: 1;
    }

    .imagen-portada {
        display: flex;
        justify-content: center; /* Alinea horizontalmente al centro */
        align-items: center; /* Alinea verticalmente al centro */
        text-align: center; /* Alinea el texto al centro horizontal */
        line-height: 100px; /* Alinea el texto al centro vertical */
    }

    .portobello-nosotros {
        max-width: 95%;
        overflow: hidden;
        align-items: center;
        margin: auto;
    }

    .conoce-comensal {
        display: block;
        align-items: start;
        align-self: flex-start;
        height: 20vh;
        margin-top: -193px;
        z-index: 100;
        color: #fff;
        background-color: rgba(6, 5, 5, 0.9);
        z-index: 100;
    }

    .conoce-text {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .logo {
        width: 100px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        padding: 5px;
    }

    .counter {
        font-size: 120px;
    }
}

/* Estilos para dispositivos no móviles */
@media (min-width: 769px) {
    /* Oculta el texto descriptivo en dispositivos no móviles */
    .mobile-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .img-portada {
        height: 550px !important;
    }
}

@media (max-width: 768px) {
    .image-overlay img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: bottom;
    }
    .image-overlay::after {
        display: none;
    }

    .image-overlay h2 {
        font-size: 24px; /* Reduce el tamaño de la fuente para dispositivos móviles */
        margin-top: 20px; /* Ajusta el espaciado superior del título */
        color: black ma;
    }

    .modulos-icon-desc {
        padding-left: 1rem;
    }
    .años-experiencia-text {
        display: none;
    }
}

@media (max-width: 1024px) {
    .contador {
        margin: 0 auto; /* Centra el contenedor en la pantalla */
    }

    .image-overlay img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: bottom;
    }

    .image-overlay p {
        font-size: 16px; /* Tamaño del texto para tablets */
        margin-bottom: 20px; /* Espaciado inferior del texto */
    }
}

.snip1325 {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 255px;
    height: 220px;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.snip1325 img {
    height: 100%;
    position: absolute;
    right: 0;
    -webkit-transition: all 2s ease-out;
    transition: all 2s ease-out;
}
.snip1325:hover img,
.snip1325.hover img {
    -webkit-transform: translateX(130px);
    transform: translateX(130px);
}
/* Demo purposes only */

.recepcion {
    position: relative;
    top: 12rem;
    z-index: 100;
    width: 400px;
    left: 10rem;
    transform: scale(var(--escala, 1));
}

.portobello-nosotros {
}

.i-features {
    margin-top: 9rem;
}

.zoom {
    transition: 1.5s ease;
    -moz-transition: 1.5s ease; /* Firefox */
    -webkit-transition: 1.5s ease; /* Chrome - Safari */
    -o-transition: 1.5s ease; /* Opera */
}
.zoom:hover {
    transform: scale(1.2);
    -moz-transform: scale(1.2); /* Firefox */
    -webkit-transform: scale(1.2); /* Chrome - Safari */
    -o-transform: scale(1.2); /* Opera */
    -ms-transform: scale(1.2); /* IE9 */
}

.hotel-img,
.img,
.blog-img,
.about-img,
.user-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.modal {
    display: none; /* Por defecto, la modal está oculta */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: 5% auto;
    padding: 20px;
    width: 80%;
}

.modal-content img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Ajusta la altura según sea necesario */
}

.box {
    width: 220px;
    height: 220px;
    margin: 10px; /* Espacio entre las cajas */
    display: flex;

    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.center {
    max-width: 100%; /* Asegura que la imagen no exceda el tamaño del div */
    max-height: 100%;
    display: flex;
    align-items: center;
    align-content: center;

    margin: auto;
}

.box img {
    max-width: 72%;
    max-height: 80%;
    align-content: center;
    align-items: center;
    display: flex;
}

.box-abastos {
    width: 300px; /* Ancho de la caja */
    height: 300px; /* Altura de la caja */
    margin: 10px; /* Espacio entre las cajas */
    display: flex;

    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    align-content: center;
    align-items: center;
    display: flex;
}

.btn-primary {
    display: inline-block !important;
    text-align: center;
    vertical-align: middle;
    padding: 14px 53px;
    width: 100%;
    border: 0px solid #f2f2f2;
    border-radius: 0px !important;
    background: #494467;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#494467),
        to(#1a1825)
    );
    background: -moz-linear-gradient(top, #494467, #1a1825);
    background: linear-gradient(to bottom, #494467, #1a1825);
    color: #fff !important;
    font-size: 14px !important;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    bottom: 0px;
}
.btn-primary {
    background: #58527c;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#58527c),
        to(#1f1d2c)
    );
    background: -moz-linear-gradient(top, #58527c, #1f1d2c);
    background: linear-gradient(to bottom, #58527c, #1f1d2c);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}
.button:active {
    background: #1a1825;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#1a1825),
        to(#1a1825)
    );
    background: -moz-linear-gradient(top, #1a1825, #1a1825);
    background: linear-gradient(to bottom, #1a1825, #1a1825);
    text-transform: uppercase;
}
.button:focus {
    text-transform: uppercase;
}

.button {
    display: flex;
    text-align: center;
    vertical-align: middle;
    padding: 8px 85px;
    border: 0px solid #f2f2f2;
    border-radius: 0px;
    background: #494467;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#494467),
        to(#1a1825)
    );
    background: -moz-linear-gradient(top, #494467, #1a1825);
    background: linear-gradient(to bottom, #494467, #1a1825);

    font: normal arial;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    bottom: 0px;
}
.button:hover {
    background: #58527c;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#58527c),
        to(#1f1d2c)
    );
    background: -moz-linear-gradient(top, #58527c, #1f1d2c);
    background: linear-gradient(to bottom, #58527c, #1f1d2c);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}
.button:active {
    background: #1a1825;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#1a1825),
        to(#1a1825)
    );
    background: -moz-linear-gradient(top, #1a1825, #1a1825);
    background: linear-gradient(to bottom, #1a1825, #1a1825);
    text-transform: uppercase;
}
.button:focus {
    text-transform: uppercase;
}

.card_footer {
    display: flex;
    height: 600px;
    padding: none !important;
    color: #fff !important;
    background-color: #fff !important;
    border: none !important;
}

.card {
    display: flex;
    align-items: center;
    align-content: center;
}

.e-hoteles {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin-bottom: 2rem;
}

.gallery-hidden {
    width: 100%;
    overflow: hidden;
}

.footer-footer {
    background-color: #12375e;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 6rem;
}

.iadvance {
    width: 60%;
    text-align: center; /* Alinea el texto al centro horizontal */
    line-height: 100px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
}

@media only screen and (min-width: 768px) {
    .box-hero-elements {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 15vh;
        top: 15rem;
    }
    .box {
        border-radius: 50%;
    }

    .logo-box-dis {
        display: flex;
        align-items: center;
        align-content: center;
        background-color: #f8f7fb00 !important;
        height: 12rem;
    }

    .overlay-circulo {
        margin-top: 4rem;
    }

    .box-abastos {
        width: 200px !important;
        height: 252px !important;
    }
    .abastos-logo {
        height: 152px !important;
    }
    .portobello-nosotros {
        align-items: center;
        max-width: auto;
        margin-bottom: 3rem;
    }
    .recepcion {
        display: none;
    }
    .i-features {
        margin-top: 5rem !important;
    }
    .logo-box-dis {
        display: flex;
        align-items: center;
        align-content: center;
        background-color: #f8f7fb94;
        height: 12rem;
    }
    .box-hero-elements {
        display: flex;
        justify-content: center; /* Alinea horizontalmente al centro */
        align-items: center; /* Alinea verticalmente al centro */
        width: 100vw; /* Ancho completo de la ventana */
        height: 15vh; /* Altura completa de la ventana */
    }
}

@media only screen and (max-width: 767px) {
    .box {
        border-radius: 50%;
    }

    .box-image {
        max-width: 51%;
    }
    .box-abastos {
        width: 90%;
        height: 287px;
    }
    .portobello-nosotros {
        margin-top: 1rem;
        align-items: center;
        max-width: auto;
        margin-bottom: 3rem;
    }
    .recepcion {
        display: none;
    }
    .img-caracteristicas2 {
        display: flex;
        align-items: center;
        width: 100%;
        margin: auto;
    }

    .logo-box-dis {
        display: flex;
        align-items: center;
        align-content: center;
        background-color: #f8f7fb94;
        height: 12rem;
    }
    .box-hero-elements {
        display: flex;
        justify-content: center; /* Alinea horizontalmente al centro */
        align-items: center; /* Alinea verticalmente al centro */
        width: 100vw; /* Ancho completo de la ventana */
        height: 15vh; /* Altura completa de la ventana */
        top: 8rem;
    }

    .features {
        margin-top: 6rem;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait),
    only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    /* Estilos para el iPad */

    .portada-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .centrado {
        display: flex;
        justify-content: center; /* Alinea horizontalmente al centro */
        align-items: center; /* Alinea verticalmente al centro */
    }
    .portobello-nosotros {
        width: 80%;
        height: auto;
        background-color: lightblue;
        text-align: center; /* Alinea el texto al centro horizontal */
        line-height: 100px; /* Alinea el texto al centro vertical */
    }

    .box img {
        max-width: 65%;
        max-height: 82%;
        align-content: center;
        align-items: center;
        display: flex;
    }

    .box-abastos {
        width: 300px; /* Ancho de la caja */
        height: 300px; /* Altura de la caja */
        margin: 10px; /* Espacio entre las cajas */
        display: flex;

        justify-content: center;
        align-items: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        align-content: center;
        align-items: center;
        display: flex;
    }
}

@media only screen and (min-width: 1340px) and (max-width: 1595px) {
    /* Estilos para pantallas grandes */

    .box-abastos {
        width: 95% !important;
        height: 352px !important;
        border-radius: 50%;
    }

    .box {
        width: 230px;
        height: 230px !important;
        border-radius: 50%;
    }
}

@media screen and (min-width: 1596px) and  (max-width: 5560px) {
    /* Estilos para pantallas 4k o extra grandes */
    /* Por ejemplo: */
    body {
        font-size: 24px; /* Tamaño de fuente más grande para pantallas 4k o extra grandes */
    }

    .titulo {
        font-size: 5.5rem !important;
        margin-top: 6rem;
        margin-bottom: 6rem;
    }
    .box {
        width: 280px;
        height: 280px !important;
        border-radius: 50%;
    }
    .img-caracteristicas2 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 800px;
    }
    .contador {
        height: 51rem;
        background-image: url("images/hoteles/Dali/401887734.jpg");
        background-repeat: no-repeat;
        background-size: cover; /* Ajusta el tamaño de la imagen para cubrir completamente el contenedor */
        background-position: center; /* Centra la imagen horizontal y verticalmente */
        background-color: rgba(6, 5, 5, 0.7);
        margin: 0; /* Elimina el margen predeterminado */
        padding: 0; /* Elimina el relleno predeterminado */
    }

    .modal-xl {
        --bs-modal-width: 1361px;
    }

    .button {
        padding: 27px 117px;
        height: max-content;
        width: fit-content;
        font-size: 30px;
    }

    .snip1325 {
        position: relative;
        overflow: hidden;
        margin: 10px;
        min-width: 317px;
        height: 391px;
        width: 100%;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    }

    .site-map {
        color: #797373;
        text-decoration: none;
        font-size: 50px;
    }

    .footer-logo {
        filter: invert(100%);
        width: 65%;
        height: auto;
    }
}
