/* ============================================================
   TECNOSENSORES.CL — DISEÑO PREMIUM
   Paleta basada en logo: Rojo Tecnosensores #CC0000
   Fuentes: Sora (display) + Plus Jakarta Sans (body)
   Paleta: navy #0D1117 · crimson #CC0000 · scarlet #E63030
   ============================================================ */

/* NOTA: el @import de Google Fonts se eliminó a propósito.
   Sora y Plus Jakarta Sans ya se cargan como "Global Fonts" de Elementor,
   así que el @import era un duplicado. Además, un @import dentro de un CSS
   crea una cadena de descarga extra que bloquea el render y contribuye al
   parpadeo. Las fuentes se encolan desde el PHP del plugin. */

/* ── Variables ── */
:root {
  --navy:      #374151;
  --navy-2:    #4B5563;
  --navy-3:    #6B7280;
  --cyan:      #CC0000;
  --cyan-d:    #A80000;
  --amber:     #E63030;
  --amber-d:   #C22020;
  --slate:     #64748B;
  --cream:     #F7F8FA;   /* antes #FBF5F5 (rosado) → gris neutro */
  --cream-2:   #E5E7EB;   /* antes #F0E0E0 (rosado) → borde gris neutro */
  --white:     #FFFFFF;
  --ink:       #1A0505;
  --mute:      #6B7280;
  --mute-l:    #9CA3AF;

  --font-h:    'Sora', sans-serif;
  --font-b:    'Plus Jakarta Sans', sans-serif;

  --rad-sm:    6px;
  --rad-md:    10px;
  --rad-lg:    16px;
  --rad-pill:  999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 6px 18px rgba(0,0,0,.15);
  --shadow-lg: 0 18px 40px rgba(0,0,0,.22);
  --tr:        all .22s ease;
}

/* ── Reset ACOTADO ──────────────────────────────────────────
   ANTES este bloque reseteaba `*`, `body`, `a`, `ul` e `img` de TODO el sitio
   desde un CSS de widgets. Eso pisaba los estilos de WooCommerce y del tema,
   y el `body { background: var(--cream) }` era la causa directa de que la
   tienda se viera rosada.
   Ahora el reset solo aplica dentro del markup de estos widgets.
   ──────────────────────────────────────────────────────────── */

html { scroll-behavior: smooth; }

/* Raíces del markup Tecnosensores (mantener sincronizada esta lista
   si agregas un widget nuevo con una clase raíz distinta) */
:is(.top-bar, .site-header, .main-nav, .hero-slider, .stats-strip, .categories,
    .featured-products, .product-card, .proceso-section, .tech-banner,
    .cta-section, .contact-section, .about-section, .site-footer) {
  font-family: var(--font-b);
  color: var(--ink);
  line-height: 1.65;
}

/* Reset tipográfico solo de los elementos que usa el markup de los widgets.
   Deliberadamente NO usamos `*`, para no aplanar los botones, listas y
   tablas que WooCommerce inyecta dentro de las tarjetas. */
:is(.top-bar, .site-header, .main-nav, .hero-slider, .stats-strip, .categories,
    .featured-products, .product-card, .proceso-section, .tech-banner,
    .cta-section, .contact-section, .about-section, .site-footer)
  :is(h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd) {
  margin: 0;
  padding: 0;
}

:is(.top-bar, .site-header, .main-nav, .hero-slider, .stats-strip, .categories,
    .featured-products, .product-card, .proceso-section, .tech-banner,
    .cta-section, .contact-section, .about-section, .site-footer) ul {
  list-style: none;
}

:is(.top-bar, .site-header, .main-nav, .hero-slider, .stats-strip, .categories,
    .featured-products, .product-card, .proceso-section, .tech-banner,
    .cta-section, .contact-section, .about-section, .site-footer) a {
  text-decoration: none;
  color: inherit;
  transition: var(--tr);
}

:is(.top-bar, .site-header, .main-nav, .hero-slider, .stats-strip, .categories,
    .featured-products, .product-card, .proceso-section, .tech-banner,
    .cta-section, .contact-section, .about-section, .site-footer) img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 28px; box-sizing: border-box; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(204,0,0,.35);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-contact i { color: var(--cyan); margin-right: 5px; }
.top-bar-links a { color: rgba(255,255,255,.6); margin-left: 20px; font-size: .8rem; }
.top-bar-links a:hover { color: var(--cyan); }

