@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* --primary-color: rgb(36, 18, 50); */
    /* --secondary-color: rgb(255, 102, 0); */
    --primary-color: #031E53;
    --secondary-color: #ED9D24;
    --font-size: 16px;
    --ancho-total: 1800px;
    --transiciones: 0.3s ease, color 0.3s ease;
}

html {
    scroll-behavior: smooth;
    /* font-weight: 400; */
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;

}

body {
    font-family: Arial, sans-serif;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    object-fit: cover;
    object-position: center;
}

li {
    list-style: none;
}

.btn-principal {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn-principal:hover {
    background-color: #e76f51;
}

.titulos {
    text-align: center;
    max-width: var(--ancho-total);
}

.titulos hr {
    border: 1px solid var(--primary-color);
    width: 200px;
    margin: 10px auto;
}

/* headaer info top */
.info-top-wrapper {
    background-color: var(--primary-color);

}

.info-top-container {
    width: 100%;
    height: 50px;
    /* position: fixed; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
    max-width: var(--ancho-total);
    margin: 0 auto;
}

.info-top-container a {
    color: #fff;
    text-decoration: none;
}


/* navegacion-header */

.navegacion-header {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: var(--primary-color); */
    color: #fff;
    margin: auto;
    max-width: var(--ancho-total);
}

.logo-header img {
    width: 100px;
    height: auto;
    border-radius: 999px;
}

.menu-header li {
    list-style: none;
    display: inline;
    margin: 0 15px;

}

.menu-header a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #333;
    padding-bottom: 10px;
    transition: var(--transiciones);
}

.menu-header a:hover {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.social-media-header i {
    margin: 0 6px;
    font-size: 20px;
    color: var(--primary-color);
}

/* hero */
.hero {
    position: relative;
    width: 100;
    height: 500px;
    background-image: url(/img/hero-background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #031e5391;
    /* background-color: rgba(36, 18, 50, 0.712); */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    max-width: 600px;
    width: 80%;
}

.hero-content span {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
}

.hero-content p {
    /* border: 2px dotted #fff; */
    margin: 10px 0;
}

.btn-secundario {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secundario:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* about */

/* services */
.titulo-servicios hr {

    border: 1px solid var(--secondary-color);
    width: 100%;

}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    align-items: center;
    padding: 50px 10px;
}

.servicio-box h3 {
    color: var(--primary-color);
    /* margin: 10px 0; */
}

.servicio-box {
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.224);
    width: 90%;
    max-width: 320px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px;
    position: relative;
    cursor: pointer;
}

.servicio-box:hover>p,
.servicio-box:hover>h3 {
    color: white;
}

.servicio-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    transition: width 0.3s ease;
}

.servicio-box:hover::before {
    width: 100%;
}

.servicio-box i {
    font-size: 3em;
    color: var(--secondary-color);
}

.servicio-box p {
    color: #333
}

.servicio-box hr {
    border: 1px solid var(--secondary-color);
    width: 50%;
    /* margin: 10px; */
}

.boton-servicios {
    text-align: center;
}

/* banner taxi */
.contenedor-get-taxi {
    background-image: url(/img/banner-background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 300px;
    position: relative;
    margin: 100px auto;
    max-width: var(--ancho-total);
}

.contenedor-get-taxi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.447);
}

.get-taxi-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    max-width: 600px;
    width: 80%;

}

.get-taxi-content p {
    margin: 15px 0;
}

/* contact form */
.seccion-fotos h2 {
    padding: 30px 0 0 0;
    text-align: center;
}

.seccion-fotos hr {
    border: 1px solid var(--secondary-color);
    width: 200px;
    margin: 10px auto;
}

.contenedor-contact {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: var(--ancho-total);
    margin: 0 auto;
    padding: 50px 10px;
}

.contact-info {
    border: 2px solid var(--secondary-color);
    max-width: 300px;
    padding: 16px;
    height: 350px;
    margin: 0 20px;

}

.social-media-contact {

    margin: 20px 0;
}

.social-media-contact i {
    font-size: 2em;
    margin: 0 6px;
    color: var(--primary-color);
}

