html,
body{
width:100%;
max-width:100%;
overflow-x:hidden;
}

body,
p,
h1,
h2,
h3,
a,
ul,
li{
margin:0;
padding:0;
font-family:Arial,sans-serif;
box-sizing:border-box;
}

body{
background:#ffffff;
}

/* HEADER */

header{
background:#0E5A7A;
width:100%;
position:relative;
padding:10px 0;
overflow:visible;
z-index:9999;
}

/* MENU */

.menu-container{
max-width:1000px;
width:100%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
min-height:75px;
padding:0 15px;
box-sizing:border-box;
}

.menu-logo img{
max-width:260px;
height:auto;
display:block;
}

.menu-links{
list-style:none;
display:flex;
align-items:center;
gap:10px;
margin:0;
padding:0;
}

.menu-links li{
margin:0;
padding:0;
position:relative;
}

.menu-links li a{
display:block;
padding:12px 18px;
color:#ffffff;
text-decoration:none;
font-size:18px;
font-weight:600;
border-radius:8px;
transition:0.2s;
}

.menu-links li a:hover{
background:#eca023;
}

/* SUBMENU */

.has-submenu{
position:relative;
}

.submenu{
display:none;
position:absolute;
top:100%;
left:0;
background:#0E5A7A;
list-style:none;
min-width:320px;
z-index:99999;
border-radius:0 0 10px 10px;
overflow:visible;
box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

.submenu li a{
display:block;
padding:13px 18px;
color:#ffffff;
font-size:16px;
text-align:left;
white-space:nowrap;
}

.has-submenu:hover .submenu{
display:block;
}

.submenu li a:hover{
background:#eca023;
}

/* MENU HAMBURGUESA */

.menu-toggle{
display:none;
flex-direction:column;
justify-content:space-between;
width:68px;
height:48px;
cursor:pointer;
padding-left:20px;
padding-bottom:10px;
padding-top:10px;
}

.menu-toggle span{
display:block;
height:10px;
background:#fff;
border-radius:2px;
}

/* TITULOS */

h1,
h2{
text-align:center;
color:#007285;
margin:20px;
font-weight:700;
}

h1{
font-size:34px;
}

h2{
font-size:28px;
}

h3{
color:#007285;
font-size:22px;
margin-bottom:12px;
text-align:center;
}

/* ICONO UBICACION */

h3 i{
color:#d62828;
margin-right:8px;
}

/* TEXTO */

p{
font-size:18px;
color:#646464;
margin:0 20px 20px 20px;
text-align:justify;
line-height:1.5;
}

.section{
margin:40px 0;
}

.center-desktop{
max-width:1150px;
margin:auto;
text-align:center;
}

/* GRID */

.category-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
margin:35px 20px;
}

.category-card{
background:#ffffff;
border:1px solid #dddddd;
border-radius:14px;
padding:25px 18px;
box-shadow:0 3px 10px rgba(0,0,0,0.10);
text-align:center;
transition:transform 0.2s ease,
box-shadow 0.2s ease;
}

.category-card:hover{
transform:translateY(-4px);
box-shadow:0 6px 16px rgba(0,0,0,0.16);
}

.category-card h3{
margin-bottom:15px;
}

.category-card p{
text-align:center !important;
margin:0 0 20px 0;
font-size:17px;
color:#646464;
}

.category-card img{
width:250px;
height:250px;
object-fit:contain;
margin-bottom:15px;
}

/* BOTONES */



.boton-producto{
display:inline-block;
background:#0D8E30;
color:#ffffff !important;
font-size:18px;
font-weight:700;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
transition:0.2s;
}

.boton-producto:hover{
background:#087326;
}

.boton-whatsapp{
display:inline-block;
background:#007285 !important;
color:#ffffff !important;
font-size:18px;
font-weight:700;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
transition:0.2s;
}

.boton-whatsapp:hover{
background:#005d6b !important;
}

