/* =====================================================
   HERO PRINCIPAL - MR WRIGHT ADVENTURE
===================================================== */

.mrw-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
}

/* Imagen fija */

.mrw-hero-background {
    position: absolute;
    inset: 0;

    background-image: url("banner.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.01);
}

/* Oscurecimiento para mejorar la lectura */

.mrw-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(8, 13, 15, 0.42) 0%,
            rgba(8, 13, 15, 0.28) 35%,
            rgba(8, 13, 15, 0.58) 100%
        );
}

/* Contenido */

.mrw-hero-content {
    position: relative;
    z-index: 2;

    width: min(92%, 900px);
    margin: auto;
    padding: 130px 20px 80px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo central */

.mrw-hero-logo {
    display: block;
    width: min(100%, 580px);
    height: auto;
    margin: 0 auto 18px;

    filter:
        drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.08));
}

/* Texto de ubicación */

.mrw-hero-location {
    margin: 0 0 28px;

    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(16px, 2vw, 21px);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.5;

    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

/* Botones */

.mrw-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 38px;
}

.mrw-btn {
    min-width: 170px;
    padding: 14px 24px;

    border: 2px solid transparent;
    border-radius: 10px;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.mrw-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.mrw-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #0575e6, #0097f6);
    box-shadow:
        0 10px 25px rgba(0, 119, 230, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mrw-btn-primary:hover {
    color: #fff;
    box-shadow:
        0 14px 32px rgba(0, 119, 230, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mrw-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mrw-btn-outline:hover {
    color: #111;
    background-color: #fff;
    border-color: #fff;
}

/* Redes sociales */

.mrw-social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.mrw-social-title {
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(18px, 2vw, 27px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.mrw-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mrw-social-icons a {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;

    background-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.mrw-social-icons a:hover {
    transform: translateY(-4px) scale(1.05);
    background-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.38),
        0 0 18px rgba(255, 255, 255, 0.16);
}

.mrw-social-icons img {
    width: 29px;
    height: 29px;
    object-fit: contain;
}

/* Indicador de desplazamiento */

.mrw-scroll-indicator {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 22px;

    width: 28px;
    height: 46px;

    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 20px;

    transform: translateX(-50%);
}

.mrw-scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;

    width: 5px;
    height: 9px;

    border-radius: 10px;
    background-color: #fff;

    transform: translateX(-50%);
    animation: mrwScrollMove 1.8s infinite;
}

@keyframes mrwScrollMove {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 17px);
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .mrw-hero-content {
        padding-top: 120px;
    }

    .mrw-hero-logo {
        width: min(90%, 500px);
    }

}

/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 575px) {

    .mrw-hero {
        min-height: 100svh;
    }

    .mrw-hero-background {
        background-position: center center;
    }

    .mrw-hero-content {
        width: 100%;
        padding: 105px 20px 70px;
    }

    .mrw-hero-logo {
        width: min(95%, 360px);
        margin-bottom: 15px;
    }

    .mrw-hero-location {
        max-width: 310px;
        margin-bottom: 22px;
        font-size: 15px;
    }

    .mrw-hero-actions {
        width: 100%;
        margin-bottom: 30px;
        gap: 10px;
    }

    .mrw-btn {
        width: min(100%, 280px);
        min-width: 0;
        padding: 13px 18px;
        font-size: 14px;
    }

    .mrw-social {
        flex-direction: column;
        gap: 13px;
    }

    .mrw-social-title {
        font-size: 18px;
    }

    .mrw-social-icons a {
        width: 43px;
        height: 43px;
    }

    .mrw-social-icons img {
        width: 27px;
        height: 27px;
    }

    .mrw-scroll-indicator {
        display: none;
    }

}

/* Respeto a usuarios que prefieren menos animaciones */

@media (prefers-reduced-motion: reduce) {

    .mrw-scroll-indicator span {
        animation: none;
    }

    .mrw-btn,
    .mrw-social-icons a {
        transition: none;
    }

}

/*====================================================================================================================
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;
    }

}
/*=======================================================================================================================================================
          seccion about us nuevo
========================================================================================================================================================*/
/* =====================================================
   OUR STORY - MR WRIGHT ADVENTURE
===================================================== */

.mrw-story-section {
    position: relative;
    overflow: hidden;

    padding: 95px 0;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(73, 185, 104, 0.11),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(221, 176, 62, 0.10),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f7faf7 0%,
            #ffffff 48%,
            #f3f8f4 100%
        );
}

/* Decoración de fondo */

.mrw-story-section::before {
    content: "";
    position: absolute;
    top: 100px;
    left: -90px;

    width: 240px;
    height: 240px;

    border: 35px solid rgba(67, 169, 94, 0.06);
    border-radius: 50%;
}

.mrw-story-section::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: 70px;

    width: 190px;
    height: 190px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            rgba(213, 169, 58, 0.07),
            rgba(73, 185, 104, 0.08)
        );

    transform: rotate(28deg);
}