/* ============================================================
   HEADER PRINCIPAL
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; width: 100%; }

.main-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--cyan);
  padding: 14px 0;
  transition: var(--tr);
}
.main-header.scrolled { box-shadow: 0 4px 20px rgba(204,0,0,.18); padding: 10px 0; }
.header-content { display: flex; justify-content: space-between; align-items: center; gap: 32px; }

/* Logo imagen */
.logo-img {
  height: 70px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform .2s, opacity .2s;
}
.logo-img:hover {
  transform: scale(1.03);
  opacity: .9;
}

/* Buscador */
.search-bar { flex: 1; max-width: 560px; position: relative; display: flex; align-items: center; }
.search-bar input {
  width: 100%; padding: 11px 18px 11px 46px;
  border: 2px solid var(--cream-2); border-radius: var(--rad-pill);
  font-family: var(--font-b); font-size: .93rem;
  background: var(--cream); transition: var(--tr);
}
.search-bar input:focus { outline: none; border-color: var(--cyan); background: #fff; box-shadow: 0 0 0 4px rgba(204,0,0,.12); }
.search-bar input::placeholder { color: var(--mute-l); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--mute-l); font-size: 1rem; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 22px; }
.action-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-weight: 600; font-size: .76rem; color: var(--navy); cursor: pointer; transition: color .2s; }
.action-item:hover { color: var(--cyan); }
.action-item i { font-size: 1.35rem; }
.cart-icon-wrapper { position: relative; }
.cart-badge { position: absolute; top: -6px; right: -8px; background: var(--cyan); color: #fff; font-size: .68rem; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-nav { background: var(--navy); border-top: 1px solid rgba(204,0,0,.3); }
.nav-list { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.nav-item { padding: 0; }
.nav-link {
  display: block; padding: 13px 14px;
  font-family: var(--font-h); font-weight: 600; font-size: .74rem;
  color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .06em;
  position: relative; transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
  background: var(--cyan); transition: width .25s;
}
.nav-item:hover .nav-link { color: #FF4D4D; }
.nav-item:hover .nav-link::after { width: 100%; }

/* ============================================================
   BOTONES GLOBALES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 26px; border-radius: var(--rad-md);
  font-family: var(--font-h); font-weight: 700; font-size: .9rem;
  cursor: pointer; border: none; transition: transform .15s, background .2s, box-shadow .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--cyan); color: #fff; }
.btn-primary:hover { background: var(--cyan-d); box-shadow: 0 8px 22px rgba(204,0,0,.4); }
.btn-outline { background: transparent; border: 2px solid var(--cyan); color: var(--cyan); }
.btn-outline:hover { background: var(--cyan); color: #fff; }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-d); box-shadow: 0 8px 22px rgba(230,48,48,.4); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.35); color: #fff; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

/* ============================================================
   EYEBROW (texto categoría encima del h2)
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: var(--amber); flex-shrink: 0;
}
.sec-dark .eyebrow { color: #FF6666; }

/* ============================================================
   HERO SLIDER (Swiper)
   ============================================================ */
.hero-slider { width: 100%; height: 640px; position: relative; }
.hero {
  height: 100%; display: flex; align-items: center;
  background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(55,65,81,.96) 0%, rgba(80,5,5,.6) 60%, rgba(55,65,81,.5) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 820px; }

.glass-card {
  background: rgba(55,65,81,.85); backdrop-filter: blur(10px);
  border-left: 4px solid var(--cyan); padding: 44px 48px;
  border-radius: var(--rad-md); color: #fff; box-shadow: var(--shadow-lg);
}
.hero-badge {
  display: inline-block; background: var(--cyan); color: #fff;
  font-family: var(--font-h); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 14px; border-radius: var(--rad-sm); margin-bottom: 16px;
}
.glass-card h1 {
  font-family: var(--font-h); font-size: 2.75rem; font-weight: 800;
  line-height: 1.12; letter-spacing: -.025em; margin-bottom: 16px;
  text-transform: uppercase;
}
/* El color blanco hay que declararlo EXPLÍCITAMENTE en el h1, no heredarlo
   de `.glass-card`. El "CSS adicional" del sitio tiene una regla
   `h1,h2,h3,h4,h5,h6 { color: #111 }` que matchea el h1 de forma directa,
   y una regla directa siempre le gana a un color heredado del padre,
   sin importar la especificidad. Por eso el título del hero salía negro. */
.glass-card h1,
.glass-card h2 { color: #fff; }
.glass-card h1 span { color: #FF6666; }
.glass-card p { font-size: 1.08rem; margin-bottom: 30px; color: rgba(255,255,255,.85); max-width: 580px; }

/* Swiper controles */
.swiper-button-next, .swiper-button-prev {
  color: #fff !important; background: rgba(204,0,0,.25);
  backdrop-filter: blur(6px); width: 50px !important; height: 50px !important;
  border-radius: 50%; border: 1px solid rgba(204,0,0,.45); transition: var(--tr);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--cyan); color: #fff !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; font-weight: 900; }
.swiper-pagination-bullet { background: #fff !important; opacity: .4 !important; width: 10px !important; height: 10px !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; background: var(--cyan) !important; transform: scale(1.3); }

/* ============================================================
   STRIP DE ESTADÍSTICAS (debajo del hero)
   ============================================================ */
.hero-strip {
  background: var(--navy); padding: 32px 0;
  border-bottom: 1px solid rgba(204,0,0,.25);
}
.hero-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.strip-item {
  padding: 10px 20px;
  border-right: 1px solid rgba(204,0,0,.2);
}
.strip-item:last-child { border-right: none; }
.strip-num {
  font-family: var(--font-h); font-size: 2.2rem; font-weight: 800;
  color: var(--cyan); line-height: 1; margin-bottom: 6px;
}
.strip-label { font-size: .74rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .07em; }

/* ============================================================
   ENCABEZADOS DE SECCIÓN
   ============================================================ */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--font-h); font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
  margin-bottom: 12px;
}
.section-head h2 span { color: var(--cyan); }
.section-head p { color: var(--mute); font-size: .98rem; max-width: 620px; margin: 0 auto; }

/* Títulos legacy compatibles */
.section-title { font-family: var(--font-h); font-size: 1.9rem; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 10px; letter-spacing: -.02em; }
.section-title span { color: var(--cyan); }

/* Footer logo imagen */
.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.section-subtitle { text-align: center; color: var(--mute); font-size: .95rem; margin-bottom: 40px; }

/* ============================================================
   CATEGORÍAS
   ============================================================ */
.categories { padding: 88px 0; background: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.category-card {
  background: var(--cream); border-radius: var(--rad-lg);
  padding: 26px 18px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-top-color .25s;
  border: 1px solid var(--cream-2); border-top: 3px solid transparent;
  display: flex; flex-direction: column; align-items: center; cursor: pointer;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(204,0,0,.12); border-top-color: var(--cyan); }
.cat-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--cream-2), #D1D5DB);  /* antes terminaba en #e8c8c8 (rosado) */
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--navy); margin-bottom: 14px; transition: background .25s, color .25s;
}
.category-card:hover .cat-icon { background: var(--navy); color: var(--cyan); }

/* Los iconos se renderizan como <svg> inline (Lucide), con el color puesto
   en el ATRIBUTO `stroke="#374151"` del propio SVG. Un atributo de
   presentación no reacciona a la propiedad `color`, por eso el hover no
   hacía nada. Atándolo a `currentColor` desde CSS (cualquier regla CSS le
   gana a un atributo de presentación) el icono sigue el color del padre. */
.cat-icon svg {
  stroke: currentColor;
  transition: stroke .25s, fill .25s;
}
/* Por si alguna categoría usa un icono relleno en vez de uno de trazo */
.cat-icon svg:not([fill="none"]) { fill: currentColor; }
/* Y por si el trazo viene hardcodeado en los <path> internos y no en el <svg> */
.cat-icon svg [stroke]:not([stroke="none"]) { stroke: currentColor; }
/* Los iconos de Font Awesome (<i>) ya siguen `color` por su cuenta */
.category-card h3 { font-family: var(--font-h); font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.category-card p { color: var(--mute); font-size: .76rem; }

/* ============================================================
   CARDS DE PRODUCTO (premium)
   ============================================================ */
.featured-products { background: var(--cream); padding: 88px 0; }
.featured-products.bg-light { background: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }

.product-card {
  background: #fff; border-radius: var(--rad-lg);
  overflow: hidden; border: 1px solid var(--cream-2);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column; position: relative;
}
.product-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 8px 28px rgba(204,0,0,.13); border-color: transparent; }
.product-card:hover::after { transform: scaleX(1); }

.product-img {
  height: 230px;
  background: #fff;   /* antes: linear-gradient(135deg,#fff5f5,#fde8e8) — el degradado
                         rosado que hacía que las fotos con fondo blanco se vieran
                         "recortadas". Con blanco, la foto se funde con la tarjeta. */
  padding: 16px;      /* aire para que el producto no toque los bordes */
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-bottom: 1px solid var(--cream-2);
}
.product-img img { max-height: 100%; width: auto; object-fit: contain; transition: transform .5s; }
.product-card:hover .product-img img { transform: scale(1.07); }

.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--amber); color: #fff;
  font-family: var(--font-h); font-size: .66rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--rad-sm);
  text-transform: uppercase; letter-spacing: .05em;
}
.badge-new { background: var(--cyan); color: #fff; }
.badge-hot { background: #8B0000; }

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { color: var(--cyan); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.product-title { font-family: var(--font-h); font-size: .94rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.product-ref { font-size: .74rem; color: var(--mute-l); margin-bottom: 12px; font-family: monospace; letter-spacing: .02em; }
.product-price { font-family: var(--font-h); font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
.btn-add {
  width: 100%; padding: 10px; background: transparent;
  border: 2px solid var(--navy-3); color: var(--navy);
  border-radius: var(--rad-md); font-weight: 700; font-size: .86rem;
  cursor: pointer; transition: var(--tr); font-family: var(--font-h);
  margin-top: auto;
}
.btn-add:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; }

/* El widget renderiza el botón NATIVO de WooCommerce
   (woocommerce_template_loop_add_to_cart), no un `.btn-add`.
   Antes heredaba el look por accidente, desde el reset global `*`.
   Ahora que el reset está acotado, lo declaramos explícito para que
   la tarjeta se vea igual sin depender de estilos ajenos. */
.product-card .product-info a.button,
.product-card .product-info button.button {
  display: block;
  width: 100%;
  margin: auto 0 0;          /* pegado al fondo de la tarjeta */
  padding: 10px;
  text-align: center;
  background: transparent;
  border: 2px solid var(--navy-3);
  color: var(--navy);
  border-radius: var(--rad-md);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .86rem;
  line-height: 1.4;
  cursor: pointer;
  transition: var(--tr);
}
.product-card .product-info a.button:hover,
.product-card .product-info button.button:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}
/* Estado "añadido" / cargando de WooCommerce AJAX */
.product-card .product-info a.added_to_cart {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan);
}

/* ============================================================
   SECCIÓN PROCESO / POR QUÉ ELEGIRNOS (dark)
   ============================================================ */
.proceso-section {
  background: var(--navy); padding: 88px 0;
  color: #fff; position: relative; overflow: hidden;
}
.proceso-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(204,0,0,.1) 0%, transparent 60%),
              radial-gradient(ellipse at 90% 50%, rgba(139,0,0,.08) 0%, transparent 60%);
}
.proceso-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: rgba(204,0,0,.18);
  border: 1px solid rgba(204,0,0,.18); border-radius: var(--rad-lg); overflow: hidden;
}
.proceso-item { background: var(--navy-2); padding: 32px 28px; transition: background .2s; }
.proceso-item:hover { background: var(--navy-3); }
.proceso-num {
  font-family: var(--font-h); color: var(--cyan); font-size: .76rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px;
}
.proceso-icon {
  width: 48px; height: 48px; border-radius: var(--rad-md);
  background: rgba(204,0,0,.14); border: 1px solid rgba(204,0,0,.32);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--cyan); margin-bottom: 16px;
}
.proceso-item h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.proceso-item p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.55; }

