/* =====================================================
   TM VIAJES - ESTILOS PRINCIPALES
   ===================================================== */

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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


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

.header {
    position: relative;
    z-index: 10;
    height: 90px;
    background: #ffffff;
}

.header-container {
    height: 90px;
    display: flex;
    align-items: center;
}

.logo {
    width: 120px;
    max-width: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    width: 120px !important;
    height: auto !important;
    max-width: 120px !important;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex: 1;
}

.nav a {
    color: #003f91;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.btn-contacto {
    background: #e52b23;
    color: #ffffff;
    padding: 14px 25px;
    border-radius: 7px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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


/* =====================================================
   HERO PRINCIPAL
   ===================================================== */

.hero {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #b9d8f2 0%,
        #d9eaf8 55%,
        #f5faff 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0, 92, 180, 0.30) 0%,
        rgba(0, 130, 220, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );

    pointer-events: none;
}

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

    min-height: 500px;

    display: flex;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 6;

    max-width: 520px;
    padding-top: 20px;
}

.hero-text h1 {
    color: #ffffff;
    font-size: clamp(48px, 5vw, 78px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-text h1 span {
    color: #e52b23;
    display: block;
}

.hero-text p {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.5;
    margin-top: 25px;
    max-width: 430px;
}

.hero-line {
    width: 55px;
    height: 4px;
    background: #e52b23;
    margin-top: 25px;
}


/* =====================================================
   ✈️ AVIÓN DEL HERO PRINCIPAL
   ===================================================== */

.hero-plane {
    position: absolute;
    width: 52%;
    max-width: 720px;
    right: -2%;
    top: 52%;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

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

/* =====================================================
   BUSCADOR DE VUELOS
   ===================================================== */

.flight-section {
    padding: 70px 0 50px;
    background: #ffffff;
}

.flight-search {
    width: 100%;
    max-width: 1100px;
    margin: 35px auto 0;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
}

.flight-search iframe {
    display: block;
    width: 100%;
    height: 750px;
    border: 0;
}


/* =====================================================
   TÍTULOS DE SECCIÓN
   ===================================================== */

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    color: #06469a;
}

.section-title p {
    color: #666666;
}

.title-line {
    width: 55px;
    height: 4px;
    background: #e52b23;
    margin: 12px auto;
    border-radius: 5px;
}


/* =====================================================
   DESTINOS
   ===================================================== */

.destinations {
    padding: 70px 0 90px;
    background: #ffffff;
}

.destinations .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.destinations .section-title h2 {
    color: #06469a;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.destinations .section-title p {
    color: #666666;
    font-size: 17px;
    margin-top: 10px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destination-card {
    position: relative;
    height: 330px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.destination-image {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition: transform 0.5s ease;
}


/* =====================================================
   IMÁGENES DESTINOS
   ===================================================== */

.paraguay-image {
    background-image: url("../images/paraguay.jpg");
}

.argentina-image {
    background-image: url("../images/argentina.jpg");
}

.espana-image {
    background-image: url("../images/espana.jpg");
}


/* =====================================================
   DEGRADADO DESTINOS
   ===================================================== */

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.02) 100%
    );

    z-index: 1;
    pointer-events: none;
}


/* =====================================================
   CONTENIDO DESTINOS
   ===================================================== */

.destination-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 25px;
    z-index: 2;
}

.destination-overlay h3 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 15px;
}

.btn-destination {
    display: inline-block;

    background: #e52b23;
    color: #ffffff;

    padding: 11px 22px;

    border-radius: 6px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

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


/* =====================================================
   EFECTO DESTINOS
   ===================================================== */

.destination-card:hover .destination-image {
    transform: scale(1.06);
}

.destination-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.20);
}


/* =====================================================
   CONTACTO
   ===================================================== */

.contact-section {
    padding: 90px 20px;
    text-align: center;
    background: #f4f8fc;
}

.contact-section h2 {
    color: #0b4da2;
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-section p {
    color: #666666;
    font-size: 18px;
    margin-bottom: 30px;
}


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

.footer {
    background: #063b7c;
    color: #ffffff;
    text-align: center;
    padding: 25px 0;
}

.footer p {
    font-size: 14px;
}


/* =====================================================
   PÁGINAS DE DESTINO
   ===================================================== */

.destination-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-size: cover;
    background-position: center;
}

