/* =========================================
   ELECTROMAX - ESTILOS GLOBALES
   styles.css
   ========================================= */

/* --- VARIABLES GLOBALES --- */
:root {
  --rojo:       #e63946;
  --rojo-dark:  #c02030;
  --azul-dark:  #0a1628;
  --azul:       #1a3a6e;
  --azul-light: #4fc3f7;
  --gris:       #f8fafc;
  --gris-borde: #e2e8f0;
  --texto:      #334155;
  --blanco:     #ffffff;
  --sombra:     0 4px 20px rgba(10,22,40,0.10);
  --radio:      12px;
  --fuente:     'Poppins', sans-serif;
  --fuente2:    'Nunito', sans-serif;
}

/* --- RESET --- */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:var(--fuente2); color:var(--texto); background:#fff; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

/* =========================================
   PRE-HEADER
   ========================================= */
.pre-header {
  background: var(--azul-dark);
  padding: 7px 20px;
  font-size: 0.8rem;
  color: #94a3b8;
}
.ph-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.ph-inner span { display:flex; align-items:center; gap:6px; }
.ph-inner i { color: var(--azul-light); }

/* =========================================
   HEADER PRINCIPAL
   ========================================= */
.header-main {
  background: var(--rojo);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo-link { text-decoration:none; }
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-e {
  background: white;
  color: var(--rojo);
  font-family: var(--fuente);
  font-size: 1.8rem;
  font-weight: 900;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.logo-text { display:flex; flex-direction:column; line-height:1.15; }
.logo-name {
  font-family: var(--fuente);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}
.logo-name strong { font-weight:900; }
.logo-slogan { font-size:0.7rem; color:rgba(255,255,255,0.8); }

/* Barra de búsqueda */
.search-bar {
  flex: 1;
  position: relative;
  max-width: 600px;
}
.search-bar input {
  width: 100%;
  padding: 11px 52px 11px 18px;
  border: none;
  border-radius: 50px;
  font-family: var(--fuente2);
  font-size: 0.93rem;
  outline: none;
  background: white;
  color: var(--azul-dark);
}
.search-bar button {
  position: absolute;
  right: 4px;
  top: 4px;
  background: var(--azul-dark);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--azul); }

/* Resultados búsqueda */
.search-results {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radio);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}
.search-results.activo { display:block; }
.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f4f8;
  transition: background 0.2s;
}
.search-item:hover { background: #f8fafc; }
.search-item img { width:48px; height:48px; object-fit:contain; border-radius:6px; background:#f8fafc; }
.search-item-info span { display:block; font-size:0.85rem; color:var(--texto); font-weight:600; }
.search-item-info small { font-size:0.8rem; color:var(--rojo); font-weight:700; }

/* Íconos header */
.header-icons { display:flex; gap:10px; flex-shrink:0; }
.icon-btn {
  position: relative;
  color: white;
  font-size: 1.3rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn:hover { background: rgba(255,255,255,0.15); }
.cart-count {
  background: white;
  color: var(--rojo);
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  font-family: var(--fuente);
}

/* Nav Categorías */
.nav-categorias {
  background: var(--azul-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
}
.nav-inner::-webkit-scrollbar { display:none; }
.nav-inner a {
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 16px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 3px solid transparent;
}
.nav-inner a:hover { color:white; background:rgba(255,255,255,0.06); border-bottom-color:var(--rojo); }
.nav-oferta { color: #fbbf24 !important; }
.nav-oferta:hover { color: #f59e0b !important; }

/* =========================================
   CONTENEDOR GENÉRICO
   ========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 440px;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 8%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.slide.active { opacity:1; pointer-events:all; }
.slide-content { flex:1; z-index:1; }
.slide-tag {
  display: inline-block;
  background: var(--rojo);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: var(--fuente);
}
.slide-content h1 {
  font-family: var(--fuente);
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}
.slide-content h1 span { color: #fbbf24; }
.slide-content p { color: #94a3b8; font-size:1rem; margin-bottom:28px; max-width:380px; }
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rojo);
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--fuente);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(230,57,70,0.4);
}
.btn-hero:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(230,57,70,0.5); }
.slide-image {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-image img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Dots y botones slider */
.slider-dots { position:absolute; bottom:18px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:10; }
.dot {
  width:10px; height:10px; border-radius:50%;
  background:rgba(255,255,255,0.35); cursor:pointer; transition:background 0.3s, width 0.3s;
}
.dot.active { background:white; width:28px; border-radius:5px; }
.slider-prev, .slider-next {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.12); color:white;
  border:none; cursor:pointer; font-size:1.1rem;
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s; z-index:10;
  backdrop-filter: blur(4px);
}
.slider-prev { left:16px; }
.slider-next { right:16px; }
.slider-prev:hover, .slider-next:hover { background:rgba(255,255,255,0.25); }

/* =========================================
   CATEGORÍAS RÁPIDAS
   ========================================= */
.categorias-rapidas {
  padding: 30px 20px;
  background: white;
  border-bottom: 1px solid var(--gris-borde);
}
.categorias-rapidas .container {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s;
  min-width: 80px;
}
.cat-card:hover { transform:translateY(-4px); }
.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.cat-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--azul-dark);
  text-align: center;
}

/* =========================================
   SECCIÓN DE PRODUCTOS
   ========================================= */
.seccion-productos {
  padding: 50px 20px;
  background: white;
}
.seccion-titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.seccion-titulo h2 {
  font-family: var(--fuente);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--azul-dark);
}
.seccion-titulo h2 span { color: var(--rojo); }
.seccion-titulo h2 i { margin-right:8px; color:var(--rojo); }
.ver-todos {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rojo);
  display: flex;
  align-items: center;
  gap:5px;
  transition: gap 0.2s;
}
.ver-todos:hover { gap:10px; }

/* Grid de productos */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Tarjeta de producto */
.prod-card {
  background: white;
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra);
  border-color: var(--rojo);
}

