@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Poppins:wght@400;500&display=swap");

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


body {
    font-family: var(--font-primary);
    width: 100%;
}

/* TYPOGRAPHY */

html {
    scroll-behavior: smooth;
}



/*Hero Section*/
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), black), url(../images/Recurso_1.png);
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
}

.content {
    display: flex;
    justify-content: flex-start;
    padding: 10rem 0px 5rem;
    width: 90%;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(-10%);
    transition: all 0.9s;
}

.content article {
    display: flex;
    flex-direction: column;
    color: #FFF;
}

.content article h1 {
    font-size: 5.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--font-primary);
    
    /* Reset global styles that override hero styling */
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #FFF !important;
    color: #FFF !important;
    text-align: left !important;
}

.content article h1 span {
    display: block;
}

.content article h1 .word-rotator {
    display: inline-grid;
    -webkit-text-fill-color: #E8821A !important;
    color: #E8821A !important;
}

.home__subtitle {
    font-size: 1rem;
    margin-bottom: .5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: .5rem;
}


.content article p {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 18px;
}

.content article .btn-question {
    font-family: var(--font-primary);
    background-color: #240354;
    padding: 17px;
    border-radius: 12px;
    margin-top: 61px;
    cursor: pointer;
    border: none;
    color: #FFF;
    font-size: 1.1rem;
    backdrop-filter: blur(24px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content article .btn-question:hover {
    background-color: #E8821A !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 130, 26, 0.3);
}

/* Efecto de Brillo (Shimmer) */
.content article .btn-question::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: rotate(30deg);
    transition: all 0.8s ease;
}

.content article .btn-question:hover::after {
    left: 150%;
}

/* 3D Word Rotator Effect (Wheel) */
.word-rotator {
    display: inline-grid;
    perspective: 600px;
    color: #E8821A;
    text-shadow: 0 0 15px rgba(232, 130, 26, 0.5);
    font-weight: 400;
}
.rotator-item {
    grid-area: 1 / 1;
    transform-origin: 50% 50%;
    transform: translateY(-80%) rotateX(90deg);
    opacity: 0;
    will-change: transform, opacity;
    font-weight: 600 !important;
}

.show .rotator-item {
    animation: rotateWheel 16s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.rotator-item:nth-child(1) { animation-delay: 0s; }
.rotator-item:nth-child(2) { animation-delay: 4s; }
.rotator-item:nth-child(3) { animation-delay: 8s; }
.rotator-item:nth-child(4) { animation-delay: 12s; }

@keyframes rotateWheel {
    0%  { transform: translateY(-80%) rotateX(90deg); opacity: 0; }
    5%  { transform: translateY(0) rotateX(0deg); opacity: 1; }
    20% { transform: translateY(0) rotateX(0deg); opacity: 1; }
    25% { transform: translateY(80%) rotateX(-90deg); opacity: 0; }
    100%{ transform: translateY(80%) rotateX(-90deg); opacity: 0; }
}

/*Mapa*/
.canton {
    background-color: black;
    color: #FFF;
    padding: 60px 0 60px;
}

.canton-box {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(25%);
    filter: blur(10px);
    transition: all 0.7s;
}

.canton-box h2 {
    color: #FFF;
    font-size: 56px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 30px;
    background: linear-gradient(90deg, #FFF, #E8821A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    /* Restaurado */
}

.mapa {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.canton-box .mapa ul {
    display: flex;
    width: 280px;
    height: 600px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    /* Espaciado interno controlado por los items */
    margin-left: 2.5rem;
    list-style: none;
    background: rgba(0, 0, 0, 0.4);
    /* Ajustado a cristal oscuro para consistencia */
    backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    overflow-y: auto;
    scrollbar-width: none;
    /* Ocultar scrollbar en Firefox */
}

.canton-box .mapa ul::-webkit-scrollbar {
    display: none;
    /* Ocultar scrollbar en Chrome/Safari */
}

.canton-list li {
    width: 100%;
}

.canton-box .mapa ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    padding: 12px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.canton-list a:hover,
.canton-list a.highlight-list {
    color: #E8821A !important;
    background: rgba(240, 171, 8, 0.1);
    padding-left: 35px;
    text-shadow: 0 0 10px rgba(240, 171, 8, 0.3);
}

.canton-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    font-size: 11px;
    margin-right: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.canton-list a:hover .canton-num,
.canton-list a.highlight-list .canton-num {
    background: #E8821A;
    color: #000;
    border-color: #E8821A;
    box-shadow: 0 0 15px rgba(240, 171, 8, 0.3);
    transform: translateY(-1px);
    /* Elevación sutil en lugar de rotación */
}

/* WEB-01: Estilos Mapa Interactivo */
.mapa-container {
    position: relative;
    width: 600px;
    height: 600px;
    border-radius: 20px;
    padding: 0;
    margin: 0;
}

#mapa-loja {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.canton-path {
    fill: rgba(240, 171, 8, 0);
    /* Totalmente invisible */
    stroke: rgba(240, 171, 8, 0.3);
    /* Círculo muy tenue */
    stroke-width: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.canton-path:hover,
.canton-path.active-hotspot {
    fill: rgba(240, 171, 8, 0.4);
    /* Resaltado al pasar el mouse */
    stroke: #E8821A;
    stroke-width: 3;
    filter: drop-shadow(0 0 10px rgba(240, 171, 8, 0.8));
}

.canton-list a.highlight-list {
    color: #E8821A !important;
    font-weight: 700;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.canton-list a {
    transition: all 0.3s ease;
    display: inline-block;
}

.canton-path.active {
    fill: #E8821A;
    stroke: #fff;
}

/* Tooltip Premium */
.map-tooltip {
    position: fixed;
    /* Posición fija respecto a la ventana */
    display: none;
    background: rgba(0, 0, 0, 0.4);
    /* Fondo cristal oscuro semi-transparente */
    backdrop-filter: blur(15px);
    /* Efecto de desenfoque premium */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Borde sutil de cristal */
    padding: 20px;
    border-radius: 18px;
    color: white;
    font-size: 14px;
    z-index: 100000;
    /* Prioridad máxima absoluta */
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Sombra y brillo interno */
    min-width: 240px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tooltip-header {
    font-weight: 700;
    font-size: 18px;
    color: #E8821A;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Separador neutro sutil */
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tooltip-row {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}

.tooltip-label {
    color: rgba(255, 255, 255, 0.6);
    /* Etiquetas más tenues */
    font-weight: 400;
}

.tooltip-value {
    font-weight: 600;
}

/*Services*/
.servicios {
    background-color: #FFF;
    color: #FFF;
    padding: 2rem 0;
}

.card-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2rem;
}

.servicios img {
    /*height: auto;*/
    max-width: 100%;
    filter: brightness(45%);
}

.vrtour {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20%);
    filter: blur(5px);
    transition: all 0.7s;
}

.cards {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    width: 100%;
}

.card {
    width: initial;
    opacity: 0;
    transform: translateX(-20%);
    filter: blur(5px);
    transition: all 0.6s;
}

.card:nth-child(1) {
    transition-delay: 50ms;
}

.card:nth-child(2) {
    transition-delay: 100ms;
}

.card:nth-child(3) {
    transition-delay: 50ms;
}

.card:nth-child(4) {
    transition-delay: 100ms;
}

.card img {
    width: 100%;
}

.card {
    position: relative;
}

.topLeft {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 18px;
    padding: 80px 104px 96px 41px;
}

.topLeft p {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
}

.card-container h5 {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.card-container p {
    font-size: 16px;
}

.card-container button {
    color: black;
    padding: 1rem 2rem;
    border-radius: 4px;
    background: #FFF;
    backdrop-filter: blur(40px);
    cursor: pointer;
    border: none;
}

.card-container button:hover {
    background-color: #E8821A;
    transition: 0.4s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* BREAKPOINTS */
@media screen and (max-width: 575px) {
    .content {
        justify-content: center;
        padding: 10rem 0px 5rem;
    }

    .content article {
        align-items: center;
    }

    .content article h1 {
        font-size: 2.75rem;
        text-align: center;
    }

    .content article p {
        font-size: .938rem;
    }

    .content article .btn-question {
        font-size: .938rem;

    }

    .canton .mapa {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .canton-box h2 {
        font-size: 1.5rem;
        height: 0;
    }

    .canton-box .mapa {
        display: block;
        margin: 0 auto;
    }

    .mapa-container {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 0 auto 20px;
        padding: 10px;
    }

    #mapa-loja {
        height: 300px;
    }

    .canton-box .mapa ul {
        margin-left: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 0.5rem;
        row-gap: 0;
        padding: 10px 5px;
    }

    .canton-box .mapa ul a {
        display: flex;
        align-items: center;
        padding: 10px 12px;
        font-size: 11px;
        letter-spacing: 1px;
        width: 100%;
        white-space: normal;
        /* Permitir que el nombre rompa pero alineado */
    }

    .canton-list a:hover,
    .canton-list a.highlight-list {
        padding-left: 15px;
        /* Menos desplazamiento en móvil */
    }


    .card-container {
        justify-content: center;
        row-gap: initial;
    }

    .cards {
        display: initial;
        /* O cualquier otro valor que desees aplicar para la responsividad */
        grid-template-rows: initial;
        grid-template-columns: initial;
        gap: initial;
        width: initial;
    }

    .vrtour,
    .card {
        width: 300px;
        padding: 0 0 2rem;
    }

    .vrtour .topLeft {
        justify-content: initial;
    }

    .topLeft {
        top: 0px;
        left: 0px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 300px;
    }

    .vrtour .topLeft p,
    .card .topLeft p {
        font-size: .938rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: left;
    }

    .vrtour img {
        height: 300px;
    }

    .card-container img {
        object-fit: cover;
        object-position: center;
        border-radius: .5rem;
        width: 300px;
        min-width: 300px;
        height: 300px;
    }

    .card-container button {
        padding: .5rem 1rem;
    }

}

@media screen and (min-width: 576px) and (max-width: 1151px) {
    .content {
        padding: 10rem 0px 5rem;
        justify-content: center;
    }

    .content article {
        align-items: center;
    }

    .content article h1 {
        font-size: 3.75rem;
        text-align: center;
    }

    .content article p {
        font-size: .938rem;
    }

    .content article .btn-question {
        font-size: .938rem;

    }

    .canton-box h2 {
        font-size: 1.5rem;
        height: 0;
    }

    .canton-box .mapa {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .canton-box .mapa img {
        height: 500px;
        width: 500px;
    }

    .canton-box .mapa ul {
        display: grid;
        grid-template-columns: repeat(3, max-content);
        column-gap: 2rem;
        margin-left: 0px;
        width: initial;
    }

    .canton-box .mapa ul a {
        font-size: initial;
    }

    .card-container {
        row-gap: 2rem;
        justify-content: center;
    }

    .vrtour,
    .card {
        width: 300px;
    }

    .topLeft {
        top: 0px;
        left: 0px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 300px;
    }

    .vrtour .topLeft p,
    .card .topLeft p {
        font-size: .938rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: left;
    }

    .vrtour img {
        height: 300px;
    }

    .card-container img {
        object-fit: cover;
        object-position: center;
        border-radius: .5rem;
        width: 300px;
        height: 300px;
    }

    .card-container button {
        padding: .5rem 1rem;
    }
}

@media screen and (min-width:768px) and (max-width: 1151px) {
    .canton-box .mapa {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .canton-box .mapa ul {
        grid-template-columns: repeat(4, max-content);
        width: initial;
    }

    .vrtour {
        width: 100%;
    }

    .vrtour img {
        width: 100%;
        height: 240px;
    }

    .vrtour .topLeft {
        justify-content: initial;
    }

    .cards {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        width: 100%;
    }

    .card {
        width: initial;
    }

    .card img {
        width: 100%;
    }

}

/* ==========================================
   Estilos de Sección "Conoce Loja" (RF-01)
   ========================================== */
.loja-home-info {
    background: radial-gradient(circle at top, #140d2b 0%, #06040d 100%);
    padding: 80px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.loja-info-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.loja-info-header {
    text-align: center;
}

.loja-info-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    margin-top: 8px;
    background: linear-gradient(90deg, #fff, #E8821A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loja-info-header .header-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #E8821A, #7C5CFC);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Grilla de Altitud y Clima */
.loja-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.loja-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.loja-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 130, 26, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.loja-card:hover::before {
    opacity: 1;
}

.loja-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(232, 130, 26, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 36px;
    color: #E8821A;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 130, 26, 0.08);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(232, 130, 26, 0.15);
    transition: all 0.4s ease;
}

.loja-card:hover .card-icon {
    color: #fff;
    background: #E8821A;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(232, 130, 26, 0.4);
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-content .value {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.card-content .desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Sección de Transportes */
.transporte-section {
    width: 100%;
    margin-top: 10px;
}

.transporte-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.transporte-title i {
    color: #7C5CFC;
}

.transporte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    width: 100%;
}

.transporte-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.transporte-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7C5CFC, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.transporte-item:hover::before {
    opacity: 1;
}

.transporte-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(124, 92, 252, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.transporte-icon {
    font-size: 30px;
    color: #7C5CFC;
    margin-bottom: 20px;
    background: rgba(124, 92, 252, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 92, 252, 0.15);
    transition: all 0.4s ease;
}

.transporte-item:hover .transporte-icon {
    background: #7C5CFC;
    color: #fff;
    transform: rotateY(180deg);
}

.transporte-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.transporte-item p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Área de Acción / Botón */
.loja-action-area {
    margin-top: 10px;
}

.btn-que-hacer {
    background: linear-gradient(135deg, #E8821A 0%, #d36e0e 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(232, 130, 26, 0.35);
    letter-spacing: 0.5px;
}

.btn-que-hacer:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(232, 130, 26, 0.55);
    background: linear-gradient(135deg, #f3922b 0%, #E8821A 100%);
}

.btn-que-hacer i {
    transition: transform 0.3s ease;
}

.btn-que-hacer:hover i {
    transform: translateX(6px);
}

/* Ajuste de padding en sección canton para coherencia visual */
.canton {
    padding-bottom: 80px !important;
}

/* Media Queries para Responsividad */
@media screen and (max-width: 991px) {
    .transporte-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .loja-info-header h2 {
        font-size: 38px;
    }
}

@media screen and (max-width: 767px) {
    .loja-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .loja-card {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .loja-info-header h2 {
        font-size: 32px;
    }

    .btn-que-hacer {
        padding: 16px 36px;
        font-size: 15px;
    }
}

/* ==========================================
   VR Tour Corrections
   ========================================== */

/* Correcciones de la tarjeta Tour Virtual (.vrtour) en Escritorio */
@media screen and (min-width: 1151px) {
    .card-container {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 4rem;
        flex-wrap: nowrap;
    }
    
    .vrtour {
        position: relative !important;
        flex: 1;
        width: 50%;
        margin: 0;
        display: flex;
    }
    
    .vrtour img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 12px;
    }
    
    .cards {
        flex: 1;
        width: 50%;
    }
}

.servicios .card {
    border-radius: 12px;
    overflow: hidden;
}

.servicios .card img {
    display: block;
}