.mrw-story-section > .container {
    position: relative;
    z-index: 2;
}

/* =====================================================
   ENCABEZADO
===================================================== */

.mrw-story-heading {
    max-width: 760px;

    margin: 0 auto 60px;
}

.mrw-story-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;
    padding: 8px 15px;

    border: 1px solid rgba(50, 148, 78, 0.18);
    border-radius: 50px;

    color: #2e8c4d;
    background: rgba(75, 178, 101, 0.09);

    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.mrw-story-heading h2 {
    margin: 0 0 17px;

    color: #17251c;

    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 750;
    line-height: 1.14;
    letter-spacing: -1.3px;
}

.mrw-story-heading h2 span {
    color: #39985a;
}

.mrw-story-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #66746a;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

/* =====================================================
   IMAGEN
===================================================== */

.mrw-story-image-wrap {
    position: relative;

    max-width: 610px;

    margin-right: auto;
    margin-left: auto;
    padding: 0 24px 32px 0;
}

.mrw-story-image-frame {
    position: relative;
    overflow: hidden;

    min-height: 600px;

    border-radius: 30px;

    background: #dce9df;

    box-shadow:
        0 28px 60px rgba(18, 48, 27, 0.18),
        0 8px 18px rgba(18, 48, 27, 0.09);
}

.mrw-story-image-frame::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 3;

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 21px;

    pointer-events: none;
}

.mrw-story-image-frame img {
    width: 100%;
    height: 600px;

    display: block;

    object-fit: cover;
    object-position: center top;

    transition: transform 0.7s ease;
}

.mrw-story-image-frame:hover img {
    transform: scale(1.035);
}

.mrw-story-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7, 25, 13, 0.58) 100%
        );
}

.mrw-story-location-card {
    position: absolute;
    z-index: 4;
    left: 28px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 12px;

    max-width: calc(100% - 56px);
    padding: 13px 17px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 15px;

    color: #fff;
    background: rgba(5, 24, 12, 0.68);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mrw-location-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #fff;
    background:
        linear-gradient(
            135deg,
            #4fba6f,
            #268e49
        );
}

.mrw-story-location-card small {
    display: block;

    margin-bottom: 1px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mrw-story-location-card strong {
    color: #fff;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.mrw-story-experience-card {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;

    min-width: 175px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 18px 19px;

    border: 7px solid #f7faf7;
    border-radius: 22px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2c9853,
            #196c39
        );

    box-shadow: 0 16px 35px rgba(22, 104, 55, 0.28);
}

.mrw-story-experience-card strong {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.mrw-story-experience-card span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* =====================================================
   CONTENIDO
===================================================== */

.mrw-story-content {
    max-width: 640px;
}

.mrw-story-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #369558;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mrw-story-content > h3 {
    margin: 0 0 22px;

    color: #19291e;

    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(27px, 3.5vw, 39px);
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -0.7px;
}

.mrw-story-content > p {
    margin-bottom: 16px;

    color: #617067;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   CARACTERÍSTICAS
===================================================== */

.mrw-story-features {
    display: grid;
    gap: 13px;

    margin: 27px 0 23px;
}

.mrw-story-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 16px 17px;

    border: 1px solid rgba(45, 125, 68, 0.1);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.82);

    box-shadow:
        0 8px 24px rgba(28, 74, 40, 0.055);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.mrw-story-feature:hover {
    transform: translateX(5px);

    border-color: rgba(52, 155, 82, 0.22);

    box-shadow:
        0 13px 28px rgba(28, 74, 40, 0.09);
}

