.elementor-53175 .elementor-element.elementor-element-80af835{--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;}/* Start of your custom CSS rules for html, class: .elementor-element-f72522a */ :root {
    --navy: #1a2b3c;
    --orange: #f39c12;
    --sand: #f9f7f2; /* Color arena muy suave para el fondo alterno */
    --text: #2c3e50;
}

.travesia-preparacion-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

/* Hero Moderno */
.travesia-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
}
.hero-image { flex: 1.5; border-radius: 20px; overflow: hidden; }
.hero-text { flex: 1; }
.travesia-hero h1 { font-size: 3.5rem; line-height: 1; color: var(--navy); }
.orange-text { color: var(--orange); }

/* Timeline de la Ruta */
.ruta-timeline {
    position: relative;
    padding: 60px 20px;
}

/* La línea naranja que une todo */
.ruta-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--orange);
    opacity: 0.3;
}

.hito {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 120px;
    position: relative;
}

.hito-reverse { flex-direction: row-reverse; }

.hito-content { flex: 1; position: relative; }
.hito-image { flex: 1; border-radius: 15px; overflow: hidden; box-shadow: 20px 20px 0px var(--sand); }

.hito-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
}

/* Ficha de Seguridad */
.ficha-seguridad {
    background: var(--navy);
    color: white;
    padding: 80px 40px;
    border-radius: 40px;
    margin: 40px 20px;
}

.ficha-header h2 { font-size: 2.5rem; color: var(--orange); }

.valoracion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.v-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--orange);
}

/* CTA Final Estilo Card Personal */
.campamento-dudas { padding: 80px 20px; }
.dudas-card {
    display: flex;
    background: var(--sand);
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
}
.dudas-img { flex: 1; }
.dudas-info { flex: 1.5; padding: 60px; }

.btn-travesia {
    display: inline-block;
    padding: 18px 40px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-weight: 800;
    border-radius: 5px;
    margin-top: 30px;
    transition: 0.3s;
}
.btn-travesia:hover { background: var(--orange); }





:root {
    --rio-navy: #0a141d;
    --rio-orange: #f39c12;
    --rio-cream: #fdfaf5; /* El color de fondo de tu imagen */
}

.campamento-dudas {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.dudas-card {
    background-color: var(--rio-cream);
    border-radius: 40px;
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 1. Contenedor de la imagen: Actúa como marco */
.dudas-img {
    flex: 1;
    height: 350px; /* Altura fija para controlar el zoom */
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

/* 2. El Teléfono: Zoom y Centrado */
.dudas-img img {
    width: 100%;
    height: 100%;
    /* CLAVE: object-fit cover + un zoom vía transform para aislar el tlf */
    object-fit: cover; 
    object-position: center;
    transform: scale(1.8); /* Ajusta este valor para acercarte más o menos al tlf */
    transition: transform 0.5s ease;
}

/* 3. Bloque de texto */
.dudas-info {
    flex: 1.2;
}

.dudas-info h2 {
    font-family: 'Inter', sans-serif; /* O tu fuente de títulos */
    color: var(--rio-navy);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1;
}

.dudas-info p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* 4. El Botón */
.btn-travesia {
    display: inline-block;
    background-color: var(--rio-navy);
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-travesia:hover {
    background-color: var(--rio-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
}

/* Responsive para que no se rompa en móvil */
@media (max-width: 850px) {
    .dudas-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .dudas-img {
        width: 100%;
        height: 250px;
    }
    .dudas-info h2 {
        font-size: 2rem;
    }
}












/* Móvil */
@media (max-width: 768px) {
    .travesia-hero, .hito, .hito-reverse, .dudas-card { flex-direction: column; text-align: center; }
    .ruta-timeline::before { display: none; }
}

.valoracion-especial h4{
    color: white;
} /* End of your custom CSS rules */