/* =====================================================
   ARGENTINA - TM VIAJES
   ===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #123f78;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================================
   CABECERA
   ===================================================== */

.header {
    width: 100%;
    height: 120px;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 140px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav a {
    color: #003f82;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding: 10px 0;
}

.nav a:hover,
.nav a.active {
    color: #e52b23;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    margin: auto;
    background: #e52b23;
    border-radius: 5px;
}


/* =====================================================
   BOTÓN CONTACTO
   ===================================================== */

.btn-contacto {
    display: inline-block;
    background: #e52b23;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-contacto:hover {
    background: #c91f19;
    transform: translateY(-2px);
}


/* =====================================================
   HERO ARGENTINA
   ===================================================== */

.destination-hero {
    position: relative;
    min-height: 560px;

    background-image: url("../../images/espana.jpg");
    background-size: cover;
    background-position: center center;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 42, 92, 0.82) 0%,
            rgba(0, 42, 92, 0.58) 30%,
            rgba(0, 42, 92, 0.20) 60%,
            rgba(0, 42, 92, 0.02) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    color: #ffffff;

    padding: 40px 0;
}

.hero-label {
    display: block;

    margin-bottom: 15px;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 4px;
}

.hero-content h1 {
    font-size: 82px;
    line-height: 1;

    margin-bottom: 22px;
}

.hero-content p {
    max-width: 650px;

    font-size: 22px;
    line-height: 1.5;

    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;

    background: #e52b23;
    color: #ffffff;

    text-decoration: none;

    padding: 16px 30px;

    border-radius: 8px;

    font-size: 18px;
    font-weight: 700;

    transition: 0.3s ease;
}

.hero-button:hover {
    background: #c91f19;
    transform: translateY(-2px);
}

/* =====================================================
   INTRODUCCIÓN
   ===================================================== */

.destination-intro {
    padding: 75px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    display: block;

    color: #e52b23;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 10px;
}

.section-title h2 {
    color: #07519a;
    font-size: 40px;
    margin-bottom: 12px;
}

.title-line {
    width: 55px;
    height: 4px;

    background: #e52b23;

    margin: 12px auto 25px;

    border-radius: 5px;
}

.section-title p {
    color: #555555;

    font-size: 17px;
    line-height: 1.6;

    margin-bottom: 15px;
}


/* =====================================================
   SERVICIOS
   ===================================================== */

.destination-services {
    padding: 80px 0 90px;

    background: #f3f8fd;
}

.destination-services .section-title {
    max-width: 850px;
    margin-bottom: 45px;
}

.destination-services .section-title h2 {
    color: #07519a;
}


/* =====================================================
   TARJETAS
   ===================================================== */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    background: #ffffff;

    border-radius: 15px;

    padding: 28px 22px;

    text-align: center;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;

    border-radius: 50%;

    font-size: 25px;
}

.service-card h3 {
    color: #07519a;

    font-size: 20px;

    margin-bottom: 12px;
}

.service-card p {
    color: #555555;

    font-size: 14px;

    line-height: 1.5;

    min-height: 65px;

    margin-bottom: 20px;
}

.service-card a {
    color: #e52b23;

    text-decoration: none;

    font-weight: 700;

    font-size: 14px;
}

.service-card a:hover {
    text-decoration: underline;
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: #06478c;

    color: #ffffff;

    text-align: center;

    padding: 22px 0;

    font-size: 13px;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 15px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 58px;
    }

}


@media (max-width: 650px) {

    .header {
        height: auto;
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        width: 110px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .btn-contacto {
        display: none;
    }

    .destination-hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

}