/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Encabezado con imagen */
header {
    position: relative;
    text-align: center;
    color: white;
}

.header-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(70%);
}
.logo {
    height: auto;
    width: 150px;
    margin-top: 12px;
    float: left;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

a:hover .logo {
    transform: scale(1.1);
}


header h1{
position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    width: 100%;
        font-weight: bold;
    text-shadow: 0px -4px 10px rgba(0, 0, 0, 0.5); /* Sombra en la parte superior */
}

header p{
position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    font-family: system-ui;
    width: 100%;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra más suave */
}


#datetime {
position: absolute;
    z-index: 999;
    top: 10px;
    right: 1%;
    /* width: 32%; */
    float: right;
    /* transform: translateX(-50%); */
    font-size: 14px;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 5px;
}


/* Menú de navegación */
nav {
    background-color: #0000004f;
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    position: relative;
    z-index: 99999;
    float: left;
    width: 100%;
    margin-top: -48px;
    font-family: sans-serif;
}

.header_1 {
background-color: #0000004f;
    /* padding: 10px; */
    text-align: center;
    /* transition: background-color 0.3s ease-in-out; */
    position: absolute;
    z-index: 111111111;
    /* float: left; */
    float: left;
    height: 53px;
    width: 100%;
    top: 0px;
    font-family: sans-serif;
}

.header_1_container{
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}

nav:hover {
    background-color: #000000be;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Línea de animación debajo de cada enlace */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #ffcc00;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

/* Estilo para el enlace activo */
nav ul li a.active {
    font-weight: bold;
    color: #ffcc00; /* Color resaltado */
    border-bottom: 3px solid #ffcc00; /* Línea debajo del enlace activo */
}


/* Menu rápido */

.quick-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    background-color: #7072735c;
    padding: 10px;
}

.quick-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    background-color: #7e7f81; /* Azul brillante */
    border-radius: 5px;
    transition: 0.3s;
}

.quick-menu a:hover {
    background-color: #474849;
}



/* Estilo para el slider*/
/* Contenedor del slider */
.slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    height: 270px;

}


.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    height: 270px;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* La imagen cubre todo el espacio, pero puede recortar partes */
}

.caption {
    position: absolute;
    top: 190px;
    left: 50%;
    margin:0 auto;
    width:80%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}

/* Botones de navegación */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

button.prev:hover, button.next:hover {
    background: rgba(0, 0, 0, 0.8);
}





/* Contenedor general para secciones */
section {
    max-width: 1000px; /* Limitamos el ancho */
    margin: auto; /* Centramos la sección */
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Sección de servicios */
#services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.service p {
    min-height: 50px; /* Mantiene todos los textos alineados */
    max-height: 60px; /* Evita que se expandan demasiado */
    overflow: hidden; /* Si el texto es largo, evita que desborde */
}

.service {
    max-width: 446px;
    width: 300px;
    background: white;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye el contenido uniformemente */
    height: 400px; /* Igualamos la altura de todas las tarjetas */
}



.service:hover {
    transform: scale(1.05);
}

.service img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    filter: brightness(1.0) contrast(1.1) saturate(0.0); /* Ajusta el color y el contraste */
}


.image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 182, 0.3); /* Tono azul semitransparente */
}


#services_1 {
    background: url('../img/flights.jpg') no-repeat center center;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.90);
    background-blend-mode: overlay;
    min-height: 350px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 20px; 
    max-width: 1000px;
    margin: 50px auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#services_2 {
    background: url('../img/transfer.jpg') no-repeat center center;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.90);
    background-blend-mode: overlay;
    min-height: 350px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 20px; 
    max-width: 1000px;
    margin: 50px auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}



#services_3 {
    background: url('../img/parking.jpg') no-repeat center center;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.90);
    background-blend-mode: overlay;
    min-height: 350px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 20px; 
    max-width: 1000px;
    margin: 50px auto;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        
}


/* Ajuste del texto en los servicios */
#services_1 ul, #services_2 ul, #services_3 ul {
    list-style: none; /* Eliminamos los puntos de la lista */
    padding-left: 0; /* Eliminamos cualquier sangría por defecto */
}

#services_1 ul li, #services_2 ul li, #services_3 ul li {
    text-align: left; /* Alineamos todo el contenido a la izquierda */
    font-size: 20px; /* Aumentamos el tamaño del texto */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    color: #222;
    margin-bottom: 10px; /* Añadimos espacio entre cada línea */
    align-items: center; /* Asegura que los elementos estén alineados */
}

/* Icono personalizado antes de cada línea */
#services_1 ul li::before, #services_2 ul li::before, #services_3 ul li::before {
    content: ""; /* Icono tipo diamante */
    color: #0077b6;
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px; /* Espacio entre icono y texto */
}




#services_1 h3, #services_2 h3, #services_3 h3 {
    font-size: 24px;
    color: #0077b6;
    margin-bottom: 15px;
    border-bottom: 2px solid #0077b6;
    padding-bottom: 5px;
}

