body{
    background: linear-gradient(135deg, #f4f4f4, #e9ecef);
    font-family: Arial, Verdana, sans-serif;
    margin: 20px;
    color: #333;
}

/* TABLA PRINCIPAL */
table{
    width: 1100px;
    margin: auto;
    background-color: #ffffff;
    border: none;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CABECERA */
.cabecera{
    background: linear-gradient(135deg, #b31217, #e52d27);
    height: 140px;
    color: white;
    font-size: 55px;
    font-weight: bold;

    display: table-cell;
    vertical-align: middle;
    text-align: center;

    border-bottom: 4px solid #111;
    letter-spacing: 1px;
}

/* SUBTITULO */
.subtitulo{
    background-color: #111;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #e52d27;
    letter-spacing: 1px;
}

/* MENU */
.menu{
    background-color: #1c1c1c;
    text-align: center;
    padding: 20px;
}

.menu a{
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    padding: 12px 22px;
    margin: 8px;
    border: 2px solid transparent;
    border-radius: 30px;
    background: #111;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu a:hover{
    background: #e52d27;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(229,45,39,0.4);
}

/* CONTENIDO */
.contenido{
    width: 750px;
    padding: 35px;
    vertical-align: top;
}

/* LATERAL */
.lateral{
    width: 300px;
    padding: 25px;
    vertical-align: top;
    background: #f9f9f9;
    border-left: 3px solid #eee;
    text-align: center;
}

/* TITULOS */
h2{
    font-size: 28px;
    color: #111;
    border-left: 8px solid #e52d27;
    border-bottom: 2px solid #e52d27;
    padding: 10px 15px;
    margin-top: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* TEXTO */
p{
    font-size: 18px;
    line-height: 28px;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    background: #fafafa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

/* PRODUCTOS */
.producto{
    width: 43%;
    border: 1px solid #eee;
    background-color: white;
    padding: 20px;
    margin-top: 25px;
    margin-right: 15px;
    text-align: center;
    float: left;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.producto:hover{
    transform: translateY(-5px);
}

/* IMAGENES GENERALES (ARREGLO + MAS GRANDES) */
img{
    width: 350px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* NOMBRE PRODUCTO */
.producto h3{
    font-size: 22px;
    color: #111;
    margin-top: 15px;
    border-bottom: 2px solid #e52d27;
    padding-bottom: 10px;
}

/* PRECIO */
.precio{
    color: #e52d27;
    font-size: 26px;
    font-weight: bold;
    background: #fff0f0;
    padding: 10px;
    border-radius: 12px;
    margin: 10px 0;
    border: 1px solid #ffd6d6;
}

/* BOTON */
.boton{
    background: #111;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.boton:hover{
    background: #e52d27;
    box-shadow: 0 6px 15px rgba(229,45,39,0.4);
    transform: translateY(-3px);
}

/* SLIDER */
.slideshow-container{
    width: 1100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* FIX SLIDER (NO DEFORMACION) */
.slideshow-container img,
.mySlides img{
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background-color: #000;
    display: block;
}

/* TEXTO SLIDER */
.text{
    color: white;
    font-size: 20px;
    font-weight: bold;
    background: rgba(229,45,39,0.9);
    padding: 12px 15px;
    position: absolute;
    bottom: 25px;
    left: 25px;
    border-radius: 12px;
}

/* NUMERO SLIDER */
.numbertext{
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 8px 12px;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 8px;
    font-size: 14px;
}

/* DOTS */
.dot{
    height: 14px;
    width: 14px;
    background-color: #ccc;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.active,
.dot:hover{
    background-color: #e52d27;
    transform: scale(1.2);
}

/* TABLA SECUNDARIA */
.tabla2{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 18px;
}

.tabla2 td{
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
}

/* LATERAL IMAGENES */
.lateral img{
    width: 100%;
    height: 140px;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* TEXTO LATERAL */
.lateral p{
    font-weight: bold;
    color: #111;
    font-size: 16px;
}

/* PIE */
.pie{
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    border-top: 4px solid #e52d27;
}

/* CLEAR */
.clear{
    clear: both;
}