body
{
    margin: 0 auto;
    font-family: sans-serif;
    /* background-color: aquamarine; */
    background-color: rgb(220, 246, 249);
    max-width: 1012px;
}




/* Codigo para el menu principal */
header{
    width: 100%;
    background: #96d5ea;
}
#btn-menu{
    display: none;
}
header label {
    display: none;
    width: 30px;
    height: 30px;
    padding: 10px;
    border-right: 1px solid #FFF;
}
header label:hover {
    cursor: pointer;
    background: rgba(0,0,0,0.3);
}
 .menu ul{
     margin: 0;
     list-style: none;
     padding: 0;
     display: flex;
 }
 .menu li {
     border-right: 1px solid #FFF;
 }
.menu li:hover {
    background: rgba(0,0,0,0.3);
}
.menu li a {
    display: block;
    padding: 5px 20px;
    color: #FFF;
    text-decoration: none;
}
@media (max-width: 750px) {
    header label {
        display: block;
    }

    .menu {
        position: absolute;
        background: #9cc7d5;
        width: 40%;
        margin-left: -70%;
        transition: all 0.3s;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu li {
        border-top: 1px solid #FFF;
    }

    #btn-menu:checked ~ .menu {
        margin: 0;
    }
}




/* Codigo para en InputText de Buscar del menu principal */
.buscador {
    background-color: #FFF;
	padding: 4px;
	height: 20px;
	width: 170px;
}
input.buscar {
	border: 1px;
	width: 140px;
	position: relative;
	background: transparent;
	outline: none;
	bottom: 4px;
	padding: 2px;
}
input.image_buscar {
	width: 15px;
	border: 0px;
	position: relative;
	top:1px;
}





/* Codigo para pie de pagina */
.footer {
    width: 100%;
    background: #3488a4;
    box-sizing: border-box;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    min-height: 35px;
    border-radius: 6px 6px 6px 6px;
    bottom: 0;
}
.footer a{
    text-decoration: none;
    color: #FFF;
}
.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
    display: inline-block;
    vertical-align: top;
    padding: 0 15px;
    font-size: 9px;
    color: #FFF;
    width: 250px;
}
.footer i {   
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin: 5px 10px;
    vertical-align: middle;
    background: rgba(14, 13, 13, 0.527);
    font-size: 9px;
}
.pleft {
    text-align: left;
    align-self: flex-start;
    padding: 0;
    margin: 0;
}
.pjust{
    text-align: justify;
    padding: 0;
    margin: 0;
}
.footer h3{
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    margin: 0;
    padding: 8px;
}


/*Codigo del cuerpo*/
.cuerpo{
    width: 100%;
    background-color: #FFF;
    padding: 3px;
    margin-top: 6px;
    margin-left: 6px;
    margin-right: 10px;
    margin-bottom: 15px;
    min-height: calc(100vh - 120px);
    box-shadow: 3px 4px 4px 2px rgba(0, 0, 0, 0.3);
    border-radius: 6px 6px 6px 6px;
}
.cuerpobg{
    display: flex;
    background-color: rgba(243, 234, 234, 0.685);
    margin: 0;
    padding: 0;
}


/* Codigo para el encabezado de pagina */
.logomnu{
    max-width: 229px;
    border-radius: 4px 4px  4px 4px;
    margin: 3px;
}
.encabezado{
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 0;
    background: #3488a4;
    color: #FFF;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    border-radius: 6px 6px  6px 6px;
}
.encabezado .encaizq{
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0;
}
.encabezado .encader{
    display: inline-block;
    width: 90%;
    padding: 0;
    margin-right: 5px;
    text-align: right;   
}
.btnBase2{
    background-color:#ffdc57;
	border:1px solid #b25a14;
	border-radius:0 4px  0 4px;
	font-weight:bold;
    font-size: 10px;
	color:#773b00;
	padding:2px;
    margin-top: 16px;
    margin-right: 3px;
}




.container{
    text-align: center;
}
.productos {
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
}

.producto {
    width: 300px;
    margin-top: 20px;
    min-height: 150px;
    max-height: 450px;
}

.producto img {
    /*width: 180px;
    height: 200px;*/
    height: auto;
    min-height: 150px;
    max-height: 150px;
    object-fit: cover;
}

.producto .detalle {
    padding: 5px;
}

.producto .contenedor_producto {
    background-color: white;
    width: 80%;
    margin: auto;
    border-radius: 6px 6px  6px 6px;
    box-shadow: 3px 4px 4px 2px rgba(0, 0, 0, 0.3);
}



.container2{
    text-align: center;
}
.productos2 {
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
}

.producto2 {
    width: 450px;
    margin-top: 20px;
}

.producto2 img {
    /*width: 180px;
    height: 200px;*/
    height: auto;
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
}

.producto2 .detalle2 {
    padding: 8px;
    text-align: left;
}

.producto2 .contenedor_producto2 {
    background-color: white;
    width: 80%;
    margin: auto;
    border-radius: 6px 6px  6px 6px;
    box-shadow: 3px 4px 4px 2px rgba(0, 0, 0, 0.3);
}

.instagram-container {
    width: 100%;       /* Ocupa todo el ancho disponible */
    max-width: 300px;  /* Ancho máximo para pantallas grandes */
    margin: 0 auto;    /* Centra el contenedor */
    overflow: hidden;  /* Evita desbordamientos */

    width: 100%;       /* O el ancho específico que desees */
    max-width: 260px;  /* Ajusta el tamaño máximo del post */
    max-height: 450px;
    margin: 0 auto;
    overflow-x: auto;  /* Scroll horizontal si es necesario */
    overflow-y: auto; /* Ocultar scroll vertical si no aplica */

}

/* Fuerza al iframe de Instagram a adaptarse */
.instagram-container iframe {
    width: 100% !important;
    min-width: 100% !important;
}



/* Definicion del carrusel */
.containcarru {
    background-color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
    width: 80%;             /* Ancho */
    border: 1px solid #000;  /* Visualización */
    border-radius: 6px 6px  6px 6px;
    box-shadow: 3px 4px 4px 2px rgba(0, 0, 0, 0.3);
    min-height: 150px;
    max-height: 350px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre el área sin deformarse */
    object-position: center; /* Centra la imagen */
}


.separador {
    background-color: white;
    width: 100%;
    margin: auto;
    min-height: 20px;
    max-height: 40px;
}

.contenedor-iframe {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.logiframe {
    width: 360px;
    height: 500px;
    border: 2px solid #007bff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}