.contact-form {
    width: 300px;
    height: auto;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.224);
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    border-top: none;
    color: black
}

textarea {
    resize: none;
}



/* ABOUT */
.contenedor-about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: var(--ancho-total);
    margin: 0 auto;
    padding: 50px 10px;
    /* border: 2px solid var(--secondary-color); */
    background-color: whitesmoke;
}

.contenedor-about-us hr {
    border: 1px solid var(--secondary-color);
    width: 80%;
}

.contenedor-about-us p {
    max-width: 300px;
    margin: 20px 0;
}

.about-us-image {
    margin-left: 20px;
}

.about-us-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 999px;
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.224);
}


.contendor-banner-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: var(--ancho-total);
    margin: 0 auto;
    padding: 50px 10px;
    background-color: var(--primary-color);
    color: #fff;
}

.contendor-banner-about i {
    color: var(--secondary-color);
    font-size: 1.4em;
}


/* fotos */

.contenedor-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6px;
    justify-items: center;
    align-items: center;
    padding: 50px 10px;
    max-width: var(--ancho-total);
}

.contenedor-fotos img {
    width: 200px;
    max-width: 300px;
    height: auto;
    border-radius: 9px;
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.224);
}

/* aeropuertos */

.aeropuertos-content {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 50px 10px;
    text-align: left;
}

.aeropuertos-content hr {
    border: 1px solid var(--secondary-color);
    width: 90%;
}

.aeropuertos-content i {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin: 0 6px;
}

.aeropuertos-list {
    width: 100%;
    /* width: 400px; */
}

.aeropuertos-list li {
    margin: 10px 0;
    color: var(--primary-color);
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.224);
    padding: 10px;
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* .aeropuertos-content li:hover {

    transform: scale(1.02);
} */



.btn-aeropuertos {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    width: 100px;
    margin: 0 6px;
    border-radius: 5px;
    font-size: 10px;
    transition: background-color 0.3s ease;
}

.btn-aeropuertos:hover {
    background-color: #3a106d;
    color: #fff;
    /* outline: 2px solid #fff; */
}

/* footer */
footer {
    text-align: center;
    padding: 50px 0;
    background: #333;
    color: #fff;
    margin-top: 100px;
}

.contenedor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 10px;
}

.footer-logo img {
    width: 100px;
    height: auto;
    border-radius: 999px;
}

.footer-links ul {
    list-style: none;
    align-items: center;
}

footer a {
    color: var(--secondary-color);
}

footer h3 {
    margin: 10px 0;
}

footer i {
    /* color: var(--secondary-color); */
    font-size: 1.5em;
    margin: 0 6px;
}

.copyright {
    padding-top: 50px;
    font-size: 0.8em;
    color: #fff;
}


/* burger */
.btn-burger {
    padding: 10px;
    border: none;
    background-color: transparent;
    color: #fff;
    display: none;
}

.btn-burger div {
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}



.contenedor-burger-menu {
    text-align: center;
    position: fixed;
    top: 0;
    left: -700px;
    width: 40%;
    height: 100vh;
    background-color: whitesmoke;
    z-index: 10;
    display: none;
    padding: 20px;
    transition: var(--transiciones);
}

.logo-burger img {
    width: 100px;
    height: auto;
    border-radius: 999px;
    margin: 20px auto;
}

.menu-burger-list li {
    margin: 20px;
    color: var(--primary-color)
}

.menu-burger-list a {
    color: var(--primary-color);
}


/* js */

.menu-open {
    transform: translateX(700px);
}

/* media queries */
@media (max-width: 507px) {

    /* burger */
    .contenedor-burger-menu {
        display: block;
    }

    /* info top */
    .info-top-container {
        display: none;
    }

    /* navegacion */
    .navegacion-header {
        justify-content: space-around;
    }

    .menu-header,
    .social-media-header {
        display: none;
    }

    .btn-burger {
        display: block;
    }

    /* contact */
    .contact-content {
        margin: 25px 0;
    }

    /* about */
    .about-us-image {
        margin: 50px auto;
    }

    .banner-about-box {
        margin: 20px 0;
    }

    /* footer */
    .contenedor-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        margin: 20px 0;
    }
}