.paraguay-hero {
    background-image: url("../images/paraguay.jpg");
}

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

    background: linear-gradient(
        90deg,
        rgba(0, 45, 95, 0.78),
        rgba(0, 45, 95, 0.35),
        rgba(0, 0, 0, 0.05)
    );

    pointer-events: none;
}

.destination-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.destination-label {
    display: inline-block;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;

    margin-bottom: 15px;

    color: #ffffff;
}

.destination-hero h1 {
    margin: 0 0 20px;

    font-size: 72px;
    line-height: 1;

    font-weight: 800;
}

.destination-hero p {
    max-width: 600px;

    margin: 0 0 30px;

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

    color: #ffffff;
}

.btn-destination-hero {
    display: inline-block;

    padding: 14px 28px;

    background: #e52b23;
    color: #ffffff;

    border-radius: 7px;

    font-weight: 700;

    transition: all 0.3s ease;
}

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


/* =====================================================
   INTRO DESTINO
   ===================================================== */

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

.destination-intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-label {
    color: #e52b23;

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

    letter-spacing: 3px;
}

.destination-intro h2 {
    margin: 12px 0 20px;

    color: #064a9b;

    font-size: 42px;
}

.destination-intro p {
    max-width: 760px;

    margin: 0 auto 15px;

    color: #555;

    font-size: 18px;
    line-height: 1.7;
}


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

.destination-services {
    padding: 80px 0 100px;
    background: #f5f9fd;
}

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

.destination-services .section-title h2 {
    color: #064a9b;
    font-size: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    padding: 35px 25px;

    background: #ffffff;

    border-radius: 15px;

    text-align: center;

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

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

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

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

.service-icon {
    display: flex;

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

    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #eaf3fc;

    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 12px;

    color: #064a9b;

    font-size: 22px;
}

.service-card p {
    min-height: 75px;

    margin-bottom: 20px;

    color: #666;

    line-height: 1.5;
}

.service-card a {
    color: #e52b23;
    font-weight: 700;

    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #064a9b;
}


/* =====================================================
   CTA DESTINO
   ===================================================== */

.destination-cta {
    padding: 80px 0;

    background: linear-gradient(
        135deg,
        #064a9b,
        #0a65c2
    );

    text-align: center;

    color: #ffffff;
}

.destination-cta h2 {
    margin-bottom: 15px;
    font-size: 38px;
}

.destination-cta p {
    margin-bottom: 30px;

    font-size: 18px;

    color: rgba(255, 255, 255, 0.9);
}

.destination-cta .btn-contacto {
    display: inline-block;

    background: #e52b23;
    color: #ffffff;
}

.destination-cta .btn-contacto:hover {
    background: #c91f19;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 1000px) {

    .nav {
        gap: 15px;
    }

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

    .logo {
        width: 120px;
    }

    .hero-text {
        width: 380px;
    }

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

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

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


/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 700px) {

    .header {
        position: absolute;
        width: 100%;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        width: 120px;
    }

    .nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 22px;
        padding-bottom: 5px;
    }

    .nav a {
        white-space: nowrap;
    }

    .btn-contacto {
        padding: 11px 17px;
    }

    .hero {
        min-height: 720px;
        height: auto;
        padding: 150px 0 120px;
    }

    .hero-content {
        min-height: 450px;
        align-items: flex-start;
    }

    .hero-text {
        width: 100%;
        max-width: 500px;
        padding-top: 40px;
    }

    .hero-text h1 {
        font-size: 52px;
    }

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

    /* AVIÓN EN MÓVIL */

    .hero-plane {
        width: 95%;
        max-width: 650px;
        right: -30%;
        top: 38%;
        opacity: 0.9;
        z-index: 3;
    }

    .flight-section {
        margin-top: -60px;
    }

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

    .destination-card {
        height: 300px;
    }

    .section-title h2,
    .destinations .section-title h2 {
        font-size: 32px;
    }

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

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

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

    .destination-hero p {
        font-size: 17px;
    }

    .destination-intro {
        padding: 60px 0;
    }

    .destination-intro h2 {
        font-size: 34px;
    }

    .destination-cta h2 {
        font-size: 30px;
    }
}


/* =====================================================
   MÓVIL PEQUEÑO
   ===================================================== */