/* ============================================================
   STATS / TECH BANNER
   ============================================================ */
.tech-banner { background: var(--navy-2); padding: 52px 0; position: relative; overflow: hidden; }
.tech-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(204,0,0,.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(139,0,0,.08) 0%, transparent 50%);
}
.tech-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { color: #fff; text-align: center; padding: 10px 20px; border-right: 1px solid rgba(204,0,0,.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-h); font-size: 2.4rem; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .74rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .07em; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 110px 0; position: relative;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(55,65,81,.95) 0%, rgba(100,0,0,.85) 50%, rgba(55,65,81,.9) 100%);
}
.cta-content { position: relative; z-index: 10; text-align: center; max-width: 820px; margin: 0 auto; color: #fff; }
.cta-content h2 { font-family: var(--font-h); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; }
.cta-content h2 span { color: #FF6666; }
.cta-content p { font-size: 1.05rem; margin-bottom: 34px; color: rgba(255,255,255,.78); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FORMULARIO DE CONTACTO (sección oscura)
   ============================================================ */
.contact-section { background: var(--navy); padding: 88px 0; color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-title { font-family: var(--font-h); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.contact-info-title em { font-style: normal; color: #FF6666; }
.contact-info > p { color: rgba(255,255,255,.65); margin-bottom: 30px; }
.dato { padding: 14px 0; border-top: 1px solid rgba(204,0,0,.22); }
.dato-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.42); font-weight: 700; margin-bottom: 4px; }
.dato-val { font-weight: 600; font-size: .98rem; color: #fff; display: flex; align-items: center; gap: 10px; }
.dato-val i { color: var(--cyan); font-size: 1rem; }

.contact-form { display: grid; gap: 16px; }
.contact-form label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.5); display: block; margin-bottom: 6px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: rgba(55,65,81,.7);
  border: 1px solid rgba(204,0,0,.25); border-radius: var(--rad-md);
  padding: 12px 16px; color: #fff;
  font-family: var(--font-b); font-size: .93rem; transition: border-color .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--cyan); outline-offset: 1px; border-color: var(--cyan); }
.contact-form select { cursor: pointer; }
.contact-form option { background: var(--navy-2); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form button {
  background: var(--cyan); color: #fff;
  border: none; border-radius: var(--rad-md);
  padding: 14px; font-weight: 800; font-size: 1rem;
  font-family: var(--font-h); cursor: pointer;
  transition: background .2s, transform .1s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.contact-form button:hover { background: var(--cyan-d); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.55);
  padding: 64px 0 0;
  border-top: 3px solid var(--cyan);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 44px; }
.footer-desc { color: rgba(255,255,255,.52); font-size: .88rem; margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--rad-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .95rem; transition: var(--tr);
}
.social-link:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }
.footer-col h4 {
  font-family: var(--font-h); font-size: .75rem; font-weight: 700;
  color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: rgba(255,255,255,.58); font-size: .88rem; }
.footer-contact i { color: var(--cyan); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0; text-align: center;
  color: rgba(255,255,255,.3); font-size: .78rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .header-content { gap: 20px; }
  .search-bar { max-width: 360px; }
  .nav-list { gap: 0; }
  .hero-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: none; }
  .strip-item:nth-child(3) { border-top: 1px solid rgba(204,0,0,.2); }
  .strip-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(204,0,0,.2); }
  .tech-stats { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(204,0,0,.2); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(204,0,0,.2); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .search-bar { display: none; }
  .nav-list { display: none; }
  .hero-slider { height: 520px; }
  .glass-card { padding: 30px 28px; }
  .glass-card h1 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .proceso-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .categories, .featured-products, .proceso-section, .contact-section { padding: 60px 0; }
  .glass-card { padding: 24px 20px; }
  .glass-card h1 { font-size: 1.6rem; }
  .hero-strip-grid, .proceso-grid { grid-template-columns: 1fr; }
  .tech-stats { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover, .product-card:hover, .category-card:hover { transform: none; }
}

/* ============================================================
   ELEMENTOR INTEGRATION OVERRIDES
   Fixes for full-width, contrast, and sizing when
   widgets run inside Elementor's container system.
   ============================================================ */

/* ── 1. HEADER & FOOTER FULL-BLEED ── */
.elementor-widget-tecno_header .elementor-widget-container,
.elementor-widget-tecno_footer .elementor-widget-container {
  max-width: 100vw !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  padding: 0 !important;
  overflow: hidden;
}

/* ── 2. HERO SLIDER: centrado vertical y glass-card más amplia ── */
.hero {
  align-items: center !important;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.hero-content {
  max-width: 900px !important;
  width: 100%;
}
.glass-card {
  padding: 50px 56px !important;
}

/* ── 3. CONTRASTE EN SECCIONES OSCURAS ── */

/* Proceso / Por qué elegirnos */
.proceso-section .section-head h2,
.proceso-section .proceso-item h3 {
  color: #fff !important;
}
.proceso-section .section-head p {
  color: rgba(255,255,255,.65) !important;
}
.proceso-section .proceso-item p {
  color: rgba(255,255,255,.6) !important;
}
.proceso-section .section-head h2 span {
  color: #FF6666 !important;
}
.proceso-section .eyebrow {
  color: #FF6666 !important;
}

/* Hero Strip */
.hero-strip .strip-num { color: var(--cyan) !important; }
.hero-strip .strip-label { color: rgba(255,255,255,.55) !important; }

/* Stats Banner */
.tech-banner .stat-number { color: var(--cyan) !important; }
.tech-banner .stat-label { color: rgba(255,255,255,.55) !important; }

/* Contact section */
.contact-section .section-head h2,
.contact-section .contact-info-title {
  color: #fff !important;
}
.contact-section .contact-info-title em { color: #FF6666 !important; }
.contact-section .eyebrow { color: #FF6666 !important; }
.contact-section p { color: rgba(255,255,255,.65); }

/* CTA section */
.cta-section .eyebrow { color: #FF6666 !important; }
.cta-content h2 { color: #fff !important; }
.cta-content h2 span { color: #FF6666 !important; }
.cta-content p { color: rgba(255,255,255,.78) !important; }

/* ── 4. CTA BOTONES NORMALIZADOS ── */
.cta-actions .btn {
  font-size: .9rem !important;
  padding: 12px 26px !important;
  font-family: var(--font-h) !important;
  font-weight: 700 !important;
  border-radius: var(--rad-md) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}
.cta-actions .btn svg,
.cta-actions .btn i {
  font-size: 1rem !important;
  width: 1em !important;
  height: 1em !important;
}

/* ── 5. FULL-BLEED para secciones oscuras (proceso, CTA, stats, contact) ── */
.elementor-widget-tecno_stats_strip .elementor-widget-container,
.elementor-widget-tecno_process_steps .elementor-widget-container,
.elementor-widget-tecno_stats_banner .elementor-widget-container,
.elementor-widget-tecno_cta .elementor-widget-container,
.elementor-widget-tecno_contact_form .elementor-widget-container {
  max-width: 100vw !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  padding: 0 !important;
  overflow: hidden;
}

/* ============================================================
   ADVANCED WOO SEARCH — BUSCADOR DEL HEADER
   ------------------------------------------------------------
   Este bloque REEMPLAZA al "CSS personalizado" que estaba pegado
   en el widget AWS de la plantilla de header (elemento 39aad08).
   Bórralo de ahí: Elementor > plantilla Header > widget AWS >
   pestaña Avanzado > CSS personalizado > vaciar.

   Se scopea por `.elementor-location-header` en vez de por el ID
   del elemento, así no se rompe si algún día recreas el widget.

   Dos cosas que estaban mal en la versión anterior:

   1) Forzaba `display: flex !important` sobre `.aws-search-clear`
      y `.aws-loader`. AWS los oculta con `display:none` y los
      muestra solo cuando corresponde
      (`.aws-show-clear.aws-form-active` y `.aws-processing`).
      Al forzar el display, la "×" de borrar y el anillo gris del
      spinner quedaban VISIBLES SIEMPRE, incluso con el campo vacío.
      Aquí no se toca `display` en ningún momento.

   2) Usaba var(--cream), var(--cyan)… pero el CSS que define esas
      variables se cargaba tarde (a mitad del <body>), así que en el
      primer pintado esas declaraciones eran inválidas y la barra se
      veía rota un instante. Ahora van los colores literales.
   ============================================================ */

/* ── Contenedores: alto fijo de 48px ── */
.elementor-location-header .aws-container,
.elementor-location-header .aws-container .aws-search-form,
.elementor-location-header .aws-container .aws-wrapper {
  height: 48px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

/* El desplegable de resultados no debe quedar recortado */
.elementor-location-header .aws-container .aws-wrapper {
  overflow: visible !important;
}

/* ── Campo de texto ── */
.elementor-location-header .aws-container .aws-search-field {
  box-sizing: border-box !important;
  height: 48px !important;
  /* izquierda: espacio para la lupa · derecha: espacio para la × */
  padding: 0 44px 0 46px !important;
  line-height: 44px !important;   /* 48 - 2px de borde x2 = centrado vertical */
  border: 2px solid #E5E7EB !important;
  border-radius: 999px !important;
  background: #fff !important;    /* antes var(--cream): un rosado #FBF5F5 */
  color: #1A0505 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: .93rem !important;
  box-shadow: none !important;
  margin: 0 !important;
}
.elementor-location-header .aws-container .aws-search-field::placeholder {
  color: #9CA3AF !important;
  opacity: 1 !important;
}
.elementor-location-header .aws-container .aws-search-field:focus {
  border-color: #CC0000 !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(204,0,0,.12) !important;
  outline: none !important;
}

/* ── Lupa (izquierda) ──
   Ancho explícito de 46px que calza con el padding-left del input,
   así el texto nunca queda por debajo del área clickeable. */
.elementor-location-header .aws-container .aws-search-form .aws-search-btn {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 46px !important;
  height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  transform: none !important;
  z-index: 3 !important;          /* el input de AWS tiene z-index:2 */
  display: flex !important;       /* seguro: este botón siempre se muestra */
  align-items: center !important;
  justify-content: center !important;
}
.elementor-location-header .aws-container .aws-search-form .aws-search-btn:hover {
  background: transparent !important;
}
.elementor-location-header .aws-container .aws-search-form .aws-search-btn_icon {
  width: 100% !important;
  height: 18px !important;
  line-height: 18px !important;
  color: #9CA3AF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.elementor-location-header .aws-container .aws-search-form .aws-search-btn svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}

/* ── "×" para limpiar (derecha) ──
   OJO: aquí NO se declara `display`. AWS la muestra sola cuando el
   campo tiene texto. Declararla rompe ese comportamiento. */
.elementor-location-header .aws-container .aws-search-form .aws-search-clear {
  top: 0 !important;
  right: 0 !important;
  width: 40px !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  transform: none !important;
  text-align: center !important;
  color: #9CA3AF !important;
  background: transparent !important;
  border: none !important;
  z-index: 3 !important;
  cursor: pointer !important;
}
.elementor-location-header .aws-container .aws-search-form .aws-search-clear:hover {
  color: #CC0000 !important;
}
.elementor-location-header .aws-container .aws-search-form .aws-search-clear span {
  position: relative !important;
  display: block !important;
  font-size: 22px !important;
  line-height: 22px !important;
  top: 50% !important;
  margin-top: -11px !important;
}

/* ── Spinner de carga ──
   Igual que la ×: sin tocar `display`, solo color y posición. */
.elementor-location-header .aws-container .aws-search-form .aws-loader {
  right: 14px !important;
  border-top-color: #E5E7EB !important;
  border-right-color: #E5E7EB !important;
  border-bottom-color: #E5E7EB !important;
  border-left-color: #CC0000 !important;
}

/* ============================================================
   AWS — DESPLEGABLE DE RESULTADOS
   ------------------------------------------------------------
   IMPORTANTE: AWS inyecta `.aws-search-result` como hijo directo
   de <body>, NO dentro del widget. Por eso cualquier regla que
   escribas en el "CSS personalizado" del widget de Elementor
   (que se compila como `.elementor-10 .elementor-element-XXX …`)
   JAMÁS le va a aplicar. Tiene que ir sin scope, como acá.
   ============================================================ */
.aws-search-result {
  margin-top: 8px !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.14) !important;
  overflow: hidden !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px !important;
}
.aws-search-result .aws_results .aws_result_item {
  border-bottom: 1px solid #F1F3F5 !important;
  padding: 12px 16px !important;
}
.aws-search-result .aws_results .aws_result_item:last-child {
  border-bottom: 0 !important;
}
.aws-search-result .aws_result_item.hovered,
.aws-search-result .aws_result_item:hover {
  background: #FEF2F2 !important;
}
.aws-search-result .aws_result_title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: #374151;
}
.aws-search-result .aws_result_price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #1A0505;
}
.aws-search-result .aws_result_image img {
  width: 48px !important;
  border-radius: 8px;
}
.aws-search-result .aws_search_more {
  padding: 12px !important;
  font-weight: 700;
  color: #CC0000 !important;
  background: #FAFAFA;
}

/* ============================================================
   PRODUCTO ÚNICO (plantilla de Elementor Pro)
   ------------------------------------------------------------
   POR QUÉ HACE FALTA ESTE BLOQUE

   Esta plantilla está armada 100% con widgets nativos de Elementor
   (woocommerce-product-title, -price, -meta, -stock, -add-to-cart),
   que toman sus colores y fuentes de los "Colores globales" y
   "Fuentes globales" del Kit de Elementor. Y ese Kit está TODAVÍA
   EN LOS VALORES DE FÁBRICA:

       --e-global-color-primary   #6EC1E4  (celeste)
       --e-global-color-secondary #54595F
       --e-global-color-text      #7A7A7A
       --e-global-color-accent    #61CE70  (verde)
       tipografías: Roboto / Roboto Slab

   Por eso el título sale celeste, el botón sale morado (#7F54B3,
   el default de WooCommerce) y todo usa Roboto/Inter.

   Antes esta página parecía "con estilo" solo porque el CSS de los
   widgets reseteaba `*`, `body` y `a` en TODO el sitio y de rebote
   le daba una tipografía uniforme. Al acotar ese reset (que era
   necesario, porque también rompía WooCommerce y pintaba la tienda
   de rosado) quedó a la vista que la plantilla nunca tuvo diseño propio.

   ARREGLO DE VERDAD (recomendado, 5 minutos y arregla TODO el sitio):
   Elementor → Configuración del sitio → Colores globales y Fuentes
   globales → poner la paleta Tecnosensores. Eso corrige de una sola
   vez esta página, la tienda y cualquier widget nativo de Elementor.

   Mientras tanto, este bloque deja la página presentable. Lleva
   `!important` porque el CSS por-widget que genera Elementor tiene
   más especificidad (.elementor-550 .elementor-element-XXXX .product_title).
   ============================================================ */

/* ── Título ── */
body.single-product .elementor-location-single .product_title {
  font-family: var(--font-h) !important;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
  color: var(--navy) !important;
  margin-bottom: 10px !important;
}

/* ── Migas de pan ── */
body.single-product .elementor-location-single .woocommerce-breadcrumb,
body.single-product .elementor-location-single .woocommerce-breadcrumb a {
  font-family: var(--font-b) !important;
  font-size: .8rem !important;
  color: var(--mute) !important;
}
body.single-product .elementor-location-single .woocommerce-breadcrumb a:hover {
  color: var(--cyan) !important;
}

/* ── Precio ── */
body.single-product .elementor-location-single .elementor-widget-woocommerce-product-price .price,
body.single-product .elementor-location-single .summary .price {
  font-family: var(--font-h) !important;
  font-size: 1.9rem !important;
  font-weight: 800 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
}
body.single-product .elementor-location-single .price del {
  color: var(--mute-l) !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
}
body.single-product .elementor-location-single .price ins {
  text-decoration: none !important;
  color: var(--cyan) !important;
  background: none !important;
}

/* ── Stock ── */
body.single-product .elementor-location-single .stock {
  font-family: var(--font-b) !important;
  font-size: .86rem !important;
  font-weight: 600 !important;
}
body.single-product .elementor-location-single .stock.in-stock     { color: #15803D !important; }
body.single-product .elementor-location-single .stock.out-of-stock { color: var(--cyan) !important; }

/* ── SKU / categoría / etiquetas ── */
body.single-product .elementor-location-single .product_meta {
  font-family: var(--font-b) !important;
  font-size: .85rem !important;
  color: var(--mute) !important;
  border-top: 1px solid var(--cream-2);
  padding-top: 14px;
  margin-top: 4px;
}
body.single-product .elementor-location-single .product_meta a { color: var(--cyan) !important; }
body.single-product .elementor-location-single .product_meta a:hover { color: var(--cyan-d) !important; }

/* ── Descripción corta ── */
body.single-product .elementor-location-single .woocommerce-product-details__short-description {
  font-family: var(--font-b) !important;
  font-size: .95rem !important;
  color: var(--navy-2) !important;
  line-height: 1.7 !important;
}

/* ── Botón "Añadir al carrito" ──
   Por defecto sale morado #7F54B3 (el color de marca de WooCommerce). */
body.single-product .elementor-location-single button.single_add_to_cart_button {
  background: var(--cyan) !important;
  color: #fff !important;
  font-family: var(--font-h) !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: var(--rad-md) !important;
  padding: 14px 30px !important;
  transition: var(--tr) !important;
}
body.single-product .elementor-location-single button.single_add_to_cart_button:hover {
  background: var(--cyan-d) !important;
  transform: translateY(-1px);
}

/* ── Selector de cantidad ── */
body.single-product .elementor-location-single .quantity input.qty {
  font-family: var(--font-b) !important;
  border: 2px solid var(--cream-2) !important;
  border-radius: var(--rad-md) !important;
  padding: 12px 8px !important;
  color: var(--ink) !important;
}
body.single-product .elementor-location-single .quantity input.qty:focus {
  outline: none !important;
  border-color: var(--cyan) !important;
}

/* ── Tarjetas de categoría como enlace ──
   El widget ahora imprime <a class="category-card"> cuando la tarjeta tiene destino. */
a.category-card { color: inherit; text-decoration: none; }
a.category-card:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
div.category-card { cursor: default; }   /* sin enlace: no simular que es clickeable */

/* ── Productos destacados: botón y título como enlace ──
   El widget ahora imprime <a class="btn-add"> en vez de un <button> sin destino.
   Si la tarjeta no tiene URL, el botón no se muestra. */
a.btn-add { display: block; text-align: center; text-decoration: none; color: var(--navy); }
.product-title a { color: inherit; }
.product-title a:hover { color: var(--cyan); }
/* La imagen enlazada llena la caja y queda centrada (aplica también a las tarjetas del Loop Grid) */
.product-img > a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

/* ============================================================
   QUIENES SOMOS
   ============================================================ */
.about-section { padding: 88px 0; background: #fff; }
.about-section.about-alt { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-inner.about-solo { grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; text-align: center; }
.about-text h2 { font-family: var(--font-h); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 16px; }
.about-text h2 span { color: var(--cyan); }
.about-lead { color: var(--navy-2); font-size: 1.02rem; line-height: 1.8; margin-bottom: 30px; }
.about-points { display: grid; gap: 18px; margin-bottom: 28px; }
.about-inner.about-solo .about-points { text-align: left; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.about-point { display: flex; gap: 14px; align-items: flex-start; }
.about-point-icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: var(--rad-md); background: rgba(204,0,0,.08); border: 1px solid rgba(204,0,0,.18); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.about-point-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.about-point h3 { font-family: var(--font-h); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about-point p { color: var(--mute); font-size: .88rem; line-height: 1.6; }
.about-media img { width: 100%; border-radius: var(--rad-lg); box-shadow: var(--shadow-md); }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.about-inner.about-solo .about-actions { justify-content: center; }
@media (max-width: 1024px) { .about-inner { grid-template-columns: 1fr; gap: 34px; } .about-media { order: -1; } }
@media (max-width: 768px) { .about-section { padding: 64px 0; } }