.service-category {
    background: #ffffffb5;
    width:100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.service-category ul {
    list-style: none;
    padding: 0;
}


.service-category li {
    margin-bottom: 15px; /* Espacio entre cada servicio */
}

.service-category li::before {
    content: "";
    color: #0077b6;
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.service-category li strong {
    display: block; /* Separa el título en negrita */
    font-size: 20px;
    margin-bottom: 5px; /* Espacio entre título y contenido */
}

.service-category li span {
    display: block;
    font-size: 16px;
    color: #5d5d5dd1;
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 33px;
}


/* service-category-process-pay  */


.service-category-process-pay {
    width:100%;
    padding: 15px;
    margin: 10px 0;
}

.service-category-process-pay ul {
    list-style: none;
    padding: 0;
}


.service-category-process-pay li {
    list-style: none;
    margin-bottom: 15px; /* Espacio entre cada servicio */
}

.service-category-process-pay li::before {
    content: "";
    color: #0077b6;
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.service-category-process-pay li strong {
    display: block; /* Separa el título en negrita */
    font-size: 20px;
    margin-bottom: 5px; /* Espacio entre título y contenido */
}

.service-category-process-pay li span {
    display: block;
    font-size: 16px;
    color: #5d5d5dd1;
    font-family: sans-serif;
    margin-top: 10px;
    margin-left: 33px;
}

.service-link {
    text-decoration: none; /* Quita el subrayado de los enlaces */
    color: inherit; /* Mantiene el color del texto */
    display: block; /* Hace que el enlace abarque toda la caja */
    justify-items: center;
}

.service-link:hover .service {
    transform: scale(1.05); /* Efecto de agrandamiento al pasar el mouse */
}


.read-more {
    bottom: 10px;
    right: 10px;
    background-color: #7e7f81;
    padding: 8px 12px;
    color: #fff;
    border-radius: 5px;
}

.read-more a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.read-more:hover {
    background-color: #474849;
}


#welcome{
    width:100%;
}

#welcome img{
    height: 60px;
    width: 60px;
    float: left;
    margin-top: -10px;
    border-radius: 50%;
}
/* Contenedor general del contacto */
#contact-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Formulario */
#contact-form {
    flex: 2;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#contact-form label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom:20px;
}

#contact-form button {
    background: #0077b6;
    color: white;
    padding: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

#contact-form button:hover {
    background: #005f8a;
}

/* Sidebar con información */
#contact-info {
    padding: 20px;
    background: #f8f9fa; /* Fondo claro */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Sombra suave */
    text-align: left; /* Alineación del contenido */
}

#contact-info h3 {
    font-size: 22px;
    color: #0077b6;
    text-align: center;
    margin-bottom: 15px;
}

#contact-info p {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #333;
}

#contact-info p i {
    margin-right: 10px;
    font-size: 18px;
    color: #0077b6;
}

.message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}
.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.social-share {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-share a {
    font-size: 24px;
    color: #004080;
    text-decoration: none;
    transition: 0.3s;
}

.social-share a:hover {
    color: #0080ff;
}


.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366; /* Color oficial de WhatsApp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
}

.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.whatsapp-button:hover {
    transform: scale(1.1); /* Efecto al pasar el mouse */
}



#testimonials {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

#testimonials h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #0077b6;
}

.testimonial {
    background: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #333;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #0077b6;
}

.zvezdi{
    color: rgb(233, 186, 30);
}

.call-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #ed1579;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #c41164;
}


#call-box-info {
    padding: 20px;
    background: #f8f9fa; /* Fondo claro */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Sombra suave */
    text-align: left; /* Alineación del contenido */
    justify-items: center;
}

#call-box-info h3 {
    font-size: 22px;
    color: #0077b6;
    text-align: center;
    margin-bottom: 15px;
}

#call-box-info p {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #333;
}

#call-box-info p i {
    margin-right: 10px;
    font-size: 18px;
    color: #0077b6;
}


/* PROCESS PAY */

#process-pay{
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
    justify-items: center;
    max-width: 1000px;
    margin: 20px auto;
}
#process-pay h3 {
    font-size: 22px;
    color: #0077b6;
    text-align: center;
    margin-bottom: 15px;
}
#process-pay p {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #333;
}

#process-pay p i {
    margin-right: 10px;
    font-size: 18px;
    color: #0077b6;
}

#process-pay h3 {
    font-size: 24px;
    color: #0077b6;
    margin-bottom: 15px;
    border-bottom: 2px solid #0077b6;
    padding-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    background-color: #7072735c;
    padding: 10px;
    flex-direction: column;
}
    #services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 90%;
    }

    #contact-container {
        flex-direction: column;
    }

    #contact-form,
    #contact-info {
        width: 100%;
    }
    
    #services_1 ul li, #services_2 ul li, #services_3 ul li {
    font-size: 16px; /* Aumentamos el tamaño del texto */
}
#datetime{
    background: rgb(0 0 0 / 0%);
    font-size:10px;
}
}




/* Pie de página */
/* Estilos del footer */
footer {
    background: url('../img/header.jpg') no-repeat center center;
    background-size: cover; /* Para que la imagen cubra todo el espacio */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.5); /* Línea difuminada en la parte superior */    
}

footer p{
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra más suave */
}

.footer-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.footer-container p {
    margin: 5px 0;
}

/* Iconos sociales */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-payment {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
    text-shadow: 3px 3px 4px rgb(0, 0, 0); /* Sombra oscura difuminada */
    
}

.footer-payment i {
    margin: 5px;
    font-size: 24px;
}
