/* css/pages/hule-faldon.css */
body {
    font-family: 'Roboto', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif !important;
}

/* ======= HERO HULE FALDÓN ======= */
.hero-hule-faldon {
    background: linear-gradient(rgba(0, 44, 91, 0.3), rgba(0, 44, 91, 0.5)), 
                url('../../images/hule-faldon/hero-rollos-y-placas.jpg') center/cover no-repeat;
    min-height: 60vh;
    padding: 100px 0 80px;
    position: relative;
}

.hero-hule-faldon .btn-hero {
    background-color: #c40000;
    border: 2px solid #c40000;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-hule-faldon .btn-hero:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ======= ESTILOS DE LA ESTRUCTURA EXISTENTE ======= */
.page_header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #002c5b;
}

.page_header h1,
.page_header h2,
.page_header h3 {
    color: #002c5b;
    font-weight: 700;
    margin: 0;
}

.small-word {
    font-size: 2.5rem;
    font-weight: 700;
}

.small-word3 {
    font-size: 2rem;
    font-weight: 700;
}

.small-word2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.text-azul {
    color: #002c5b !important;
}

/* Secciones */
.introduccion-faldon,
.faldon-alta-abrasion,
.faldon-ignifugo,
.aplicaciones-faldon,
.beneficios-faldon {
    padding: 80px 0;
}

/* Imágenes */
.item_img img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.item_img img:hover {
    transform: scale(1.02);
}

/* Tablas */
.tabla-datos {
    margin-bottom: 30px;
    border: 2px solid #dee2e6;
}

.tabla-datos caption {
    caption-side: top;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-bottom: none;
}

.tabla-datos th {
    background-color: #002c5b;
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: center;
}

.tabla-datos td {
    padding: 12px 15px;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 44, 91, 0.05);
}

.table-bordered {
    border: 2px solid #dee2e6;
}

/* Separadores */
.separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, #002c5b, transparent);
    margin: 30px 0;
}

.mb-4-custom {
    margin-bottom: 2rem !important;
}

/* ======= NUEVOS ESTILOS MEJORADOS ======= */
.section-title {
    color: #002c5b;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c40000;
}

/* Tarjetas de aplicaciones */
.aplicacion-card {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.aplicacion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.aplicacion-icon {
    width: 70px;
    height: 70px;
    background: #002c5b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.aplicacion-card h4 {
    color: #002c5b;
    margin-bottom: 15px;
    font-weight: 600;
}

.aplicacion-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Beneficios */
.beneficio-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #002c5b;
}

.beneficio-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.beneficio-content h5 {
    color: #002c5b;
    font-weight: 600;
    margin-bottom: 8px;
}

.beneficio-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ======= SECCIÓN INVITACIÓN A CONTACTO ======= */
.invitacion-contacto-section {
    padding: 60px 0;
    background: #002c5b !important;
}

.invitacion-contacto-section h2 {
    font-weight: 700;
}

.invitacion-contacto-section .btn-light {
    background: white;
    color: #002c5b;
    border: 2px solid white;
    padding: 12px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.invitacion-contacto-section .btn-light:hover {
    background: #c40000;
    color: white;
    transform: translateY(-2px);
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 768px) {
    .hero-hule-faldon {
        min-height: 40vh;
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .introduccion-faldon,
    .faldon-alta-abrasion,
    .faldon-ignifugo,
    .aplicaciones-faldon,
    .beneficios-faldon {
        padding: 60px 0;
    }
    
    .small-word {
        font-size: 2rem;
    }
    
    .small-word3 {
        font-size: 1.6rem;
    }
    
    .small-word2 {
        font-size: 1.3rem;
    }
    
    .reverse-on-mobile {
        flex-direction: column-reverse;
    }
    
    .aplicacion-card {
        padding: 25px 15px;
    }
    
    .aplicacion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .beneficio-item {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficio-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-hule-faldon h1 {
        font-size: 2.2rem;
    }
    
    .page_header {
        margin-bottom: 20px;
    }
    
    .tabla-datos {
        font-size: 0.9rem;
    }
    
    .tabla-datos th,
    .tabla-datos td {
        padding: 8px 10px;
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .item_img img,
    .aplicacion-card,
    .btn-hero,
    .btn-light {
        transition: none;
    }
    
    .aplicacion-card:hover,
    .btn-hero:hover,
    .btn-light:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .tabla-datos {
        border: 2px solid #000;
    }
    
    .aplicacion-card,
    .beneficio-item {
        border: 1px solid #000;
    }
}