.boton-comprar{
display:inline-block;
background:#0D8E30;
color:#ffffff !important;
font-size:20px;
font-weight:700;
padding:14px 28px;
border-radius:10px;
text-decoration:none;
transition:0.2s;
}

.boton-comprar:hover{
background:#087326;
}

/* PRODUCTO INDIVIDUAL */

.producto{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
margin:40px 20px;
}

.producto-imagen{
text-align:center;
}

.producto-imagen img{
width:100%;
max-width:520px;
height:auto;
object-fit:contain;
}

.producto-info{
text-align:left;
}

.precio{
font-size:34px;
font-weight:700;
color:#0D8E30;
margin:20px 0;
}

.descripcion{
font-size:20px;
color:#646464;
line-height:1.7;
margin:0 0 25px 0;
text-align:left;
}

.botones{

display:flex;
justify-content:center;
align-items:center;
gap:22px;
margin-top:20px;
flex-wrap:wrap;

}

/* CARACTERISTICAS */

.caracteristicas{
max-width:1000px;
margin:40px auto;
padding:0 20px;
text-align:left;
}

.caracteristicas ul{
padding-left:25px;
}

.caracteristicas li{
font-size:19px;
color:#646464;
line-height:1.7;
margin-bottom:12px;
}

/* INFO EXTRA */

.info-extra{
background:#f5fafa;
border-left:5px solid #007285;
padding:30px;
margin:40px 20px;
border-radius:12px;
}

.info-extra p{
font-size:19px;
color:#646464;
line-height:1.7;
margin-bottom:16px;
text-align:justify;
}

/* BOTONES FIJOS */

.fixed-call{
position:fixed;
bottom:15px;
right:15px;
background:#007285;
color:white;
font-size:20px;
padding:12px 20px;
border-radius:50px;
text-decoration:none;
z-index:1000;
border:4px solid rgba(255,255,255,0.5);
}

.fixed-whatsapp{
position:fixed;
left:10px;
bottom:10px;
width:70px;
height:70px;
border-radius:50%;
z-index:999;
}

/* FOOTER */

footer{
background:#0a0a0a;
color:#ffffff;
padding:40px 20px;
margin-top:40px;
font-family:Arial,Helvetica,sans-serif;
}

.footer-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.footer-flex{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:40px;
margin-bottom:30px;
}

.footer-section{
min-width:250px;
}

footer h2{
color:#CCA300 !important;
}

footer h3{
color:#CCA300 !important;
}

footer p{
color:#ffffff !important;
text-align:center;
}

footer hr{
border:none;
border-top:1px solid #555;
}

/* RESPONSIVE */

@media (max-width:1023px){

.menu-container{
padding-top:20px;
flex-wrap:wrap;
justify-content:space-between;
}

.menu-logo img{
max-width:180px;
}

.menu-toggle{
display:flex;
}

.menu-links{
width:100%;
flex-direction:column;
background:#0E5A7A;
max-height:0;
overflow:hidden;
transition:max-height 0.3s ease;
align-items:center;
}

.menu-links li{
width:100%;
text-align:center;
}

.menu-links li a{
width:100%;
padding:16px 0;
}

.menu-container.active .menu-links{
max-height:2500px;
margin-top:15px;
}

.has-submenu{
width:100%;
}

.submenu{
position:static;
display:block;
width:100%;
box-shadow:none;
border-radius:0;
background:#0b4d68;
}

.submenu li a{
text-align:center;
font-size:16px;
padding:14px 0;
}

.category-grid{
grid-template-columns:1fr;
}

.category-card img{
width:220px;
height:220px;
}

.producto{
grid-template-columns:1fr;
gap:25px;
margin:30px 20px;
}

.producto-info{
text-align:center;
}

.descripcion{
text-align:center;
}

.botones{
justify-content:center;
}

.precio{
font-size:28px;
}

.producto-imagen img{
max-width:100%;
}

h1{
font-size:28px;
}

h2{
font-size:24px;
}

.fixed-call{
font-size:17px;
padding:10px 16px;
}

}