
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



html, body {
    max-width: 100%;
    overflow-x: hidden;
}

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: Arial, Helvetica, sans-serif;
			color:#666;
        }


img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

        header,
        main,
        footer {
            width: 100%;
			text-align:center;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        section {
            width: 100%;

          
            align-items: center;
            justify-content: center;
        }
		
    a:link {
	color: #78C044;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #78C044;
}
a:hover {
	text-decoration: none;
	color: #0054A1;
}
a:active {
	text-decoration: none;
	color: #78C044;
}
.banner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner img {
    max-width: 100%;
    height: auto;
}

/* TITULOS */
.titulo {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* SUBTITULOS */
.subtitulo {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* TEXTO NORMAL */
.texto {
    font-size: 14px;
    line-height: 1.6;
}

/* NEGRITAS */
.negrita {
    font-weight: 700;
}


.azul {
	color:#5e85ae;
	font-size:20px;
	}

/* LETRA MINI */
.mini {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.75;
}
/* BOTON */
.btn-volver {
    background: transparent;
    border: 2px solid #999;
    color: #555;
    padding: 8px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-volver:hover {
    border-color: #666;
    color: #333;
    background-color: rgba(0, 0, 0, 0.05);
}


/* FORMS */

#formularios {
    width: 100%;
    padding: 80px 20px;
    background: #;
}

/* GRID */
.formularios-grid {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 50px;
    row-gap: 50px;
}

/* CARD FORMULARIO */
.formulario {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formulario:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* TÍTULO */
.formulario .subtitulo {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0054a1;
    margin-bottom: 10px;
}

/* INPUTS */
.formulario input,
.formulario textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #d0d7e2;
    background: #fbfcfe;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* PLACEHOLDER */
.formulario input::placeholder,
.formulario textarea::placeholder {
    color: #9aa4b2;
}

/* FOCUS */
.formulario input:focus,
.formulario textarea:focus {
    border-color: #0054a1;
    box-shadow: 0 0 0 3px rgba(0,84,161,0.15);
    background: #ffffff;
}

/* TEXTAREA */
.formulario textarea {
    resize: vertical;
    min-height: 140px;
}

/* BOTÓN */
.formulario button {
    margin-top: 15px;
    align-self: center;
    padding: 12px 34px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .formularios-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        column-gap: 0;
    }
}

/* FORMS */

/* RESPONSIVE */
@media (max-width: 768px) {
    .formularios-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .titulo {
        font-size: 26px;
    }

    .subtitulo {
        font-size: 18px;
    }

    .texto {
        font-size: 15px;
    }
}




 .menu-principal {
	padding-top:30px;
    width: 100%;
	height:70px;
    display: flex;
    justify-content: center;
	font-family: 'Baloo 2', cursive;
	font-size:20px;
}

.menu-principal ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
	    font-family: 'Baloo 2', cursive;
}

.menu-principal a {
	    font-family: 'Baloo 2', cursive;
    text-decoration: none;
    font-weight: 600;
    color: #0054a1;
    padding: 2px 10px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-principal a:hover {
    font-family: 'Baloo 2', cursive;
    background-color: #0054a1;
    color: #ffffff;
}

@media (max-width: 768px) {
    .menu-principal {
        padding-top: 10px;
        height: auto;
    }
    .menu-principal ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .menu-principal a {
        font-size: 16px;
        padding: 4px 8px;
    }
    .menu-principal li {
        display: flex;
        align-items: center;
    }
    .cart-icon {
        font-size: 20px;
    }
    #cart-count {
        top: -6px;
        right: -8px;
        font-size: 11px;
        padding: 2px 5px;
    }
}
		
.servicios {
    width: 100%;
    padding: 40px 20px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
}

.servicio-item {
    display: flex;
	max-width: 170px;  /* limita el tamaño */
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.servicio-img {
    width: 100%;
    height: 120px;
    background: #ffffff;
}

.servicio-nombre {
    margin-top: 10px;
}

.servicio-descripcion {
    margin: 8px 0;
}


/* SOBRE MI */


#descripcion-empresa {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.imagen-descripcion {
  display: flex;
  justify-content: center;
}

.imagen-descripcion img {
  max-width: 100%;   /* ajusta a tu gusto */
  height: auto;
  margin-bottom: 10px;
}

.servicio-precio {
    font-weight: bold;
    margin-bottom: 10px;
}

.servicio-btn {
    padding: 8px 16px;
    cursor: pointer;
}

.servicio-link {
    margin-top: 8px;
    text-decoration: none;
}


.servicio-btn {
    padding: 10px 22px;
    background-color: #0054a1;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.servicio-btn:hover {
    background-color: #d87373;
    transform: translateY(-2px);
}


a.servicio-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 24px;
    background: #0054a1;
    color: #fff !important;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    transition: 0.3s;
}

a.servicio-btn:hover {
    background: #d87373;
    color: #fff;
}

.servicio-btn:active {
    transform: scale(0.97);
}



/* RESPONSIVE */
@media (max-width: 1024px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }
}
	

