.elementor-30 .elementor-element.elementor-element-ae7e66a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:140px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* === ESTILOS GUÍA DE SUPERVIVENCIA === */

/* 1. TÍTULOS DE SECCIÓN */
h2.section-title {
    font-family: 'Oswald', sans-serif !important;
    color: white !important;
    text-transform: uppercase;
    font-size: 35px;
    text-shadow: 0 0 15px rgba(255, 0, 204, 0.4);
    margin-bottom: 30px;
    margin-top: 50px;
    border-left: 5px solid #ff00cc; /* Barra lateral rosa */
    padding-left: 15px;
}

/* 2. LA REJILLA (GRID) DE TARJETAS */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 3. LA TARJETA (HOLO-CARD) */
.card {
    background: rgba(20, 20, 30, 0.4); /* Cristal oscuro */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px); /* Flota al pasar el ratón */
    border-color: #00f2ea; /* Borde Cyan */
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.15);
}

/* 4. IMAGEN Y ETIQUETA */
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Recorta la foto para que encaje perfecta */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.distance-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #ff00cc, #aa00ff);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

/* 5. TEXTOS Y CONTENIDO */
.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Para que todas las tarjetas midan igual */
}

.card-title {
    color: #00f2ea; /* Cyan */
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-text {
    color: #dddddd;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* 6. BOTÓN DENTRO DE LA TARJETA */
.btn-action {
    text-align: center;
    text-decoration: none;
    padding: 10px 0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-family: 'Oswald';
    text-transform: uppercase;
    transition: 0.3s;
    background: rgba(255,255,255,0.05);
}

.btn-action:hover {
    background: #00f2ea;
    color: black;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.5);
}/* End custom CSS */