/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* BODY */

body {
    background-color: white;
    color: white;
    font-family: Arial, sans-serif;
}

            /* =========================
            HEADER
            ========================= */
        /*header inactivo*/
.main-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background-color: transparent;
    transition: all 0.1s ease;
}


        /* HEADER ACTIVO */

.main-header:hover {
    background: #1d59af;
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    transform: scale(1);
}

/* =========================
   LOGO
========================= */

.logo {

    position: absolute;
    left: 100px;
    padding-top: 5px;
    color: transparent;
}

.logo img {
    width: 50px;
    height: auto;
    display: block;
    transition: transform 0.1s ease;
}

/* LOGO ACTIVO */

.main-header:hover .logo img {
    transform: scale(1.3);
}

/* HOVER LOGO */

.logo img:hover {
    transform: scale(1.05);
}


/* =========================
   MENU
========================= */

.nav-menu {
    display: flex;
    gap: 40px;
}


/* LINKS */

.nav-menu a {
    text-decoration: none;
    color: #8a8a8a;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.1s ease;
     position: relative;
}

/* LINK ACTIVO */

.main-header:hover .nav-menu a {
    color: #f5f7fb;
}

    /* HOVER LINKS */
.nav-menu a:hover {
    transform: translateY(-2px);
    color: #f5f7fb;
    text-shadow: 0 0 5px #f5f7fb;
}



            /* =========================
            MENU SECTION
            ========================= */

.menu-section {
    width: 100%;
    padding: 120px 80px 60px;
}


/* =========================
   SECTION HEADER
========================= */

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* TITULO */
.section-header h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #0f1923;
    text-align: left;
}


    /* LINEA DIVISORIA */

.divider {
    width: 100%;
    max-width: 1500px;
    height: 5px;
    background-color: #3e6ca8;
}

        /* =========================
        BURGER SLIDER
        ========================= */

.burger-slider {
    padding-left: 150px;
    display: flex;
    align-items: center;
    gap: 95px;
    margin-top: 10px;
    overflow-x: auto;
}

/* =========================
   BURGER NAME
========================= */

.burger-name {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 15px;
}


/* =========================
   CARD
========================= */

.burger-card {
    position: relative;
    min-width: 120spx;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 120px;
}


/* IMAGEN */

.burger-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}


/* HOVER IMAGEN */

.burger-card:hover img {
    transform: scale(1.05);
}


/* =========================
   POPUP
========================= */

.burger-popup {

    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}


/* POPUP ACTIVO */

.burger-popup.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   CONTENT
========================= */

.popup-content {

    position: relative;
    width: 420px;
    background: #f5f7fb;
    border: 5px solid #5c6065;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================
   BOTON CERRAR
========================= */

.close-popup {

    position: absolute;
    top: -12px;
    left: -12px;
    width: 35px;
    height: 35px;
    border: 3.5px solid #5c6065;
    background: #f5f7fb;
    color: #5c6065;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}


/* HOVER X */

.close-popup:hover {
    background: white;
    color: #3e6ca8;
}


/* =========================
   IMAGEN
========================= */

.popup-image {

    width: 100%;
    height: 350px;
    object-fit: cover;
}


/* =========================
   TEXTO
========================= */

.popup-text h2 {
    color: #0f1923;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.popup-text p {

    color: #0f1923;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* PRECIO */

.price {
    color: #0f1923;
    font-size: 1.2rem;
    font-weight: bold;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #003DA5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    margin-top: 0px;
}


/* =========================
   LOGO
========================= */

.footer-logo img {
    width: 300px;
    height: auto;
    display: block;
}


/* =========================
   INFO
========================= */

.footer-info {
    text-align: right;
}

.footer-info h3 {
    margin-bottom: 15px
    font-size: 1.2rem;
    font-weight: 700;
}


.footer-info p {
    margin-bottom: 6px;
    color: rgba(255,255,255,0.8);
}


/* =========================
   HERO
========================= */

.hero-home {

    height: 100vh;
    background-image: url("imagenes/comboindividualc.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
}


/* OSCURECER FOTO */

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    padding: 0 100px;
}


/* CONTENIDO */

.hero-content {
    max-width: 700px;
}


.hero-content h1 {
    font-size: 7rem;
    font-weight: 900;
    line-height: .9;
}


.hero-content h2 {
    font-size: 2rem;
    letter-spacing: 8px;
    color: #cfcfcf;
    margin-top: 15px;
}


.hero-content p {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 1.2rem;
}


/* BOTON */

.hero-btn {
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 15px 35px;
    transition: .3s;
}


.hero-btn:hover {
    background: white;
    color: black;
}


/* =========================
   HERO LOGO
========================= */

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}


/* SUBTITULO */

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: #cfcfcf;
    margin-bottom: 35px;
}



/* =========================
   SERVICIOS HERO
========================= */

.services-title{
    padding: 60px 80px 20px;
}
   
.services-content {
    max-width: 900px;
}

.services-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
}


.services-content p {
    margin-top: 35px;
    color: black;
    line-height: 1.3;
    max-width: 700px;
    margin-left: 80px;
}


/* =========================
   FOTO PRINCIPAL
========================= */

.truck-section {
    padding: 0px 80px 0px;
}


.truck-section img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}


/* =========================
   SERVICIOS
========================= */

.services-list {
    padding: 0 80px 120px;
}

.services-list h2 {
    color: #0f1923;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 50px;
}

.events-gallery h2 {
    color: #0f1923;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 20px;
    max-width: 600px;
    margin-bottom: 0px;
}


.service-item {
    border: 1px solid #d9d9d9;
    color: #0f1923;
    padding: 30px;
    font-size: 1rem;
    transition: .3s;
}


.service-item:hover {
    border-color: #3e6ca8;
    transform: translateY(-5px);
}


/* =========================
   GALERIA
========================= */

.events-gallery {
    padding: 0 80px 20px;
}


.gallery-grid {
    margin-top: 50px;
    display: flex;
    gap: 25px;
    max-width: 485px;
    max-height: 500px;
}


.gallery-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: .4s;
}


.gallery-grid img:hover {
    transform: scale(1.03);
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 100px;
    text-align: center;
}


.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}


.cta-section p {
    color: #cfcfcf;
    margin-bottom: 40px;
}


.cta-button {

    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #5c6065;
    color: #003DA5;
    text-decoration: none;
    transition: .3s;
}


.cta-button:hover {
    background: white;
    color: black;
}