/* RESPONSIVE */
@media (max-width: 768px) {
    .descripcion-empresa {
        padding: 40px 25px;
        margin: 60px 20px;
    }

    .descripcion-empresa .texto {
        font-size: 16px;
    }
}
	.galeria {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.titulo-seccion {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
}

/* GRID PRINCIPAL */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ITEM */



.galeria-item {
    background: #ffffff;
    border-radius: 0px;
}

.galeria-item img {
    
	width:350px;
    height:180px;
    display: block;
	object-fit:cover;
	object-position:center;
}

.galeria-item h3 {
    padding: 0px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* HOVER */
.galeria-item:hover {
}

.galeria-desc {
    font-size: 0.9rem;
    color: #666;
    padding: 10px 15px 0;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .galeria-grid {
        grid-template-columns: 1fr;
    }
}

/* SECCIÓN TÉRMINOS */
.terminos {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.7;
}

/* TÍTULO PRINCIPAL */
.terminos h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
	font-family: 'Baloo 2', cursive;
	color:#666;
}

/* BLOQUES */
.terminos article {
    margin-bottom: 40px;
}

/* SUBTÍTULOS */
.terminos h2 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color:#666;
	font-family: 'Baloo 2', cursive;
}

/* PÁRRAFOS JUSTIFICADOS */
.terminos p {
    text-align: justify;
    margin-bottom: 15px;
}

/* LISTAS */
.terminos ul,
.terminos ol {
    padding-left: 30px;
    margin-bottom: 15px;
}

/* ITEMS DE LISTA */
.terminos li {
    margin-bottom: 8px;
    text-align: justify;
}

/* DESTACADOS */
.terminos strong {
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .terminos h1 {
        font-size: 1.8rem;
    }

    .terminos h2 {
        font-size: 1.1rem;
    }
}



/* BOTÓN TOGGLE */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 9999;
    transition: background 0.3s ease;
}

.theme-toggle:hover {
    background: #000;
}

/* MODO OSCURO */
body.dark-mode {
    background-color: #121212;
    color: #eaeaea;
}

