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

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

/* ======= HERO PISOS DE HULE ======= */
.hero-pisos-hule {
    background: linear-gradient(rgba(0, 44, 91, 0.2), rgba(0, 44, 91, 0.2)), 
                url('../../images/hero-pisos-hule-bg.jpg') center/cover no-repeat;
    min-height: 60vh;
    padding: 100px 0 80px;
    position: relative;
}

.hero-pisos-hule .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-pisos-hule .btn-hero:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ======= SECCIÓN INTRODUCCIÓN ======= */
.introduccion-pisos {
    padding: 80px 0;
}

.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;
}

.introduccion-content .lead {
    color: #c40000;
    font-weight: 600;
    font-size: 1.2rem;
}

.introduccion-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.introduccion-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 44, 91, 0.1), transparent);
    z-index: 1;
}

.introduccion-image img {
    transition: transform 0.5s ease;
}

.introduccion-image:hover img {
    transform: scale(1.05);
}

/* ======= SECCIÓN VENTAJAS ======= */
.ventajas-pisos-section {
    padding: 80px 0;
}

.ventaja-card {
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.ventaja-card:hover {
    transform: translateY(-10px);
    border-top-color: #c40000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ventaja-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #002c5b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

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

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

/* ======= SECCIÓN TIPOS DE PISOS ======= */
.tipos-pisos-section {
    padding: 80px 0;
}

.tipo-piso-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.tipo-piso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tipo-piso-image {
    height: 250px;
    overflow: hidden;
}

.tipo-piso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tipo-piso-card:hover .tipo-piso-image img {
    transform: scale(1.1);
}

.tipo-piso-content {
    padding: 25px;
}

.tipo-piso-content h3 {
    color: #002c5b;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tipo-piso-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tipo-piso-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tipo-piso-content li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.tipo-piso-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c40000;
    font-weight: bold;
}

/* ======= SECCIÓN APLICACIONES ======= */
.aplicaciones-pisos-section {
    padding: 80px 0;
}

.aplicacion-piso-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-piso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

/* ======= SECCIÓN INSTALACIÓN ======= */
.instalacion-pisos-section {
    padding: 80px 0;
}

.instalacion-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instalacion-image img {
    transition: transform 0.5s ease;
}

.instalacion-image:hover img {
    transform: scale(1.05);
}

.proceso-instalacion {
    margin-top: 30px;
}

.proceso-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.proceso-paso {
    background: linear-gradient(135deg, #002c5b);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.proceso-content h5 {
    color: #002c5b;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

/* ======= SECCIÓN ESPECIFICACIONES ======= */
.especificaciones-pisos-section {
    padding: 80px 0;
}

.especificaciones-content h3 {
    color: #002c5b;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.especificaciones-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #c40000;
}

.table th {
    background-color: #002c5b;
    color: white;
    font-weight: 600;
}

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

/* ======= SECCIÓN MANTENIMIENTO ======= */
.mantenimiento-pisos-section {
    padding: 80px 0;
}

.mantenimiento-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%;
}

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

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

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

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

/* ======= SECCIÓN CERTIFICACIONES PISOS ======= */
.certificaciones-rollos-section {
    padding: 80px 0;
}

.certificacion-item {
    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%;
}

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

.certificacion-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.certificacion-item:hover img {
    filter: grayscale(0%);
}
/* ======= SECCIÓN INVITACIÓN A CONTACTO ======= */
.invitacion-contacto-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #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);
}