@media (max-width: 450px) {

    .hero-text h1 {
        font-size: 43px;
    }

    .header-container {
        gap: 15px;
    }

    .btn-contacto {
        display: none;
    }
}
/* =====================================================
   AJUSTES MÓVIL - TM VIAJES
   ===================================================== */

@media (max-width: 768px) {

    /* ==============================
       CONTENEDOR
       ============================== */

    .container {
        width: 92%;
        max-width: none;
    }


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

    .header {
        overflow: hidden;
    }

    .header-container {
        min-height: 80px;
        height: 80px;
        gap: 10px;
        overflow: hidden;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        width: 95px;
        height: auto;
    }

    .nav {
        display: flex;
        gap: 12px;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
    }

    .nav a {
        font-size: 14px;
        flex-shrink: 0;
    }

    .btn-contacto {
        display: none;
    }


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

    .hero {
        height: 600px;
        min-height: 600px;
        overflow: hidden;
        position: relative;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        height: 100%;
    }

    .hero-text {
        position: relative;
        z-index: 10;
        width: 100%;
        padding-top: 105px;
    }


    /* ==============================
       TITULAR
       ============================== */

    .hero-text h1 {
        font-size: 46px;
        line-height: 0.98;
        max-width: 100%;
        margin: 0;
    }

    .hero-text p {
        font-size: 19px;
        line-height: 1.45;
        max-width: 100%;
        margin-top: 28px;
    }

    .hero-line {
        margin-top: 30px;
    }


    /* ==============================
       AVIÓN
       ============================== */

    .hero-plane {
        position: absolute;

        width: 72%;
        max-width: none;

        right: -25%;
        top: 24%;

        transform: none;

        z-index: 3;

        pointer-events: none;
    }

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


    /* ==============================
       BUSCADOR
       ============================== */

    .flight-section {
        padding-top: 42px;
    }

    .section-title {
        text-align: left;
    }

    .section-title h2 {
        font-size: 32px;
        line-height: 1.1;
    }

    .section-title p {
        font-size: 18px;
        line-height: 1.4;
    }

}
/* =====================================================
   AJUSTE FINAL HERO + BUSCADOR EN MÓVIL
   ===================================================== */

@media (max-width: 768px) {

    /* El hero queda limpio y no invade la siguiente sección */

    .hero {
        height: 600px;
        min-height: 600px;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }


    /* La sección de vuelos empieza después del hero */

    .flight-section {
        position: relative;
        z-index: 5;
        background: #ffffff;
        padding-top: 50px;
    }


    /* Título del buscador */

    .flight-section .section-title {
        position: relative;
        z-index: 6;
        margin-bottom: 30px;
    }


    .flight-section .section-title h2 {
        font-size: 32px;
        line-height: 1.15;
    }


    .flight-section .section-title p {
        font-size: 18px;
        line-height: 1.4;
    }
}
/* =====================================================
   MENÚ MÓVIL
   ===================================================== */

/* BOTÓN OCULTO EN ORDENADOR */

.menu-toggle {
    display: none;
}


/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 768px) {

    .header-container {
        position: relative;
    }


    /* Ocultamos menú normal */

    .nav {
        display: none;
    }


    /* Ocultamos contacto */

    .header .btn-contacto {
        display: none;
    }


    /* Botón hamburguesa */

    .menu-toggle {
        display: flex;

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

        width: 48px;
        height: 48px;

        margin-left: auto;

        border: none;
        border-radius: 8px;

        background: #e52b23;
        color: #ffffff;

        font-size: 28px;
        line-height: 1;

        cursor: pointer;

        position: relative;
        z-index: 1001;
    }


    /* MENÚ ABIERTO */

    .nav.mobile-open {
        display: flex;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;

        background: #ffffff;

        padding: 20px;

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

        z-index: 1000;
    }


    .nav.mobile-open a {
        display: block;

        width: 100%;

        padding: 15px 10px;

        text-align: center;

        font-size: 18px;

        border-bottom: 1px solid #eeeeee;
    }


    .nav.mobile-open a:last-child {
        border-bottom: none;
    }

}
/* =====================================================
   MENÚ MÓVIL - AJUSTE DEFINITIVO
   ===================================================== */

