/* ======== General (body y header) ======== */
/*body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #bccbd2;
    color: #222;
}
/* header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a202c;
    padding: 15px 40px;
    color: white;
    position: sticky;
    z-index: 1000;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
header .logo img {
    width: 80px;
}
header .logo {
    display: flex;
    align-items: center;
    gap: 15px; 
}
header .logo h2 {
    margin: 0; 
    font-size: 1.5em; 
} */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 600;
}
nav a:hover {
    background: #ff8c42;
}


main {
    padding: 30px 20px;
}

/* ======== ESTILOS DE PÁGINA DE PRODUCTO (NUEVO) ======== */
.breadcrumb {
    max-width: 1000px;
    margin: -15px auto 15px auto;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #1a202c;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #555;
}

.contenedor-producto {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff; /* Fondo blanco para la caja */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    /* Layout de 2 columnas */
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Columna de imagen más pequeña */
    gap: 35px;
}

.producto-imagen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.producto-info h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: #1a202c;
}

.producto-info .descripcion-corta {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.producto-info h3 {
    color: #1a202c;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-top: 25px;
}

.lista-specs {
    list-style: none;
    padding-left: 0;
    line-height: 1.9;
    font-size: 0.95rem;
}

.lista-specs li {
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
    display: flex;
}

.lista-specs li:last-child {
    border-bottom: none;
}

.lista-specs strong {
    display: inline-block;
    min-width: 160px; /* Alinea los valores */
    color: #333;
}


/* ======== FOOTER ======== */
footer {
    background: #1a202c;
    color: white;
    padding: 40px 20px;
}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: left;
}

footer h3 {
    color: #ff8c42;
}

footer a {
    color: #cbd5e0;
    text-decoration: none;
}
/* Las imágenes (íconos) de redes sociales  */
.redes img {
    width: 30px;
    margin: 0 5px;
}

/* El texto de copyright al final del footer */
.copy {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

