/*====================================================================================================================
SECCION FOOTER
=================================================================================================================*/
/* =====================================================
   FOOTER - MR WRIGHT ADVENTURE
===================================================== */

.mrw-footer {
    position: relative;
    overflow: hidden;

    background-image: url("footer.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    color: #fff;
}

/* Capa oscura para separar la información del fondo */

.mrw-footer-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            rgba(3, 12, 9, 0.97) 0%,
            rgba(4, 20, 14, 0.91) 42%,
            rgba(5, 25, 17, 0.78) 100%
        );
}

/* Luz decorativa */

.mrw-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: rgba(92, 208, 122, 0.13);
    filter: blur(80px);
}

.mrw-footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #56c978,
            #e4b84f,
            #56c978,
            transparent
        );
}

.mrw-footer-container {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 25px;
}

/* =====================================================
   MARCA
===================================================== */

.mrw-footer-brand {
    max-width: 540px;
}

.mrw-footer-logo {
    width: 100px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;
    padding: 12px;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mrw-footer-logo:hover {
    transform: translateY(-4px) rotate(-2deg);

    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(94, 209, 127, 0.2);
}

.mrw-footer-logo img {
    max-width: 76px;
    max-height: 86px;
    object-fit: contain;
}

.mrw-footer-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 13px;
    padding: 7px 12px;

    border: 1px solid rgba(122, 224, 145, 0.35);
    border-radius: 50px;

    background: rgba(67, 176, 94, 0.13);

    color: #a8e9b7;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mrw-footer-brand h3 {
    max-width: 480px;
    margin: 0 0 17px;

    color: #fff;

    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(26px, 3vw, 37px);
    font-weight: 700;
    line-height: 1.2;
}

.mrw-footer-brand p {
    max-width: 540px;
    margin: 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

/* =====================================================
   REDES SOCIALES
===================================================== */

.mrw-footer-social {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: 26px;
}

.mrw-footer-social a {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;

    color: #fff;
    background: rgba(255, 255, 255, 0.08);

    font-size: 17px;
    text-decoration: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.mrw-footer-social a:hover {
    color: #fff;
    background: #3fad61;

    transform: translateY(-4px);

    box-shadow:
        0 10px 22px rgba(63, 173, 97, 0.34);
}

/* =====================================================
   PANELES
===================================================== */

.mrw-footer-panel,
.mrw-tripadvisor-box {
    height: 100%;

    padding: 25px 23px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.065);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mrw-footer-panel h4,
.mrw-tripadvisor-box h4 {
    position: relative;

    margin: 0 0 24px;
    padding-bottom: 13px;

    color: #fff;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.mrw-footer-panel h4::after,
.mrw-tripadvisor-box h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 42px;
    height: 3px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #49b968,
            #d6ad42
        );
}

/* =====================================================
   ENLACES
===================================================== */

.mrw-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.mrw-footer-links li + li {
    margin-top: 12px;
}

.mrw-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.75);

    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.mrw-footer-links a i {
    color: #71d48d;
    font-size: 10px;
}

.mrw-footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* =====================================================
   CONTACTO
===================================================== */

.mrw-footer-contact {
    margin: 0;
    padding: 0;

    list-style: none;
}

.mrw-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mrw-footer-contact li + li {
    margin-top: 18px;
}

.mrw-contact-icon {
    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(112, 215, 141, 0.25);
    border-radius: 11px;

    color: #86e59f;
    background: rgba(79, 184, 106, 0.12);
}

.mrw-footer-contact small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mrw-footer-contact a,
.mrw-footer-contact span {
    color: rgba(255, 255, 255, 0.88);

    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;

    overflow-wrap: anywhere;
}

.mrw-footer-contact a:hover {
    color: #8de3a6;
}

.mrw-footer-whatsapp {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 24px;
    padding: 12px 16px;

    border-radius: 11px;

    color: #fff;
    background:
        linear-gradient(
            135deg,
            #25d366,
            #11994a
        );

    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 11px 25px rgba(37, 211, 102, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mrw-footer-whatsapp:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
}

/* =====================================================
   TRIPADVISOR
===================================================== */

.mrw-tripadvisor-box {
    text-align: center;
}

.mrw-tripadvisor-box > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #83e29f;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mrw-tripadvisor-box h4 {
    padding-bottom: 13px;
    font-size: 16px;
}

.mrw-tripadvisor-box h4::after {
    left: 50%;
    transform: translateX(-50%);
}

.mrw-tripadvisor-box img {
    display: block;

    width: min(100%, 155px);
    height: auto;

    margin: 8px auto 15px;

    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.24));

    transition: transform 0.3s ease;
}

.mrw-tripadvisor-box img:hover {
    transform: scale(1.05);
}

.mrw-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.mrw-review-link:hover {
    color: #8ee5a7;
}

/* =====================================================
   FRANJA INFERIOR
===================================================== */

.mrw-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 50px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.mrw-footer-preferences {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.mrw-footer-select {
    position: relative;

    display: flex;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.07);
}

.mrw-footer-select i {
    position: absolute;
    left: 12px;

    color: rgba(255, 255, 255, 0.62);
    pointer-events: none;
}

.mrw-footer-select select {
    min-width: 135px;
    height: 42px;

    padding: 0 34px 0 35px;

    border: 0;
    outline: 0;

    color: #fff;
    background: transparent;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;

    cursor: pointer;
}

.mrw-footer-select select option {
    color: #111;
    background: #fff;
}

.mrw-payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mrw-payment-methods span {
    color: rgba(255, 255, 255, 0.56);

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mrw-payment-methods img {
    width: 150px;
    max-height: 36px;
    object-fit: contain;
}

.mrw-footer-legal {
    text-align: right;
}

.mrw-legal-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;

    margin-bottom: 8px;
}

.mrw-legal-links a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    text-decoration: none;
}

.mrw-legal-links a:hover {
    color: #fff;
}

.mrw-footer-legal p {
    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .mrw-footer-container {
        padding-top: 65px;
    }

    .mrw-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mrw-footer-legal {
        width: 100%;
        text-align: left;
    }

    .mrw-legal-links {
        justify-content: flex-start;
    }

}

/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 575px) {

    .mrw-footer {
        background-position: 60% center;
    }

    .mrw-footer-container {
        padding-top: 55px;
        padding-bottom: 20px;
    }

    .mrw-footer-brand {
        text-align: center;
    }

    .mrw-footer-logo {
        margin-right: auto;
        margin-left: auto;
    }

    .mrw-footer-brand p {
        font-size: 13px;
        line-height: 1.7;
    }

    .mrw-footer-social {
        justify-content: center;
    }

    .mrw-footer-panel,
    .mrw-tripadvisor-box {
        padding: 23px 20px;
    }

    .mrw-footer-preferences {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .mrw-footer-select {
        width: 100%;
    }

    .mrw-footer-select select {
        width: 100%;
    }

    .mrw-payment-methods {
        width: 100%;
        justify-content: space-between;
        padding-top: 8px;
    }

    .mrw-footer-legal {
        text-align: center;
    }

    .mrw-legal-links {
        justify-content: center;
        gap: 12px;
    }

}