/* ==========================================================================
   PÁGINA: RESTAURACIÓN DE CABINAS
   ========================================================================== */

/* --- HERO SECTION --- */
.hero-restauracion {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Capa de overlay oscuro */
.hero-restauracion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 46, 91, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-restauracion .container {
    position: relative;
    z-index: 2;
}

/* Imagen de fondo del hero (se aplica desde la vista) */
.hero-restauracion .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Título principal */
.hero-restauracion .hero-title {
    font-family: "Open Sauce", sans-serif !important;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

/* Texto descriptivo con línea decorativa izquierda */
.hero-restauracion .hero-description {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E2E8F0;
    max-width: 650px;
    margin-bottom: 2rem;
}

/* Botón CTA estilo outline */
.hero-restauracion .btn-hero-cta {
    background-color: transparent;
    color: #00A4C5;
    font-family: "Open Sauce", sans-serif !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 8px;
    border: 2px solid #00A4C5;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(0, 164, 197, 0);
}

.hero-restauracion .btn-hero-cta:hover {
    background-color: #00A4C5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 164, 197, 0.4);
}

/* Indicadores de carrusel (dots) */
.hero-restauracion .carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-restauracion .carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-restauracion .carousel-dots .dot.active {
    background-color: #00A4C5;
    width: 30px;
    border-radius: 6px;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .hero-restauracion {
        min-height: 420px;
        padding: 60px 0;
    }
    
    .hero-restauracion .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-restauracion .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-restauracion {
        min-height: 380px;
        padding: 40px 0;
    }
    
    .hero-restauracion .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-restauracion .hero-description {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    
    .hero-restauracion .btn-hero-cta {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   SECCIÓN: PROCESO DE RENOVACIÓN INTEGRAL (CENTRADO Y ZIGZAG)
   ========================================================================== */

.proceso-renovacion-section {
    position: relative;
    padding: 80px 0;
    background-color: #F6FAFD;
    overflow-x: hidden;
}

.proceso-main-title {
    font-family: 'OpenOpen-Sauce-One-ExtraBold', sans-serif !important;
    font-weight: 700;
    font-size: 2.5rem;
    color: #0E2E5B;
    margin-bottom: 15px;
    text-align: center;
}

.proceso-main-subtitle {
    font-family: "Raleway", sans-serif;
    font-size: 1.05rem;
    color: #556987;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.proceso-zigzag-container {
    max-width: 900px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center; /* Centra el bloque general en la pantalla */
}

/* Fila base */
.proceso-row {
    display: flex;
    align-items: center;
    width: fit-content; /* Se ajusta al contenido para permitir el centrado perfecto */
}

/* ==========================================================================
   ZIGZAG SIMÉTRICO Y CENTRADO
   ========================================================================== */

/* Pasos Pares (02, 04): Ligeramente desplazados a la izquierda */
.proceso-row.step-even {
    margin-left: -80px; 
}

/* Pasos Impares (01, 03, 05): Ligeramente desplazados a la derecha */
.proceso-row.step-odd {
    margin-left: 80px; 
}

/* ========================================================================== */

.proceso-graphic {
    flex-shrink: 0;
}

.proceso-graphic img {
    height: 75px;
    width: auto;
    display: block;
}

/* Control de Ancho de Texto (2 líneas en título, 3 líneas en descripción) */
.proceso-content {
    padding-left: 25px;
    max-width: 330px; 
}

.proceso-step-title {
    font-family: "Open Sauce", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0E2E5B;
    margin-bottom: 6px;
    line-height: 1.3;
}

.proceso-step-desc {
    font-family: "Raleway", sans-serif;
    font-size: 0.9rem;
    color: #556987;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MÓVILES Y TABLETS)
   ========================================================================== */
@media (max-width: 992px) {
    .proceso-row,
    .proceso-row.step-odd,
    .proceso-row.step-even {
        margin-left: 0 !important;
        flex-direction: column;
        align-items: flex-start;
        width: 100% !important;
    }

    .proceso-zigzag-container {
        align-items: stretch;
        padding: 0 15px;
    }

    .proceso-graphic {
        margin-bottom: 12px;
    }

    .proceso-graphic img {
        height: 60px;
    }

    .proceso-content {
        padding-left: 0 !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   SECCIÓN: GALERÍA / CARRUSEL DE CABINAS (SIN SOMBRAS)
   ========================================================================== */

.galeria-restauracion-section {
    position: relative;
    padding: 30px 0;
    background-color: #F6FAFD;
    overflow: hidden;
}

.galeria-main-title {
    font-family: "Open Sauce", sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #0E2E5B;
    margin-bottom: 15px;
}

.galeria-main-subtitle {
    font-family: "Raleway", sans-serif;
    font-size: 1.05rem;
    color: #556987;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tarjeta Vertical sin sombras y con bordes limpios */
.galeria-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none; /* <--- Eliminamos completamente el sombreado gris inferior */
    transition: transform 0.3s ease;
    height: 420px; 
    margin: 5px;
}

.galeria-card:hover {
    transform: translateY(-5px);
}

.galeria-card img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   FLECHAS Y PUNTOS DE OWL CAROUSEL (ESPACIADO LIMPIO)
   ========================================================================== */
.galeria-owl-carousel .owl-nav {
    margin-top: 25px;
    text-align: center;
}

.galeria-owl-carousel .owl-nav button.owl-prev,
.galeria-owl-carousel .owl-nav button.owl-next {
    background: #ffffff !important;
    color: #0E2E5B !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(14, 46, 91, 0.1);
    font-size: 20px !important;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.galeria-owl-carousel .owl-nav button.owl-prev:hover,
.galeria-owl-carousel .owl-nav button.owl-next:hover {
    background: #0E2E5B !important;
    color: #ffffff !important;
}

.galeria-owl-carousel .owl-dots {
    margin-top: 30px; /* Mayor separación para que los puntos no invadan el área de las tarjetas */
    text-align: center;
}

.galeria-owl-carousel .owl-dots .owl-dot span {
    background: #556987 !important;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.galeria-owl-carousel .owl-dots .owl-dot.active span {
    background: #0E2E5B !important;
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}