.mrw-feature-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #2e9552;
    background:
        linear-gradient(
            135deg,
            rgba(72, 184, 102, 0.16),
            rgba(209, 171, 65, 0.10)
        );

    font-size: 18px;
}

.mrw-story-feature h4 {
    margin: 1px 0 4px;

    color: #223228;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.mrw-story-feature p {
    margin: 0;

    color: #718078;

    font-size: 12px;
    line-height: 1.6;
}

.mrw-story-final-text {
    padding-left: 17px;

    border-left: 3px solid #48ad68;
}

/* =====================================================
   BOTONES
===================================================== */

.mrw-story-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 25px;
}

.mrw-story-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 20px;

    border: 2px solid transparent;
    border-radius: 12px;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.mrw-story-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.mrw-story-btn-main {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #359b59,
            #217840
        );

    box-shadow: 0 12px 25px rgba(47, 148, 82, 0.24);
}

.mrw-story-btn-main:hover {
    color: #fff;

    box-shadow: 0 16px 30px rgba(47, 148, 82, 0.34);
}

.mrw-story-btn-whatsapp {
    color: #14733b;

    border-color: rgba(29, 154, 78, 0.18);

    background: #effaf2;
}

.mrw-story-btn-whatsapp:hover {
    color: #fff;
    background: #25a854;

    box-shadow: 0 14px 28px rgba(37, 168, 84, 0.22);
}

/* =====================================================
   BANDA DE BENEFICIOS
===================================================== */

.mrw-story-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 70px;

    border: 1px solid rgba(42, 124, 66, 0.11);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.86);

    box-shadow:
        0 16px 40px rgba(24, 64, 36, 0.07);

    overflow: hidden;
}

.mrw-highlight-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 112px;
    padding: 22px 18px;
}

.mrw-highlight-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;

    width: 1px;
    height: 50%;

    background: rgba(35, 113, 57, 0.12);
}

.mrw-highlight-item > i {
    color: #3ba35e;

    font-size: 27px;
}

.mrw-highlight-item strong {
    display: block;

    color: #213127;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.mrw-highlight-item span {
    display: block;

    margin-top: 2px;

    color: #78847c;

    font-size: 11px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .mrw-story-section {
        padding: 75px 0;
    }

    .mrw-story-heading {
        margin-bottom: 45px;
    }

    .mrw-story-image-wrap {
        max-width: 650px;
    }

    .mrw-story-content {
        max-width: 100%;
    }

    .mrw-story-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .mrw-highlight-item:nth-child(2)::after {
        display: none;
    }

    .mrw-highlight-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(35, 113, 57, 0.10);
    }

}

/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 575px) {

    .mrw-story-section {
        padding: 60px 0;
    }

    .mrw-story-heading {
        margin-bottom: 35px;
    }

    .mrw-story-heading h2 {
        font-size: 33px;
    }

    .mrw-story-heading p {
        font-size: 14px;
    }

    .mrw-story-image-wrap {
        padding: 0 0 25px;
    }

    .mrw-story-image-frame {
        min-height: 450px;
        border-radius: 22px;
    }

    .mrw-story-image-frame img {
        height: 450px;
    }

    .mrw-story-location-card {
        left: 18px;
        right: 18px;
        bottom: 18px;

        max-width: none;
    }

    .mrw-story-experience-card {
        right: 14px;
        bottom: -5px;

        min-width: 155px;
        padding: 15px;

        border-width: 5px;
    }

    .mrw-story-experience-card strong {
        font-size: 30px;
    }

    .mrw-story-content > h3 {
        font-size: 27px;
    }

    .mrw-story-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mrw-story-btn {
        width: 100%;
    }

    .mrw-story-highlights {
        grid-template-columns: 1fr;

        margin-top: 48px;
    }

    .mrw-highlight-item {
        justify-content: flex-start;

        min-height: 92px;
        padding-left: 25px;
    }

    .mrw-highlight-item:not(:last-child)::after {
        top: auto;
        right: 20px;
        bottom: 0;
        left: 20px;

        width: auto;
        height: 1px;
    }

    .mrw-highlight-item:nth-child(-n + 2) {
        border-bottom: 0;
    }

}