@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');


/* === HEADER PRINCIPAL === */
.header-navegacion[data-v-6e915c4b] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1010;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Montserrat', Arial, sans-serif;
}
.header-content[data-v-6e915c4b] {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  box-sizing: border-box;
}
.navegacion-superior[data-v-6e915c4b] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* === LOGO === */
.logo-navegacion[data-v-6e915c4b] {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.logo-navegacion[data-v-6e915c4b]:hover {
  transform: scale(1.05);
}
.logo-img[data-v-6e915c4b] {
  height: 36px;
  width: auto;
}

/* === MENU PRINCIPAL === */
.menu-principal[data-v-6e915c4b] {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-link[data-v-6e915c4b] {
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link[data-v-6e915c4b]:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* === MENU TIENDA NAVEGACION === */
.menu-tienda-nav[data-v-6e915c4b] {
  position: relative;
  display: inline-block;
}
.tienda-trigger[data-v-6e915c4b] {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.tienda-trigger svg[data-v-6e915c4b] {
  transition: transform 0.2s;
  stroke: currentColor;
}
.dropdown-tienda[data-v-6e915c4b] {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 4px 10px -2px rgba(0, 0, 0, 0.05);
  min-width: 260px;
  z-index: 100000;
  overflow: hidden;
  padding: 0.5rem;
  animation: slideUpFade-6e915c4b 0.2s ease-out forwards;
}
.dropdown-item[data-v-6e915c4b] {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 2px;
}
.dropdown-item[data-v-6e915c4b]:hover {
  background: #f8fafc;
  color: #2563eb;
  padding-left: 1.25rem;
  font-weight: 600;
}
@keyframes slideUpFade-6e915c4b {
from {
    opacity: 0;
    transform: translate(-50%, 10px);
}
to {
    opacity: 1;
    transform: translate(-50%, 0);
}
}

/* === BOTON MENU MOVIL === */
.boton-menu-movil[data-v-6e915c4b] {
  display: none;
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.boton-menu-movil[data-v-6e915c4b]:hover {
  background: #f1f5f9;
}

/* === OVERLAY Y MENU MOVIL === */
.overlay-menu[data-v-6e915c4b] {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2500;
  backdrop-filter: blur(4px);
  animation: fadeIn-6e915c4b 0.2s ease-out;
}
@keyframes fadeIn-6e915c4b {
from { opacity: 0;
}
to { opacity: 1;
}
}
.menu-movil[data-v-6e915c4b] {
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  max-height: 70vh;
  width: 320px;
  max-width: 85vw;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3000;
  box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  border-right: 1px solid #e2e8f0;
  overflow-y: auto;
  border-radius: 0 0 16px 0;
}
.menu-movil.abierto[data-v-6e915c4b] {
  transform: translateX(0);
}
@media (max-width: 900px) {
.menu-movil[data-v-6e915c4b] {
    visibility: visible;
}
}
.encabezado-menu[data-v-6e915c4b] {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 2px solid #f1f5f9;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.boton-cerrar-menu[data-v-6e915c4b] {
  background: #f1f5f9;
  border: none;
  color: #475569;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.boton-cerrar-menu[data-v-6e915c4b]:hover {
  background: #e2e8f0;
  color: #1e293b;
  transform: rotate(90deg);
}
.boton-cerrar-menu[data-v-6e915c4b]:active {
  transform: scale(0.9) rotate(90deg);
}
.encabezado-menu-content[data-v-6e915c4b] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.logo-menu[data-v-6e915c4b] {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(37,99,235,0.15));
}
.titulo-menu[data-v-6e915c4b] {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}
.lista-menu-movil[data-v-6e915c4b] { 
  list-style: none; 
  margin: 0; 
  padding: 12px 16px 16px 16px;
}
.lista-menu-movil a[data-v-6e915c4b] { 
  color: #1e293b; 
  text-decoration: none; 
  padding: 12px 16px; 
  display: block; 
  border-radius: 10px; 
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.lista-menu-movil a[data-v-6e915c4b]:hover { 
  background: #f1f5f9;
  color: #2563eb;
  padding-left: 20px;
}
.item-tienda-movil[data-v-6e915c4b] {
  margin-bottom: 4px;
}
.enlace-tienda-movil[data-v-6e915c4b] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font: inherit;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.enlace-tienda-movil[data-v-6e915c4b]:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.flecha-movil[data-v-6e915c4b] {
  transition: transform 0.2s;
  font-size: 0.8rem;
}
.flecha-movil.abierta[data-v-6e915c4b] {
  transform: rotate(180deg);
}
.flecha-movil[data-v-6e915c4b]::before {
  content: '▼';
}
.submenu-movil[data-v-6e915c4b] {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 8px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.submenu-movil li[data-v-6e915c4b] {
  margin-bottom: 2px;
}
.submenu-movil li[data-v-6e915c4b]:last-child {
  margin-bottom: 0;
}
.submenu-movil a[data-v-6e915c4b] {
  color: #475569;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.submenu-movil a[data-v-6e915c4b]:hover {
  background: #e2e8f0;
  color: #2563eb;
  padding-left: 16px;
}
.item-submenu-movil[data-v-6e915c4b] {
  display: block;
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font: inherit;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.item-submenu-movil[data-v-6e915c4b]:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #2563eb;
}
.submenu-movil .item-submenu-movil[data-v-6e915c4b] {
  background: #ffffff;
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 2px;
  border-radius: 8px;
  padding: 10px 12px;
  border: none;
}
.submenu-movil .item-submenu-movil[data-v-6e915c4b]:hover {
  background: #e2e8f0;
  color: #2563eb;
}

/* === UTILIDADES === */
.solo-escritorio[data-v-6e915c4b] {
  display: flex;
}
.solo-movil[data-v-6e915c4b] {
  display: none;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
.header-content[data-v-6e915c4b] {
    padding: 0.75rem 1rem;
}
.navegacion-superior[data-v-6e915c4b] {
    gap: 1rem;
}
.solo-escritorio[data-v-6e915c4b] {
    display: none;
}
.solo-movil[data-v-6e915c4b] {
    display: inline-flex;
}
.boton-menu-movil[data-v-6e915c4b] {
    display: inline-flex;
}
}
@media (max-width: 480px) {
.header-content[data-v-6e915c4b] {
    padding: 0.5rem 0.75rem;
}
.logo-img[data-v-6e915c4b] {
    height: 32px;
}
}

.checkout-overlay[data-v-8bd616b6] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.checkout-container[data-v-8bd616b6] {
  background: white;
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.checkout-header[data-v-8bd616b6] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}
.checkout-header h2[data-v-8bd616b6] {
  margin: 0;
  color: #333;
  font-size: 1.8rem;
}
.btn-cerrar[data-v-8bd616b6] {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.btn-cerrar[data-v-8bd616b6]:hover {
  background: #f0f0f0;
  color: #333;
}
.checkout-content[data-v-8bd616b6] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}
.seccion-resumen[data-v-8bd616b6] {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  height: fit-content;
}
.seccion-resumen h3[data-v-8bd616b6] {
  margin: 0 0 20px 0;
  color: #333;
  font-size: 1.4rem;
}
.items-resumen[data-v-8bd616b6] {
  margin-bottom: 20px;
}
.item-resumen[data-v-8bd616b6] {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}
.item-resumen[data-v-8bd616b6]:last-child {
  border-bottom: none;
}
.item-imagen[data-v-8bd616b6] {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.item-info[data-v-8bd616b6] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.item-nombre[data-v-8bd616b6] {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}
.item-cantidad[data-v-8bd616b6] {
  color: #666;
  font-size: 0.85rem;
}
.item-precio[data-v-8bd616b6] {
  color: #2c5aa0;
  font-weight: 600;
  font-size: 0.9rem;
}
.totales[data-v-8bd616b6] {
  border-top: 2px solid #e0e0e0;
  padding-top: 15px;
}
.linea-total[data-v-8bd616b6] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.total-final[data-v-8bd616b6] {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 1.1rem;
}
.seccion-formulario[data-v-8bd616b6] {
  overflow-y: auto;
  max-height: 70vh;
}
.grupo-formulario[data-v-8bd616b6] {
  margin-bottom: 25px;
}
.grupo-formulario h3[data-v-8bd616b6] {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.2rem;
  border-bottom: 2px solid #2c5aa0;
  padding-bottom: 5px;
}
.campos-fila[data-v-8bd616b6] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.campo[data-v-8bd616b6] {
  display: flex;
  flex-direction: column;
}
.campo label[data-v-8bd616b6] {
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}
.campo input[data-v-8bd616b6],
.campo textarea[data-v-8bd616b6] {
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.campo input[data-v-8bd616b6]:focus,
.campo textarea[data-v-8bd616b6]:focus {
  outline: none;
  border-color: #2c5aa0;
}
.campo input[data-v-8bd616b6]:disabled,
.campo textarea[data-v-8bd616b6]:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.metodos-pago[data-v-8bd616b6] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.metodo-pago[data-v-8bd616b6] {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.metodo-pago[data-v-8bd616b6]:hover {
  background: #f8f9fa;
}
.metodo-pago.activo[data-v-8bd616b6] {
  border-color: #2c5aa0;
  background: #f0f4ff;
}
.metodo-pago input[data-v-8bd616b6] {
  margin-right: 12px;
}
.metodo-pago label[data-v-8bd616b6] {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}
.metodo-pago i[data-v-8bd616b6] {
  font-size: 1.2rem;
}
.fa-cc-visa[data-v-8bd616b6] {
  color: #1a1f71;
}
.fa-cc-mastercard[data-v-8bd616b6] {
  color: #eb001b;
}
.fa-paypal[data-v-8bd616b6] {
  color: #003087;
}
.fa-university[data-v-8bd616b6] {
  color: #2c5aa0;
}
.checkbox-campo[data-v-8bd616b6] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-campo input[data-v-8bd616b6] {
  margin-top: 3px;
}
.checkbox-campo label[data-v-8bd616b6] {
  font-size: 0.9rem;
  line-height: 1.4;
}
.checkbox-campo a[data-v-8bd616b6] {
  color: #2c5aa0;
  text-decoration: none;
}
.checkbox-campo a[data-v-8bd616b6]:hover {
  text-decoration: underline;
}
.acciones-checkout[data-v-8bd616b6] {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.btn[data-v-8bd616b6] {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn[data-v-8bd616b6]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-secundario[data-v-8bd616b6] {
  background: #f8f9fa;
  color: #666;
  border: 2px solid #e0e0e0;
}
.btn-secundario[data-v-8bd616b6]:hover:not(:disabled) {
  background: #e9ecef;
}
.btn-primario[data-v-8bd616b6] {
  background: #2c5aa0;
  color: white;
}
.btn-primario[data-v-8bd616b6]:hover:not(:disabled) {
  background: #1e3f73;
}

/* Responsive */
@media (max-width: 768px) {
.checkout-overlay[data-v-8bd616b6] {
    padding: 10px;
}
.checkout-content[data-v-8bd616b6] {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}
.campos-fila[data-v-8bd616b6] {
    grid-template-columns: 1fr;
}
.acciones-checkout[data-v-8bd616b6] {
    flex-direction: column;
}
.btn[data-v-8bd616b6] {
    width: 100%;
    justify-content: center;
}
.seccion-formulario[data-v-8bd616b6] {
    max-height: none;
}
}

.contenido-temporal[data-v-dcc3bc09] {
  padding: 4rem 2rem;
  text-align: center;
  color: #031641;
}
.contenido-temporal h1[data-v-dcc3bc09] {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contenido-temporal p[data-v-dcc3bc09] {
  font-size: 1.2rem;
  color: #6b7280;
}
.whatsapp-flotante[data-v-dcc3bc09] {
	position: fixed;
	right: 18px;
	bottom: 8px;
	width: 46px;
	height: 46px;
	background: #25D366; 
	color: #fff;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	z-index: 9999;
	text-decoration: none;
	transition: transform 0.2s ease;
}
.whatsapp-flotante[data-v-dcc3bc09]:hover {
	transform: scale(1.1);
}
.whatsapp-flotante svg[data-v-dcc3bc09] {
	width: 28px;
	height: 28px;
	display: block;
	fill: #fff !important;
	stroke: none !important;
}
@media (max-width: 520px) {
.whatsapp-flotante[data-v-dcc3bc09] { 
		right: 12px; 
		bottom: 12px; 
		width: 48px; 
		height: 48px;
}
}
.fas, .fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-bars::before { content: "\f0c9"; }
.fa-times::before { content: "\f00d"; }
.fa-plus::before { content: "\f067"; }
.fa-search::before { content: "\f002"; }
.fa-edit::before { content: "\f044"; }
.fa-trash::before { content: "\f1f8"; }
.fa-image::before { content: "\f03e"; }
.fa-file-pdf::before { content: "\f1c1"; }
.fa-cloud-upload-alt::before { content: "\f382"; }

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fa-solid-900-BLm1ImsD.woff2") format("woff2");
}* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

html,
body,
#app {
  min-height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #16a34a;
  --bg: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lazy-loading {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.lazy-loaded {
  opacity: 1;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