/* ELEMENTOS COMUNES EN MODO OSCURO */
body.dark-mode section,
body.dark-mode article {
    background-color: transparent;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3 {
    color: #ffffff;
}

body.dark-mode p,
body.dark-mode li {
    color: #dddddd;
}

/* GALERÍA */
body.dark-mode .galeria-item {
    background: #1e1e1e;
}

/* BOTÓN EN MODO CLARO */
body:not(.dark-mode) .theme-toggle {
    background: #f0f0f0;
    color: #111;
}

/* Fondo oscuro */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

/* Contenedor fijo 300x300 */
.modal-contenido {
    width: 350px;
    height: 350px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen ajustada */
.modal-contenido img {
    max-width: 100%;
    max-height: 100%;
}

.producto-detalle {
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 20px;
}

/* IMAGEN */
.producto-imagen img {
    width: 100%;
    max-width: 420px;
    margin: auto;
    display: block;
}

/* INFO */
.producto-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.producto-titulo {
    font-family: 'Baloo 2', cursive;
    font-size: 2.2rem;
}

.producto-desc {
    font-family: 'Nunito', sans-serif;
    color: #555;
    line-height: 1.6;
}


/* CANTIDAD + PRECIO */
.producto-compra {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cantidad {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cantidad button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #056e9a;
    font-size: 18px;
    cursor: pointer;
}

.precio {
    font-size: 1.6rem;
    font-weight: bold;
}

/* BOTÓN */
.btn-comprar {
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #056e9a;
    color: #fff;
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-comprar:hover {
    background: #ce7b7b;
}
@media (max-width: 768px) {
    .producto-detalle {
        grid-template-columns: 1fr;
    }

    .producto-imagen img {
        max-width: 300px;
    }
}
.producto-select {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 260px;
}

.producto-select label {
    font-weight: 600;
    font-size: 0.9rem;
}

.producto-select select {
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-family: 'Nunito', sans-serif;
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23999' d='M5.25 7.5L10 12.25 14.75 7.5z'/%3E%3C/svg%3E") no-repeat right 14px center;
    background-size: 14px;
    cursor: pointer;
}
/* MENU GALERIA */
.menu-galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 30px 0;
	max-width: 900px;   /* 🔹 hazlo más chico aquí */
}

.cat-btn {
    padding: 10px 22px;
    border-radius: 999px;
    background: #f2f2f2;
    color: #333;
    text-decoration: none;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cat-btn:hover {
    background: #ce7b7b;
    color: #fff;
}

/* ACTIVO */
.cat-btn.activo {
    background: #ff8a00;
    color: #fff;
}

.btn-agregar {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 999px; /* ovalado */
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-agregar:hover {
    background-color: #222;
    transform: translateY(-1px);
}

.btn-agregar:active {
    transform: translateY(0);
}

.mini-carrito {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 280px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
    cursor: move;
    touch-action: none;
}

.mini-carrito h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.mini-carrito-item {
    font-size: 13px;
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.mini-carrito-btn {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid #999;
    color: #333;
    text-decoration: none;
}

.carrito-container {
    max-width: 1200px;      /* ?? MS ANCHO */
    margin: 40px auto;      /* ?? menos espacio arriba */
    padding: 28px 40px;     /* ?? ms ancho, menos alto */
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Ttulo */
.carrito-container h2 {
    margin-bottom: 20px;
    font-size: 1.9rem;
}

/* Lista */
.carrito-lista {
    padding-bottom: 16px;
}

/* Items */
.carrito-item {
    padding: 12px 0;        /* ?? menos alto */
}

/* Resumen alineado a la derecha */
.carrito-resumen {
    margin-top: 18px;       /* ?? sube el resumen */
    max-width: 420px;       /* ?? ms ancho */
    margin-left: auto;
}

/* Abono */
.carrito-resumen .abono {
    padding: 10px 16px;
    font-size: 1.15rem;
}

/* Botn */
.btn-pagar {
    padding: 14px;
}


/* Responsive */
@media (max-width: 768px) {
    .carrito-container {
        padding: 20px;
    }

    .carrito-resumen {
        max-width: 100%;
    }
}




.info-bloque.detalle {
	width:100%;
    max-width: 800px;
    margin: 40px auto;
    padding: 24px 28px;
}

.info-bloque.detalle h3 {
    margin-bottom: 14px;
    color: #222;
    padding-bottom: 8px;
}

.info-bloque.detalle p {
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .info-bloque.detalle {
        max-width: 95%;
        padding: 18px;
    }
}



.info-bloque.terminos {
	width:100%;
      max-width: 800px;
    margin: 40px auto;
    padding: 24px 28px;
}

.info-bloque.terminos h3 {
    margin-bottom: 14px;
    color: #222;
}

.info-bloque.terminos p {
    color: #555;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .info-bloque.terminos {
        max-width: 95%;
        padding: 18px;
    }
}

.carrito-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Fila */
.carrito-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1.2fr auto;
    align-items: center;
    padding: 14px 18px;
    background: #fafafa;
    border-radius: 14px;
}

/* Columnas */
.carrito-item .col {
    font-size: 0.95rem;
    color: #333;
}

/* Producto */
.producto {
    display: flex;
    flex-direction: column;
}

.producto .nombre {
    font-weight: 600;
}

.producto .opcion {
    font-size: 0.85rem;
    color: #777;
}

/* Precio, cantidad, subtotal */
.precio,
.cantidad,
.subtotal {
    text-align: center;
    font-weight: 600;
}

/* Acciones */
.acciones {
    text-align: right;
}

.btn-eliminar {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #aaa;
    transition: 0.2s ease;
}

.btn-eliminar:hover {
    color: #e00;
    transform: scale(1.1);
}
.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0054a1;
}

.cart-icon-svg {
    width: 22px;
    height: 22px;
    display: block;
}

#cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e11d48;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    z-index: 2;
}

/*WHATSAPP*/

.btn-whatsapp {
  display: inline-block;
  padding: 12px 20px;
  background: #FFFFFF;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}
.btn-whatsapp:hover {
  background: #FFFFFF;
}

/*PAGAR*/

.form-checkout {
    margin-top: 24px;
}

.checkout-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    max-width: 420px;
    margin-left: auto;
}

.checkout-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

.checkout-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.campo {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.campo label {
    font-size: 13px;
    margin-bottom: 4px;
    color: #333;
}

.campo input {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.campo input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79,70,229,0.15);
}

.btn-pagar {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-pagar:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(79,70,229,0.3);
}

/* AJUSTE MENÚ MOVIL (COMPACTO) */
@media (max-width: 768px) {
    .menu-principal {
        padding-top: 6px;
        height: auto;
    }
    .menu-principal ul {
        flex-wrap: wrap;
        gap: 6px;
        row-gap: 4px;
        justify-content: center;
        align-items: center;
        padding: 0 8px;
    }
    .menu-principal a {
        font-size: 14px;
        padding: 2px 6px;
    }
    .menu-principal li {
        display: flex;
        align-items: center;
        line-height: 1;
    }
    .cart-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .cart-icon-svg {
        width: 20px;
        height: 20px;
    }
    #cart-count {
        top: -6px;
        right: -6px;
        font-size: 10px;
        padding: 2px 4px;
    }
}
/* FIX MENU MOVIL (FORZAR VISIBILIDAD) */
@media (max-width: 768px) {
    #menu { padding-bottom: 6px; }
    .menu-principal {
        padding-top: 8px !important;
        height: auto !important;
    }
    .menu-principal ul {
        flex-wrap: wrap !important;
        gap: 4px 8px !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }
    .menu-principal a {
        font-size: 16px !important;
        padding: 2px 6px !important;
    }
    .menu-principal li {
        line-height: 1 !important;
        margin: 0 !important;
    }
    .cart-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #0054a1 !important;
    }
    .cart-icon-svg {
        width: 20px !important;
        height: 20px !important;
        color: #0054a1 !important;
    }
    #cart-count {
        top: -6px !important;
        right: -6px !important;
        font-size: 10px !important;
        padding: 2px 4px !important;
    }
}