/* ESTILOS ESPECÍFICOS PARA PÁGINA DE TAPETE YOGA tapete-yoga.css */

/* ======= VARIABLES DE COLOR ======= */
:root {
    --everest-blue: #002c5b;
    --everest-red: #c40000;
    --everest-white: #ffffff;
    --everest-black: #000000;
    --everest-green: #28a745;
    --yoga-primary: #4CAF50;
    --yoga-secondary: #8BC34A;
    --yoga-light: #E8F5E8;
}

/* ======= FONTS ======= */
body {
    font-family: 'Roboto', sans-serif !important;
}

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

/* ======= HERO SECTION ======= */
.hero-tapete-yoga {
    background: linear-gradient(rgba(0, 44, 91, 0.3), rgba(0, 44, 91, 0.5)), 
                url('../../images/tapetes-de-hule/hero-tapete-yoga.jpg') center/cover no-repeat;
    min-height: 60vh;
    padding: 100px 0 80px;
}

.hero-tapete-yoga h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-tapete-yoga .lead {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.btn-hero:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    border: 2px solid #c40000;
}

/* ======= SECCIÓN USO ======= */
.uso-tapete-yoga {
    background: var(--yoga-light);
    border-radius: 15px;
}

.uso-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.uso-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.uso-icon {
    background: var(--yoga-primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.uso-info h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--everest-blue);
}

.uso-info p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* ======= GUÍA DE ESPESORES ======= */
.guia-espesores {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
}

.espesor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.espesor-recomendado {
    border-color: var(--yoga-primary);
    position: relative;
}

.espesor-recomendado::before {
    content: "⭐ MÁS POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yoga-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.espesor-header {
    background: var(--everest-blue);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.espesor-header h4 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.espesor-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.espesor-badge.ligero {
    background: #6c757d;
    color: white;
}

.espesor-badge.recomendado {
    background: var(--yoga-primary);
    color: white;
}

.espesor-badge.premium {
    background: #ffc107;
    color: #212529;
}

.espesor-content {
    padding: 25px 20px;
}

.espesor-content h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--everest-blue);
    text-align: center;
}

.espesor-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.espesor-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.espesor-content li:before {
    content: "✓";
    color: var(--yoga-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.espesor-nota {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* ======= CUIDADO Y MANTENIMIENTO ======= */
.cuidado-content {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.cuidado-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cuidado-item:last-child {
    margin-bottom: 0;
}

.cuidado-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--everest-blue);
}

.cuidado-item p {
    margin: 0;
    line-height: 1.5;
}

/* ======= LISTAS ======= */
.caracteristicas-tapete-yoga ul {
    list-style: none;
    padding-left: 0;
}

.caracteristicas-tapete-yoga li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.caracteristicas-tapete-yoga li:before {
    content: "✓";
    color: var(--everest-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ======= BENEFICIOS ======= */
.beneficio-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

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

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

.beneficio-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ======= TABLAS ======= */
.tabla-datos {
    margin-bottom: 2rem;
}

.tabla-datos caption {
    font-size: 1.2rem;
    font-weight: 600;
    caption-side: top;
    padding: 10px 0;
}

.tabla-datos th {
    background-color: var(--everest-blue);
    color: var(--everest-white);
    font-weight: 600;
    border: 1px solid #dee2e6;
}

.tabla-datos td {
    border: 1px solid #dee2e6;
}

/* ======= SECCIONES GENERALES ======= */
.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--everest-red);
}

.bg-blue {
    background-color: var(--everest-blue) !important;
}

.text-blue {
    color: var(--everest-blue) !important;
}

.text-red {
    color: var(--everest-red) !important;
}

.text-white {
    color: var(--everest-white) !important;
}

.text-black {
    color: var(--everest-black) !important;
}

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

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

.separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--everest-blue), transparent);
    margin: 2rem 0;
}

/* ======= SECCIÓN INVITACIÓN A CONTACTO ======= */
.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 ======= */
@media (max-width: 768px) {
    .hero-tapete-yoga {
        min-height: 50vh;
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-tapete-yoga h1 {
        font-size: 2.2rem;
    }
    
    .hero-tapete-yoga .lead {
        font-size: 1.2rem;
    }
    
    .small-word {
        font-size: 2rem;
    }
    
    .small-word2 {
        font-size: 1.6rem;
    }
    
    .beneficio-item {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficio-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .uso-item {
        flex-direction: column;
        text-align: center;
    }
    
    .uso-icon {
        margin: 0 auto 15px;
    }
    
    .espesor-card {
        margin-bottom: 30px;
    }
    
    .espesor-recomendado::before {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

@media (max-width: 576px) {
    .hero-tapete-yoga h1 {
        font-size: 1.8rem;
    }
    
    .tabla-datos {
        font-size: 0.9rem;
    }
    
    .espesor-header h4 {
        font-size: 1.5rem;
    }
    
    .cuidado-item {
        padding: 15px;
    }
}