@media (max-width: 768px) {

    .header {
        position: relative;
        z-index: 1000;
    }

    .header-container {
        position: relative;
    }

    .nav.mobile-open {
        display: flex !important;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;

        background: #ffffff;

        padding: 15px 20px;

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

        z-index: 9999;
    }

    .nav.mobile-open a {
        display: block !important;

        width: 100%;

        padding: 14px 10px;

        color: #064b91;

        text-align: center;

        font-size: 18px;

        text-decoration: none;

        border-bottom: 1px solid #eeeeee;
    }

    .nav.mobile-open a:last-child {
        border-bottom: none;
    }

}
@media (max-width: 768px) {

    .nav.mobile-open {
        display: flex !important;

        position: fixed !important;

        top: 100px !important;
        left: 20px !important;
        right: 20px !important;

        width: auto !important;

        flex-direction: column !important;

        background: #ffffff !important;

        padding: 20px !important;

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;

        z-index: 999999 !important;
    }

    .nav.mobile-open a {
        display: block !important;

        width: 100% !important;

        padding: 16px 10px !important;

        color: #064b91 !important;

        background: #ffffff !important;

        text-align: center !important;

        font-size: 20px !important;

        border-bottom: 1px solid #eeeeee !important;
    }

}
/* =====================================================
   ANIMACIÓN MENÚ MÓVIL
   ===================================================== */

@media (max-width: 768px) {

    .nav.mobile-open {
        animation: menuSlideDown 0.25s ease-out;
    }

    @keyframes menuSlideDown {

        from {
            opacity: 0;
            transform: translateY(-15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }


    .nav.mobile-open a {
        transition:
            background 0.2s ease,
            color 0.2s ease;
    }


    .nav.mobile-open a:active {
        background: #f3f6fa;
    }

}
/* =====================================================
   DESCARGA ESPYFM
   ===================================================== */

.espyfm-download {
    background: #0d1324;
    padding: 70px 20px;
    text-align: center;
    color: #ffffff;
}


.espyfm-download h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}


.espyfm-download p {
    margin: 0 0 35px;
    font-size: 17px;
    color: #d9deea;
}


.espyfm-download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}


.espyfm-download-button {
    display: flex;
    align-items: center;
    gap: 16px;

    width: 100%;
    max-width: 360px;

    padding: 20px 28px;

    background: #1d2539;
    border: 1px solid #343d55;
    border-radius: 16px;

    color: #ffffff;
    text-decoration: none;

    text-align: left;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.espyfm-download-button:hover {
    transform: translateY(-4px);
    background: #26314a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


.espyfm-download-button > span:first-child {
    font-size: 30px;
}


.espyfm-download-button span {
    display: flex;
    flex-direction: column;
}


.espyfm-download-button strong {
    font-size: 18px;
    margin-bottom: 4px;
}


.espyfm-download-button small {
    font-size: 14px;
    color: #cbd1df;
}


/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 700px) {

    .espyfm-download {
        padding: 55px 20px;
    }


    .espyfm-download h2 {
        font-size: 28px;
    }


    .espyfm-download p {
        font-size: 16px;
        line-height: 1.5;
    }


    .espyfm-download-buttons {
        flex-direction: column;
        gap: 15px;
    }


    .espyfm-download-button {
        max-width: none;
        box-sizing: border-box;
        padding: 18px 20px;
    }

}
/* =====================================================
   DESCARGA ESPYFM — DISEÑO TM VIAJES
===================================================== */

.espyfm-download {
    position: relative;
    background: linear-gradient(
        180deg,
        #eaf4fc 0%,
        #dcecf9 100%
    );

    padding: 75px 20px 80px;
    text-align: center;
    color: #064b91;

    overflow: hidden;
}


/* Transición superior suave */

.espyfm-download::before {
    content: "";
    position: absolute;
    top: -45px;
    left: -5%;
    width: 110%;
    height: 90px;

    background: #f4f8fc;

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}


/* CONTENIDO */

.espyfm-download .container {
    position: relative;
    z-index: 2;
}


/* TÍTULO */

.espyfm-download h2 {
    margin: 0 0 12px;

    color: #07519a;

    font-size: 34px;
    font-weight: 700;
}


/* LÍNEA DECORATIVA */

.espyfm-download h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 4px;

    background: #ed2b24;

    margin: 16px auto 0;

    border-radius: 4px;
}


/* TEXTO */

