/* =========================================
   GUÍA DE TALLES - ESTILO KENDRA
   ========================================= */

.guia-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Marcellus', serif; /* Tu fuente principal */
    color: #333;
}

/* Encabezado */
.guia-header {
    text-align: center;
    margin-bottom: 50px;
}

.guia-header h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.divider-small {
    width: 60px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
}

/* Tabla */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 60px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.size-table th {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}

.size-table td {
    padding: 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid #f9f9f9; /* Líneas muy sutiles como en Kendra */
    color: #555;
}

/* Efecto hover en las filas para mejor lectura */
.size-table tbody tr:hover {
    background-color: #fcfcfc;
}

/* Sección Cómo Medir */
.measure-instructions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.measure-content {
    display: flex;
    align-items: center; /* Centrado verticalmente */
    gap: 50px;
    flex-wrap: wrap;
}

.measure-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.measure-image img {
    max-width: 100%;
    height: auto;
}

.measure-text {
    flex: 2;
    min-width: 300px;
    font-family: 'Montserrat', sans-serif; /* Fuente secundaria para lectura */
}

.measure-text h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    position: relative;
    padding-left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .guia-header h1 { font-size: 2rem; }
    .measure-content { flex-direction: column; text-align: center; }
    .measure-text { text-align: left; }
}