/* Badge oferta */
.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--rojo);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--fuente);
  z-index: 1;
}
.prod-badge.nuevo { background: #27ae60; }
.prod-badge.oferta { background: var(--rojo); }

/* Imagen del producto */
.prod-img {
  background: var(--gris);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 190px;
  overflow: hidden;
}
.prod-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.prod-card:hover .prod-img img { transform:scale(1.07); }

/* Info del producto */
.prod-info { padding: 14px; }
.prod-marca {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.prod-nombre {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--azul-dark);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-precio-box { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.prod-precio {
  font-family: var(--fuente);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rojo);
}
.prod-precio-antes {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Botón agregar al carrito */
.btn-agregar {
  width: 100%;
  padding: 10px;
  background: var(--azul-dark);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--fuente);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.2s, transform 0.15s;
}
.btn-agregar:hover { background: var(--rojo); transform:scale(1.02); }

/* =========================================
   BANNER DOBLE
   ========================================= */
.banner-doble {
  padding: 30px 20px;
  background: var(--gris);
}
.banner-doble .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.banner-card {
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  position: relative;
}
.banner-card-text span {
  font-size: 0.8rem;
  color: #fbbf24;
  font-weight: 700;
  display:block;
  margin-bottom:8px;
}
.banner-card-text h3 {
  font-family: var(--fuente);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
}
.btn-banner {
  display: inline-block;
  background: var(--rojo);
  color: white;
  padding: 9px 22px;
  border-radius: 50px;
  font-family: var(--fuente);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.btn-banner:hover { transform:scale(1.04); }
.banner-card img {
  max-height: 130px;
  object-fit:contain;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

/* =========================================
   POR QUÉ NOSOTROS
   ========================================= */
.porque-nosotros {
  padding: 60px 20px;
  background: var(--azul-dark);
}
.porque-nosotros h2 { color:white !important; }
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.ventaja {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radio);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.ventaja:hover { background:rgba(255,255,255,0.1); }
.ventaja i {
  font-size: 2rem;
  color: var(--rojo);
  margin-bottom:14px;
  display:block;
}
.ventaja h4 { color:white; font-family:var(--fuente); font-size:1rem; margin-bottom:8px; }
.ventaja p { color:#64748b; font-size:0.87rem; line-height:1.6; }

/* =========================================
   PÁGINA DE CATEGORÍA (category.html)
   ========================================= */
.page-hero {
  background: linear-gradient(120deg, var(--azul-dark), var(--azul));
  padding: 40px 20px;
  color: white;
}
.page-hero h1 {
  font-family: var(--fuente);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.page-hero p { color:#94a3b8; font-size:0.95rem; }
.breadcrumb { font-size:0.82rem; color:#64748b; margin-bottom:12px; }
.breadcrumb a { color:var(--azul-light); }
.breadcrumb a:hover { text-decoration:underline; }

/* Filtros */
.filtros-bar {
  background: white;
  border-bottom: 1px solid var(--gris-borde);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.filtros-bar label { font-size:0.86rem; font-weight:700; color:var(--azul-dark); }
.filtros-bar select {
  padding: 7px 12px;
  border: 1.5px solid var(--gris-borde);
  border-radius: 8px;
  font-family: var(--fuente2);
  font-size:0.86rem;
  cursor:pointer;
  outline:none;
}

/* Layout de página categoría */
.categoria-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}
.categoria-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

/* =========================================
   PÁGINA DEL CARRITO
   ========================================= */
.carrito-layout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}
.carrito-lista h2 {
  font-family: var(--fuente);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--azul-dark);
  margin-bottom: 20px;
  display:flex; align-items:center; gap:10px;
}
.carrito-item {
  background: white;
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.carrito-item:hover { border-color:var(--rojo); }
.carrito-item-img {
  width: 90px;
  height: 90px;
  background: var(--gris);
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  display:flex; align-items:center; justify-content:center;
}
.carrito-item-img img { width:100%; height:100%; object-fit:contain; padding:6px; }
.carrito-item-info { flex:1; }
.carrito-item-marca { font-size:0.72rem; font-weight:700; color:#94a3b8; text-transform:uppercase; }
.carrito-item-nombre { font-weight:700; font-size:0.95rem; color:var(--azul-dark); margin:4px 0 10px; }
.carrito-item-precio { font-family:var(--fuente); font-size:1.1rem; font-weight:800; color:var(--rojo); }

/* Controles cantidad */
.qty-ctrl { display:flex; align-items:center; gap:10px; margin-top:10px; }
.qty-btn {
  width:28px; height:28px; border-radius:6px; border:1.5px solid var(--gris-borde);
  background:white; cursor:pointer; font-size:1rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s;
}
.qty-btn:hover { background:var(--rojo); color:white; border-color:var(--rojo); }
.qty-num { font-weight:800; font-size:1rem; min-width:24px; text-align:center; }
.btn-eliminar {
  background:none; border:none; color:#94a3b8; cursor:pointer;
  font-size:1.1rem; margin-left:auto; transition:color 0.2s;
}
.btn-eliminar:hover { color:var(--rojo); }

/* Panel resumen */
.carrito-resumen {
  background: white;
  border: 1.5px solid var(--gris-borde);
  border-radius: var(--radio);
  padding: 24px;
  position: sticky;
  top: 130px;
}
.carrito-resumen h3 {
  font-family: var(--fuente);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--azul-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gris-borde);
}
.resumen-linea {
  display:flex; justify-content:space-between;
  font-size:0.9rem; margin-bottom:10px; color:var(--texto);
}
.resumen-total {
  display:flex; justify-content:space-between; align-items:center;
  margin-top:16px; padding-top:16px; border-top:2px solid var(--gris-borde);
}
.resumen-total span:first-child { font-family:var(--fuente); font-size:1rem; font-weight:700; }
.resumen-total span:last-child { font-family:var(--fuente); font-size:1.5rem; font-weight:900; color:var(--rojo); }

/* Formulario checkout */
.form-checkout { margin-top:24px; }
.form-checkout h4 {
  font-family:var(--fuente); font-size:1rem; font-weight:800;
  color:var(--azul-dark); margin-bottom:14px;
}
.campo {
  margin-bottom: 12px;
}
.campo label {
  display:block;
  font-size:0.83rem;
  font-weight:700;
  color:var(--azul-dark);
  margin-bottom:5px;
}
.campo input, .campo select, .campo textarea {
  width:100%;
  padding:10px 14px;
  border:1.5px solid var(--gris-borde);
  border-radius:8px;
  font-family:var(--fuente2);
  font-size:0.88rem;
  outline:none;
  transition:border-color 0.2s;
  color:var(--azul-dark);
}
.campo input:focus, .campo select:focus, .campo textarea:focus { border-color:var(--rojo); }
.campo textarea { min-height:80px; resize:vertical; }
.btn-checkout {
  width:100%; padding:14px;
  background:linear-gradient(135deg,#25d366,#128c7e);
  color:white; border:none; border-radius:50px;
  font-family:var(--fuente); font-size:1rem; font-weight:800;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px;
  box-shadow:0 6px 20px rgba(37,211,102,0.35);
  transition:transform 0.2s, box-shadow 0.2s;
  margin-top:6px;
}
.btn-checkout:hover { transform:translateY(-3px); box-shadow:0 10px 28px rgba(37,211,102,0.5); }
.carrito-vacio {
  text-align:center; padding:80px 20px; color:#94a3b8;
}
.carrito-vacio i { font-size:4rem; margin-bottom:20px; display:block; }
.carrito-vacio h3 { font-size:1.4rem; margin-bottom:10px; color:var(--azul-dark); }
.carrito-vacio a {
  display:inline-block; margin-top:20px;
  background:var(--rojo); color:white;
  padding:12px 28px; border-radius:50px;
  font-family:var(--fuente); font-weight:700;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--azul-dark);
  padding: 50px 20px 20px;
  color: #64748b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: var(--fuente);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-logo strong { font-weight:900; color:var(--rojo); }
.footer-col p { font-size:0.88rem; line-height:1.7; max-width:280px; margin-bottom:18px; }
.footer-redes { display:flex; gap:10px; }
.footer-redes a {
  width:36px; height:36px; background:rgba(255,255,255,0.07);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  color:#94a3b8; transition:background 0.2s, color 0.2s;
}
.footer-redes a:hover { background:var(--rojo); color:white; }
.footer-col h4 { color:white; font-size:0.95rem; font-weight:700; margin-bottom:14px; font-family:var(--fuente); }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.footer-col ul li { font-size:0.87rem; display:flex; align-items:center; gap:7px; }
.footer-col ul li a { color:#64748b; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--rojo); }
.footer-bottom {
  text-align:center; padding-top:22px;
  font-size:0.83rem;
  max-width:1200px; margin:0 auto;
}
.footer-bottom span { color:var(--rojo); font-weight:700; }

/* =========================================
   BOTÓN FLOTANTE WHATSAPP
   ========================================= */
.wa-flotante {
  position:fixed; bottom:26px; right:26px;
  width:56px; height:56px; background:#25d366;
  border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:1.7rem; color:white;
  box-shadow:0 4px 16px rgba(37,211,102,0.5);
  z-index:1000; transition:transform 0.3s;
}
.wa-flotante:hover { transform:scale(1.12); }
.wa-flotante::before {
  content:''; position:absolute;
  width:100%; height:100%; border-radius:50%;
  background:rgba(37,211,102,0.4);
  animation:pulso 2s infinite;
}
@keyframes pulso {
  0%   { transform:scale(1);   opacity:1; }
  100% { transform:scale(1.7); opacity:0; }
}

/* =========================================
   TOAST NOTIFICACIÓN
   ========================================= */
.toast {
  position:fixed; bottom:90px; right:26px;
  background:var(--azul-dark); color:white;
  padding:12px 22px; border-radius:50px;
  font-family:var(--fuente); font-size:0.88rem; font-weight:600;
  box-shadow:0 4px 20px rgba(0,0,0,0.2);
  transform:translateY(20px); opacity:0;
  transition:all 0.3s; pointer-events:none; z-index:1001;
  display:flex; align-items:center; gap:8px;
}
.toast.show { transform:translateY(0); opacity:1; }
.toast i { color:#25d366; }