.espyfm-download p {
    margin: 20px auto 40px;

    max-width: 600px;

    color: #425466;

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


/* BOTONES */

.espyfm-download-buttons {
    display: flex;

    justify-content: center;

    gap: 24px;

    max-width: 800px;

    margin: 0 auto;
}


/* TARJETA */

.espyfm-download-button {
    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    width: 100%;
    max-width: 380px;

    padding: 22px 26px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #d9e4ef;

    border-radius: 16px;

    color: #07519a;

    text-decoration: none;

    text-align: left;

    box-shadow: 0 8px 25px rgba(20, 70, 110, 0.10);

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


/* FLECHA */

.espyfm-download-button::after {
    content: "›";

    margin-left: auto;

    font-size: 32px;

    line-height: 1;

    color: #07519a;

    transition: transform 0.25s ease;
}


/* EFECTO */

.espyfm-download-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(20, 70, 110, 0.16);
}


.espyfm-download-button:hover::after {
    transform: translateX(5px);
}


/* ICONO */

.espyfm-download-button {
    font-size: 30px;
}


/* TEXTO DE LA TARJETA */

.espyfm-download-button span {
    display: flex;

    flex-direction: column;
}


/* NOMBRE */

.espyfm-download-button strong {
    display: block;

    margin-bottom: 5px;

    color: #07519a;

    font-size: 19px;
}


/* SUBTÍTULO */

.espyfm-download-button small {
    color: #4d5d70;

    font-size: 14px;
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 700px) {

    .espyfm-download {

        padding:
            65px
            20px
            65px;
    }


    .espyfm-download h2 {

        font-size: 30px;
    }


    .espyfm-download p {

        margin-bottom: 30px;

        font-size: 16px;
    }


    .espyfm-download-buttons {

        flex-direction: column;

        gap: 16px;

        width: 100%;
    }


    .espyfm-download-button {

        max-width: none;

        padding: 20px;
    }


    .espyfm-download-button strong {

        font-size: 18px;
    }


    .espyfm-download-button small {

        font-size: 14px;
    }

}
/* =====================================================
   BOTÓN CONTACTO - MÓVIL
===================================================== */

@media (max-width: 700px) {

    .contact-section .btn-contacto {
        display: inline-block !important;

        background: #e52b23;
        color: #ffffff;

        padding: 14px 24px;

        border-radius: 7px;

        font-weight: 700;

        text-decoration: none;
    }

}
/* =====================================================
   BOTÓN CONTACTAR TM VIAJES - EFECTO
===================================================== */

.contact-section .btn-contacto {
    display: inline-block;

    background: #e52b23;
    color: #ffffff;

    padding: 15px 28px;

    border-radius: 8px;

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

    box-shadow: 0 8px 20px rgba(229, 43, 35, 0.25);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* PC / RATÓN */

.contact-section .btn-contacto:hover {
    background: #c91f19;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(229, 43, 35, 0.35);
}


/* MÓVIL */

@media (max-width: 700px) {

    .contact-section .btn-contacto {

        padding: 14px 24px;

        font-size: 16px;

        border-radius: 8px;

        box-shadow:
            0 7px 18px rgba(229, 43, 35, 0.25);
    }


    .contact-section .btn-contacto:active {

        transform: scale(0.97);

        box-shadow:
            0 4px 10px rgba(229, 43, 35, 0.20);
    }

}
/* =====================================================
   SOBRE TM VIAJES
===================================================== */

.about-tm {
    max-width: 760px;

    margin: 55px auto 0;

    text-align: center;
}


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

    margin: 0 auto 22px;

    background: #e52b23;

    border-radius: 5px;
}


.about-tm h3 {
    margin: 0 0 22px;

    color: #064a9b;

    font-size: 30px;
    font-weight: 800;
}


.about-tm p {
    margin: 0 auto 14px;

    max-width: 720px;

    color: #555555;

    font-size: 17px;

    line-height: 1.7;
}


.about-tm .about-slogan {
    margin-top: 25px;

    color: #064a9b;

    font-size: 19px;

    font-weight: 700;
}


/* =====================================================
   SOBRE TM VIAJES - MÓVIL
===================================================== */

@media (max-width: 700px) {

    .about-tm {
        margin-top: 45px;
    }


    .about-tm h3 {
        font-size: 27px;
    }


    .about-tm p {
        font-size: 16px;

        line-height: 1.6;
    }


    .about-tm .about-slogan {
        font-size: 18px;
    }

}