/* ═══════════════════════════════════════════════════════════════
   ALA PRINTING – style.css
   Fuentes: Montserrat 400/500/600/700/800
   Colores base: #0155B5 · #0B2E56 · #DBDBDB · #232323
   Editable desde panel admin vía CSS variables
═══════════════════════════════════════════════════════════════ */

/* ──────────────── CSS VARIABLES ──────────────── */
:root {
  /* Brand colors */
  --color-primary:      #0155B5;
  --color-secondary:    #0B2E56;
  --color-light:        #DBDBDB;
  --color-dark:         #232323;
  --color-accent:       #0155B5;
  --color-success:      #25D366;
  --color-warning:      #FFC107;

  /* Derived */
  --color-primary-hover: #0146a0;
  --color-bg:           #FFFFFF;
  --color-bg-light:     #F5F7FA;
  --color-text:         #232323;
  --color-text-muted:   #6B7280;
  --color-border:       #E5E7EB;
  --color-nav-bg:       #0B2E56;
  --color-nav-text:     #FFFFFF;

  /* Typography */
  --font-body:    'Montserrat', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-black:  800;

  /* Spacing */
  --section-pad: 80px;
  --nav-height:  64px;
  --radius:      10px;
  --radius-lg:   16px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.16);

  /* Transitions */
  --transition: .22s ease;
}

/* ──────────────── RESET & BASE ──────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: var(--fw-normal);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.25;
}

.section-pad { padding: var(--section-pad) 0; }
.bg-light-ala { background: var(--color-bg-light); }
.bg-dark-ala  { background: var(--color-secondary); }
.bg-brand     { background: var(--color-primary); }
.text-accent  { color: var(--color-accent); }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.ala-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-nav-bg);
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.ala-navbar.scrolled {
  background: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.ala-navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* LOGO */
.ala-navbar-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ala-navbar-brand img {
  height: 40px;
  width: auto;
}
.logo-light { display: block; }
.logo-dark  { display: none; }

/* NAV LINKS */
.ala-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  height: 100%;
}

.ala-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ala-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  height: 100%;
  color: var(--color-nav-text);
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color var(--transition), opacity var(--transition);
  cursor: pointer;
}
.ala-nav-link:hover { color: var(--color-light); opacity: .85; }

.ala-nav-link .bi-chevron-down {
  font-size: 11px;
  transition: transform var(--transition);
}
.ala-nav-item:hover .bi-chevron-down { transform: rotate(180deg); }

/* ─── MEGA MENU ─── */
.ala-mega-menu,
.ala-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 999;
  border-top: 3px solid var(--color-primary);
}

.ala-nav-item:hover .ala-mega-menu,
.ala-nav-item:hover .ala-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.ala-mega-menu {
  width: min(900px, 95vw);
  padding: 28px;
  left: 50%;
}

.mega-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mega-title {
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.mega-col a, .ala-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 13.5px;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius);
  transition: color var(--transition), padding-left var(--transition);
}
.mega-col a:hover, .ala-dropdown a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}
.mega-col a i, .ala-dropdown a i {
  font-size: 14px;
  color: var(--color-primary);
  width: 18px;
}

/* Featured mega card */
.mega-featured .mega-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.mega-featured .mega-card:hover { box-shadow: var(--shadow-md); }
.mega-featured .mega-card img { width: 100%; height: 130px; object-fit: cover; }
.mega-featured .mega-card span {
  display: block;
  padding: 8px 12px 2px;
  font-weight: var(--fw-semi);
  font-size: 13px;
}
.mega-featured .mega-card small {
  display: block;
  padding: 0 12px 10px;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

/* ─── DROPDOWN ─── */
.ala-dropdown {
  min-width: 220px;
  padding: 10px 8px;
  left: 0;
  transform: translateY(-8px);
}
.ala-nav-item:hover .ala-dropdown {
  transform: translateY(0);
}
.ala-dropdown a {
  padding: 9px 14px;
  border-radius: 8px;
}
.ala-dropdown a:hover { background: var(--color-bg-light); }

/* ─── NAV ACTIONS ─── */
.ala-nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ala-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--color-nav-text);
  font-size: 18px;
  transition: background var(--transition);
}
.ala-icon-btn:hover { background: rgba(255,255,255,.12); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: var(--fw-bold);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ala-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: var(--fw-semi);
  border-radius: var(--radius);
  transition: background var(--transition), transform .1s;
  margin-left: 8px;
}
.ala-cta-btn:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-1px); }

/* ─── HAMBURGER ─── */
.ala-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  margin-left: 8px;
}
.ala-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.ala-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ala-hamburger.active span:nth-child(2) { opacity: 0; }
.ala-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.ala-mobile-menu {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--color-secondary);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 999;
  overflow-y: auto;
}
.ala-mobile-menu.open { transform: translateX(0); }

.mobile-menu-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-body > a {
  padding: 12px 16px;
  color: #fff;
  font-weight: var(--fw-medium);
  border-radius: var(--radius);
  font-size: 15px;
  display: block;
  transition: background var(--transition);
}
.mobile-menu-body > a:hover { background: rgba(255,255,255,.1); }
.mobile-menu-body hr { border-color: rgba(255,255,255,.15); margin: 8px 0; }

.mobile-acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: var(--fw-medium);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-acc-btn:hover { background: rgba(255,255,255,.1); }
.mobile-acc-btn .bi { transition: transform .3s; }
.mobile-acc.active .mobile-acc-btn .bi { transform: rotate(180deg); }

.mobile-acc-body {
  display: none;
  flex-direction: column;
  padding: 0 8px 8px 24px;
}
.mobile-acc.active .mobile-acc-body { display: flex; }
.mobile-acc-body a {
  padding: 9px 12px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.mobile-acc-body a:hover { color: #fff; background: rgba(255,255,255,.08); }

.mobile-cta {
  display: block;
  padding: 13px 16px;
  text-align: center;
  border-radius: var(--radius);
  font-weight: var(--fw-semi);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: background var(--transition);
}
.mobile-cta.primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.mobile-cta:hover { background: rgba(255,255,255,.15); }
.mobile-cta.primary:hover { background: var(--color-primary-hover); }

/* ──────────────── SEARCH OVERLAY ──────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,46,86,.95);
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }

.search-inner {
  width: min(700px, 92vw);
  position: relative;
}
.search-inner input {
  width: 100%;
  padding: 16px 60px 16px 24px;
  font-size: 20px;
  font-family: var(--font-body);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50px;
  background: rgba(255,255,255,.1);
  color: #fff;
  outline: none;
  transition: border-color .2s;
}
.search-inner input::placeholder { color: rgba(255,255,255,.5); }
.search-inner input:focus { border-color: rgba(255,255,255,.7); }
.search-inner button {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: .7;
}
.search-inner button:hover { opacity: 1; }

.search-results {
  background: #fff;
  border-radius: var(--radius-lg);
  margin-top: 8px;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background .15s;
  font-size: 14px;
  color: var(--color-text);
}
.search-result-item:hover { background: var(--color-bg-light); }
.search-result-item i { color: var(--color-primary); font-size: 18px; }
/* ═════════════════════════════════════
   FIX NAVBAR LINKS
═════════════════════════════════════ */

.ala-navbar a,
.ala-navbar .nav-link,
.ala-navbar .ala-nav-link,
.ala-navbar .dropdown-item{

    text-decoration: none !important;

}

.ala-navbar a:hover,
.ala-navbar .nav-link:hover,
.ala-navbar .ala-nav-link:hover,
.ala-navbar .dropdown-item:hover{

    text-decoration: none !important;

}

/* ═══════════════════════════════════════
   MEGA MENUS — AJUSTE PREMIUM COMPACTO
   Productos / Materiales / Diseños
═══════════════════════════════════════ */

/* PANEL */
.ala-mega-menu{
  position: absolute;
  top: 100%;
  left: 0;

  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);

  border-radius: 0 0 22px 22px;

  padding: 22px 26px;

  width: max-content;
  min-width: unset;
  max-width: 980px;

  box-shadow:
    0 18px 50px rgba(0,0,0,.14);

  border-top: 3px solid #0057c2;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease;

  z-index: 999;
}

/* SHOW */
.has-mega:hover .ala-mega-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CONTENEDOR */
.mega-container{
  display: flex;
  align-items: flex-start;
  gap: 42px;

  width: auto;
}

/* COLUMNAS */
.mega-col{
  min-width: 220px;
}

/* TITULOS */
.mega-title{
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;

  color: #0057c2;

  margin-bottom: 16px;
  padding-bottom: 10px;

  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* LINKS */
.mega-col a{
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 11px 14px;

  border-radius: 14px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;

  color: #2d2d2d;
  text-decoration: none;

  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

/* HOVER */
.mega-col a:hover{
  background: #f3f6fb;
  color: #0057c2;
  transform: translateX(3px);
}

/* ICONOS */
.mega-col i{
  font-size: 18px;
  color: #0057c2;

  width: 18px;
  min-width: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* LINKS SIN ICONO */
.mega-col a:not(:has(i)){
  padding-left: 0;
}

/* VERSION COMPACTA */
@media (min-width: 1200px){

  .ala-mega-menu{
    padding: 20px 24px;
  }

  .mega-container{
    gap: 36px;
  }

  .mega-col{
    min-width: 190px;
  }

  .mega-col a{
    font-size: 15px;
    padding: 10px 12px;
  }
}
/* ═══════════════════════════════════════════════
   ALA PRINTING — MEGA MENU PREMIUM
═══════════════════════════════════════════════ */

.ala-accessories-mega {
  position: relative;
}

/* PANEL */

.ala-mega-panel {

  position: absolute;

  top: calc(100% + 8px);

  left: 50%;

  transform:
    translateX(-50%)
    translateY(8px);

  width: min(1380px, calc(100vw - 40px));

  background:
    rgba(255,255,255,.98);

  backdrop-filter: blur(20px);

  border-radius: 26px;

  border:
    1px solid rgba(255,255,255,.25);

  box-shadow:
    0 20px 60px rgba(0,0,0,.12);

  padding: 22px;

  display: grid;

  grid-template-columns:
    380px 1fr;

  gap: 26px;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .22s ease,
    transform .22s ease;

  z-index: 9999;
}
.ala-accessories-mega {
  position: relative;
}
body {
  overflow-x: hidden;
}
.ala-navbar,
header {
  overflow: visible !important;
}
.ala-mega-panel::-webkit-scrollbar {
  width: 8px;
}

.ala-mega-panel::-webkit-scrollbar-thumb {

  background:
    rgba(1,85,181,.35);

  border-radius: 999px;
}
/* SHOW */


.ala-accessories-mega:hover .ala-mega-panel {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform:
    translateX(-50%)
    translateY(0);
}

/* FEATURE */

.ala-mega-feature {

  position: relative;

  overflow: hidden;

  border-radius: 22px;

  min-height: 640px;

  background: #0B2E56;
}
.ala-mega-feature-content h2 {

  font-size:
    clamp(2rem, 2.6vw, 3rem);

  line-height: 1.02;
}
.ala-mega-content {

  align-content: start;
}
.ala-mega-feature img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s ease,
    filter .5s ease;
}

.ala-mega-feature:hover img {
  transform: scale(1.08);
}

.ala-mega-feature-overlay {

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.15),
      rgba(0,0,0,.72)
    );
}

.ala-mega-feature-content {

  position: absolute;

  left: 34px;
  right: 34px;
  bottom: 34px;

  z-index: 3;
}

.ala-mega-badge {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  border-radius: 999px;

  background:
    rgba(255,255,255,.14);

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: .8rem;
  font-weight: var(--fw-bold);

  text-transform: uppercase;

  letter-spacing: .1em;

  margin-bottom: 18px;
}

.ala-mega-feature-content h2 {

  font-size:
    clamp(2.1rem, 3vw, 3.4rem);

  line-height: 1.05;

  font-weight: var(--fw-black);

  color: #fff;

  margin-bottom: 18px;

  letter-spacing: -.04em;
}

.ala-mega-feature-content p {

  color:
    rgba(255,255,255,.88);

  font-size: 1rem;

  line-height: 1.75;

  margin-bottom: 24px;

  max-width: 520px;
}

/* BUTTON */

.ala-mega-btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      var(--color-primary),
      #2B7FE4
    );

  color: #fff;

  text-decoration: none;

  font-weight: var(--fw-bold);

  transition: .25s ease;

  box-shadow:
    0 10px 30px rgba(1,85,181,.28);
}

.ala-mega-btn:hover {

  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(1,85,181,.38);
}

/* CONTENT */

.ala-mega-content {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

/* COLUMN */

.ala-mega-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TITLE */

.ala-mega-title {

  color: var(--color-primary);

  font-size: 1.15rem;

  font-weight: var(--fw-black);

  text-transform: uppercase;

  letter-spacing: .06em;

  padding-bottom: 12px;

  border-bottom:
    1px solid rgba(0,0,0,.08);
}

/* CARD */

.ala-mega-card {

  position: relative;

  overflow: hidden;

  border-radius: 22px;

  background: #fff;

  text-decoration: none;

  border:
    1px solid rgba(0,0,0,.05);

  box-shadow:
    0 8px 24px rgba(0,0,0,.05);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.ala-mega-card:hover {

  transform:
    translateY(-7px);

  border-color:
    rgba(1,85,181,.2);

  box-shadow:
    0 22px 40px rgba(0,0,0,.12);
}

/* THUMB */

.ala-mega-thumb {

  position: relative;

  overflow: hidden;

  height: 185px;
}

.ala-mega-thumb img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1s ease;
}

.ala-mega-card:hover img {
  transform: scale(1.08);
}

/* SHINE EFFECT */

.ala-mega-thumb::after {

  content: "";

  position: absolute;

  top: -120%;
  left: -40%;

  width: 70%;
  height: 320%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.55),
      transparent
    );

  transform: rotate(25deg);

  transition: .9s ease;
}

.ala-mega-card:hover .ala-mega-thumb::after {
  left: 160%;
}

/* INFO */

.ala-mega-info {
  padding: 22px;
}

.ala-mega-info span {

  display: inline-block;

  color: var(--color-primary);

  font-size: .75rem;

  font-weight: var(--fw-bold);

  text-transform: uppercase;

  letter-spacing: .12em;

  margin-bottom: 10px;
}

.ala-mega-info h4 {

  color: var(--color-secondary);

  font-size: 1.12rem;

  font-weight: var(--fw-bold);

  margin-bottom: 10px;

  transition: .25s ease;
}

.ala-mega-card:hover h4 {
  color: var(--color-primary);
}

.ala-mega-info p {

  color: var(--color-text-muted);

  font-size: .92rem;

  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 1380px) {

  .ala-mega-panel {

    grid-template-columns: 1fr;

    max-height: 88vh;

    overflow-y: auto;
  }

  .ala-mega-feature {
    min-height: 460px;
  }

}

@media (max-width: 980px) {

  .ala-mega-content {

    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .ala-mega-panel {

    position: static;

    width: 100%;

    transform: none !important;

    border-radius: 22px;

    padding: 18px;

    margin-top: 12px;
  }

  .ala-mega-feature {

    min-height: 360px;
  }

  .ala-mega-feature-content {

    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .ala-mega-feature-content h2 {

    font-size: 2rem;
  }

  .ala-mega-thumb {
    height: 210px;
  }

}



/
/* ══════════════════════════════════════════════
   CATEGORÍAS RÁPIDAS
══════════════════════════════════════════════ */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform .2s;
  height: 100%;
  color: var(--color-text);
}
.cat-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--color-text);
}
.cat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(1,85,181,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 16px;
  transition: background var(--transition);
}
.cat-card:hover .cat-icon { background: var(--color-primary); color: #fff; }
.cat-card h5 { font-size: 16px; font-weight: var(--fw-semi); margin-bottom: 4px; }
.cat-card p  { font-size: 13px; color: var(--color-text-muted); margin: 0; }

/* ══════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--color-text-muted);
  font-size: 16px;
}
.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════
   PRODUCT TABS & CARDS
══════════════════════════════════════════════ */
.product-tabs {
  border-bottom: 2px solid var(--color-border);
  gap: 4px;
  justify-content: center;
}
.product-tabs .nav-link {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--color-text-muted);
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 0;
  margin-bottom: -2px;
  transition: color var(--transition);
}
.product-tabs .nav-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background: none;
}
.product-tabs .nav-link:hover { color: var(--color-primary); }

.product-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.product-img-wrap {
  position: relative;
  background: var(--color-bg-light);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-new  { background: var(--color-primary); color: #fff; }
.badge-sale { background: #ef4444; color: #fff; }
.badge-hot  { background: #f97316; color: #fff; }

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 11px;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.product-name {
  font-size: 15px;
  font-weight: var(--fw-semi);
  margin-bottom: 6px;
  line-height: 1.35;
}
.product-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}
.product-price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-right: 6px;
}
.btn-add-cart {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition), transform .1s;
}
.btn-add-cart:hover { background: var(--color-primary-hover); transform: scale(1.1); }

/* ══════════════════════════════════════════════
   PROMO BANNER
══════════════════════════════════════════════ */
.promo-banner { background: var(--color-bg-light); }
.promo-inner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 60px;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.promo-inner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.promo-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.promo-text h2 {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 12px;
}
.promo-text p {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 24px;
}
.promo-image img {
  max-width: 450px;
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════════
   SOFTWARE / PROGRAMAS
═══════════════════════════════════════════════════════ */

.software-section{
  position:relative;
  padding:var(--section-pad) 20px;
  overflow:hidden;

  background:
    radial-gradient(circle at top left,
      rgba(1,85,181,.16),
      transparent 34%),
    radial-gradient(circle at bottom right,
      rgba(11,46,86,.12),
      transparent 36%),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f7fa 100%
    );
}

.software-section .container{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1320px;
  margin:auto;
}

/* ═════════ HEADER ═════════ */

.software-header{
  text-align:center;
  margin-bottom:75px;
}

.software-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;
  border-radius:999px;

  background:rgba(1,85,181,.08);
  border:1px solid rgba(1,85,181,.12);

  color:var(--color-primary);

  font-size:.82rem;
  font-weight:var(--fw-bold);
  letter-spacing:1px;

  margin-bottom:22px;
}

.software-header h2{
  font-family:var(--font-heading);
  font-size:clamp(2.4rem,5vw,4.3rem);
  line-height:1.05;
  font-weight:var(--fw-black);

  color:var(--color-secondary);

  margin-bottom:22px;
}

.software-header h2 span{
  background:linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.software-header p{
  width:100%;
  max-width:860px;
  margin:auto;

  color:var(--color-text-muted);

  font-size:1.05rem;
  line-height:1.9;
}

/* ═════════ GRID ═════════ */

.software-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:32px;
  align-items:stretch;
}

/* ═════════ CARD ═════════ */

.software-card{
  position:relative;

  display:flex;
  flex-direction:column;

  min-height:640px;
  height:100%;

  padding:34px;

  border-radius:28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.92),
      rgba(255,255,255,.78)
    );

  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,.45);

  overflow:hidden;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

  box-shadow:
    0 10px 40px rgba(11,46,86,.08);
}

.software-card::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      145deg,
      rgba(1,85,181,.10),
      transparent 55%
    );

  opacity:.9;
  pointer-events:none;
}

.software-card::after{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.9),
      transparent
    );
}

.software-card:hover{
  transform:translateY(-10px);

  border-color:rgba(1,85,181,.14);

  box-shadow:
    0 22px 55px rgba(1,85,181,.16);
}

/* ═════════ TOP ═════════ */

.software-top{
  min-height:95px;

  display:flex;
  align-items:flex-start;
  justify-content:space-between;

  gap:18px;

  margin-bottom:30px;
}

/* ═════════ ICON ═════════ */

.software-icon{
  width:78px;
  height:78px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    linear-gradient(
      135deg,
      var(--color-primary),
      var(--color-secondary)
    );

  color:#fff;

  font-size:1.7rem;

  box-shadow:
    0 14px 30px rgba(1,85,181,.24);

  flex-shrink:0;
}

/* ═════════ BADGE ═════════ */

.software-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:9px 14px;

  border-radius:999px;

  background:rgba(11,46,86,.06);

  border:1px solid rgba(11,46,86,.08);

  color:var(--color-secondary);

  font-size:.72rem;
  font-weight:var(--fw-bold);

  letter-spacing:.9px;

  text-align:center;
}

/* ═════════ TITLE ═════════ */

.software-card h3{
  min-height:62px;

  display:flex;
  align-items:center;

  font-size:1.6rem;
  line-height:1.2;
  font-weight:var(--fw-bold);

  color:var(--color-secondary);

  margin-bottom:18px;
}

/* ═════════ DESCRIPTION ═════════ */

.software-card p{
  min-height:150px;

  color:var(--color-text-muted);

  line-height:1.85;
  font-size:.98rem;

  margin-bottom:24px;
}

/* ═════════ LIST ═════════ */

.software-list{
  flex:1;

  list-style:none;

  padding:0;
  margin:0 0 30px;
}

.software-list li{
  position:relative;

  padding-left:30px;
  margin-bottom:14px;

  color:var(--color-text);

  font-size:.96rem;
  font-weight:500;
}

.software-list li::before{
  content:"";

  position:absolute;

  left:0;
  top:8px;

  width:10px;
  height:10px;

  border-radius:50%;

  background:var(--color-primary);

  box-shadow:
    0 0 0 5px rgba(1,85,181,.12);
}

/* ═════════ BUTTON ═════════ */

.software-btn{
  margin-top:auto;

  width:100%;
  height:58px;
  min-height:58px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  border-radius:18px;

  text-decoration:none;

  background:
    linear-gradient(
      135deg,
      var(--color-primary),
      var(--color-secondary)
    );

  color:#fff;

  font-size:.96rem;
  font-weight:var(--fw-bold);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    opacity .28s ease;

  box-shadow:
    0 12px 28px rgba(1,85,181,.22);
}

.software-btn i{
  transition:transform .28s ease;
}

.software-btn:hover{
  transform:translateY(-3px);

  box-shadow:
    0 18px 34px rgba(1,85,181,.30);
}

.software-btn:hover i{
  transform:translateX(4px);
}

/* ═════════ GLOW FX ═════════ */

.software-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
  pointer-events:none;
  opacity:.16;
}

.software-glow-1{
  width:340px;
  height:340px;

  background:var(--color-primary);

  top:-120px;
  left:-120px;
}

.software-glow-2{
  width:360px;
  height:360px;

  background:var(--color-secondary);

  bottom:-160px;
  right:-140px;
}

/* ═════════ RESPONSIVE ═════════ */

@media (max-width:992px){

  .software-grid{
    gap:24px;
  }

  .software-card{
    min-height:620px;
  }

}

@media (max-width:768px){

  .software-section{
    padding:70px 18px;
  }

  .software-header{
    margin-bottom:55px;
  }

  .software-card{
    min-height:auto;
    padding:28px;
    border-radius:24px;
  }

  .software-top{
    min-height:auto;

    flex-direction:column;
    align-items:flex-start;

    gap:18px;
  }

  .software-card h3{
    min-height:auto;
    font-size:1.45rem;
  }

  .software-card p{
    min-height:auto;
  }

  .software-btn{
    height:56px;
    min-height:56px;
  }

}

@media (max-width:480px){

  .software-grid{
    grid-template-columns:1fr;
  }

  .software-card{
    padding:24px;
  }

  .software-icon{
    width:72px;
    height:72px;
    font-size:1.5rem;
  }

  .software-header p{
    font-size:.96rem;
  }

}
/* ═══════════════════════════════════════════════
   ALA PRINTING
═══════════════════════════════════════════════ */

.printing-hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:#fff;
}

/* BACKGROUND */

.printing-bg{
  position:absolute;
  inset:0;
}

.printing-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.printing-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.95),
      rgba(255,255,255,.82)
    );
}

/* CONTAINER */

.printing-container{
  position:relative;
  z-index:2;

  padding-top:120px;
  padding-bottom:120px;
}

.printing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT */

.printing-badge{
  display:inline-flex;

  padding:12px 20px;

  border-radius:999px;

  border:1px solid rgba(1,85,181,.2);

  background:rgba(1,85,181,.05);

  color:#0155B5;

  font-size:.85rem;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:28px;
}

.printing-content h1{
  font-size:clamp(4rem,8vw,7rem);
  line-height:.95;
  font-weight:800;

  color:#111;

  margin-bottom:30px;
}

.printing-content h1 span{
  color:#0155B5;
}

.printing-description{
  max-width:650px;

  font-size:1.18rem;
  line-height:1.9;

  color:#555;

  margin-bottom:40px;
}

/* FEATURES */

.printing-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;

  margin-bottom:45px;
}

.printing-feature{
  display:flex;
  align-items:center;
  gap:14px;

  font-size:1.05rem;
  font-weight:600;

  color:#232323;
}

.printing-feature i{
  color:#0155B5;
  font-size:1.2rem;
}

/* BUTTON */

.printing-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;

  height:58px;
  padding:0 30px;

  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      #0155B5,
      #0B2E56
    );

  color:#fff;
  font-weight:700;

  transition:.3s ease;

  box-shadow:
    0 10px 25px rgba(1,85,181,.2);
}

.printing-btn:hover{
  transform:translateY(-4px);
  color:#fff;
}

/* RIGHT */

.printing-right{
  display:flex;
  justify-content:center;
}

.printing-logo-card{
  width:100%;
  max-width:540px;

  padding:50px;

  border-radius:35px;

  background:#fff;

  border:1px solid rgba(0,0,0,.06);

  box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.printing-logo-card img{
  width:100%;
}

/* PRODUCTS */

.printing-products{
  background:#fff;
}

.printing-heading{
  text-align:center;
  margin-bottom:80px;
}

.printing-mini{
  display:inline-block;

  margin-bottom:18px;

  color:#0155B5;

  font-size:.9rem;
  font-weight:700;
  letter-spacing:2px;
}

.printing-heading h2{
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:1.1;
  font-weight:800;

  color:#111;

  margin-bottom:20px;
}

.printing-heading h2 span{
  color:#0155B5;
}

.printing-heading p{
  max-width:700px;
  margin:auto;

  color:#666;
  line-height:1.9;
}

/* MENU GRID */

.printing-menu-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;

  margin-bottom:35px;
}

.printing-menu-card{
  padding:35px;

  border-radius:28px;

  background:#fff;

  border:1px solid rgba(0,0,0,.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,.04);

  transition:.3s ease;
}

.printing-menu-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 20px 40px rgba(1,85,181,.08);
}

.printing-menu-top{
  display:flex;
  align-items:center;
  gap:16px;

  margin-bottom:22px;
}

.printing-menu-icon{
  width:58px;
  height:58px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  background:rgba(1,85,181,.08);

  color:#0155B5;

  font-size:1.3rem;
}

.printing-menu-top h3{
  font-size:1.4rem;
  font-weight:800;

  color:#0155B5;
}

.printing-divider{
  width:100%;
  height:1px;

  background:
    rgba(0,0,0,.08);

  margin-bottom:28px;
}

.printing-links{
  display:grid;
  gap:22px;
}

.printing-link{
  display:flex;
  align-items:center;
  gap:16px;

  color:#333;

  font-size:1.05rem;
  font-weight:600;
}

.printing-link i{
  color:#0155B5;
}

.brand{
  padding-left:4px;
}

/* CTA */

.printing-cta{
  padding:35px 45px;

  border-radius:26px;

  background:
    linear-gradient(
      135deg,
      #0155B5,
      #0B2E56
    );

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.printing-cta-left{
  display:flex;
  align-items:center;
  gap:25px;
}

.printing-cta-icon{
  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:22px;

  background:rgba(255,255,255,.12);

  color:#fff;

  font-size:1.8rem;
}

.printing-cta h3{
  color:#fff;

  font-size:1.7rem;
  font-weight:700;

  margin-bottom:8px;
}

.printing-cta p{
  color:rgba(255,255,255,.8);
}

.printing-cta-btn{
  min-width:220px;
  height:56px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  border-radius:16px;

  background:#fff;

  color:#0155B5;
  font-weight:700;
}

.printing-cta-btn:hover{
  color:#0155B5;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .printing-menu-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:991px){

  .printing-grid{
    grid-template-columns:1fr;
  }

  .printing-features{
    grid-template-columns:1fr;
  }

  .printing-cta{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:768px){

  .printing-container{
    padding-top:90px;
    padding-bottom:90px;
  }

  .printing-menu-grid{
    grid-template-columns:1fr;
  }

  .printing-cta{
    padding:35px 28px;
  }

  .printing-cta-left{
    flex-direction:column;
    align-items:flex-start;
  }

}
/* ═══════════════════════════════════════════
   HERO PREMIUM — VIDEO MÁS CLARO
═══════════════════════════════════════════ */

.hero-premium{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:140px 5% 80px;
  background:#000;
}

/* VIDEO BG */

.hero-main-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;

  /* MÁS CLARO */
  filter:
    brightness(.82)
    contrast(1.08)
    saturate(1.12);

  transform:scale(1.03);
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;

  /* OVERLAY MÁS TRANSPARENTE */
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.32) 45%,
      rgba(0,0,0,.48) 100%
    ),

    radial-gradient(
      circle at top,
      rgba(1,85,181,.18),
      rgba(11,46,86,.20),
      rgba(0,0,0,.18)
    );

  z-index:1;
}

/* LOGO */

.hero-logo-wrap{
  position:relative;
  z-index:5;
  margin-bottom:60px;
}

.hero-logo{
  width:220px;
  object-fit:contain;

  filter:
    drop-shadow(0 0 35px rgba(1,85,181,.65))
    drop-shadow(0 0 70px rgba(1,85,181,.25));
}

/* CARDS WRAP */

.hero-cards{
  position:relative;
  z-index:5;
  width:100%;
  max-width:1400px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:38px;
  flex-wrap:wrap;
}

/* CARD */

.hero-card{
  position:relative;
  width:290px;
  height:720px;

  /* MÁS TRANSPARENTE */
  background:rgba(8,12,20,.34);

  border:
    1px solid rgba(255,255,255,.18);

  backdrop-filter:blur(6px);

  overflow:hidden;

  clip-path:polygon(
    0 0,
    100% 0,
    100% 92%,
    50% 100%,
    0 92%
  );

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    background .45s ease;

  cursor:pointer;

  box-shadow:
    0 10px 40px rgba(0,0,0,.24);
}

/* VIDEO INSIDE CARD */

.card-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;

  opacity:0;

  transition:
    opacity .5s ease,
    transform 1.5s ease;

  z-index:0;

  /* VIDEO MÁS VISIBLE */
  filter:
    brightness(.82)
    contrast(1.1)
    saturate(1.1);

  transform:scale(1);
}

/* ACTIVE VIDEO */

.hero-card:hover .card-video{
  opacity:.88;
  transform:scale(1.08);
}

/* SCALE */

.hero-card:hover{
  transform:
    translateY(-20px)
    scale(1.06);

  background:rgba(10,15,30,.22);

  box-shadow:
    0 0 40px rgba(1,85,181,.55),
    0 0 90px rgba(1,85,181,.25);
}

/* GLOW */

.card-glow{
  position:absolute;
  inset:0;

  /* OVERLAY MÁS SUAVE */
  background:
    linear-gradient(
      180deg,
      rgba(1,85,181,.12),
      rgba(11,46,86,.08),
      rgba(0,0,0,.18)
    );

  z-index:1;
}

/* TOP */

.card-top{
  position:relative;
  z-index:3;
  padding-top:40px;
  text-align:center;
}

.card-letter{
  display:block;
  font-size:4.5rem;
  font-weight:800;
  color:#fff;
  line-height:1;

  text-shadow:
    0 0 20px rgba(1,85,181,.45);
}

.card-mini{
  display:block;
  margin-top:10px;
  font-size:.75rem;
  letter-spacing:3px;
  color:rgba(255,255,255,.82);
}

/* CENTER */

.card-center{
  position:relative;
  z-index:3;
  padding:80px 35px 0;
  text-align:center;
}

.card-center h3{
  color:#fff;
  font-size:2rem;
  font-weight:800;
  margin-bottom:22px;
  line-height:1.1;

  text-shadow:
    0 0 18px rgba(0,0,0,.45);
}

.card-center p{
  color:rgba(255,255,255,.92);
  font-size:.96rem;
  line-height:1.8;
  font-weight:500;

  text-shadow:
    0 0 10px rgba(0,0,0,.45);
}

/* ARROWS */

.card-arrows{
  position:absolute;
  left:50%;
  bottom:130px;
  transform:translateX(-50%);
  z-index:3;
}

.card-arrows span{
  display:block;
  width:72px;
  height:18px;

  margin:10px auto;

  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-top:18px solid #fff;

  opacity:.96;

  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.35));
}

/* ICON */

.card-icon{
  position:absolute;
  left:50%;
  bottom:40px;

  transform:translateX(-50%);

  width:74px;
  height:74px;

  background:
    linear-gradient(
      135deg,
      var(--color-primary),
      #2e8fff
    );

  border:
    5px solid rgba(255,255,255,.95);

  display:flex;
  align-items:center;
  justify-content:center;

  rotate:45deg;

  z-index:4;

  box-shadow:
    0 0 40px rgba(1,85,181,.75);
}

.card-icon i{
  rotate:-45deg;
  color:#fff;
  font-size:1.7rem;
}

/* MOBILE */

@media(max-width:1100px){

  .hero-card{
    width:260px;
    height:650px;
  }

}

@media(max-width:768px){

  .hero-premium{
    padding-top:120px;
  }

  .hero-cards{
    gap:30px;
  }

  .hero-card{
    width:100%;
    max-width:340px;
    height:620px;
  }

  .card-center{
    padding:60px 26px 0;
  }

  .card-center h3{
    font-size:1.7rem;
  }

}
/* ══════════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════════ */

/* ───────── HERO BASE ───────── */
.nosotros-hero {
  position: relative;
  min-height: 85vh; /* 🔥 mejor proporción vs hero principal */
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* ───────── VIDEO BACKGROUND ───────── */
.nosotros-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nosotros-video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Ajuste fino visibilidad */
  filter: brightness(1.05) contrast(1.03);
}

/* Overlay inteligente (izq clara / der oscura) */
.nosotros-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,10,25,0.35) 0%,
    rgba(5,10,25,0.55) 45%,
    rgba(5,10,25,0.75) 100%
  );
}

/* ───────── CONTENIDO ───────── */
.nosotros-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* ───────── HEADER ───────── */
.nosotros-header {
  text-align: center;
  margin-bottom: 35px;
}

.nosotros-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: var(--fw-black);
  letter-spacing: -0.5px;
}

.nosotros-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

/* ───────── GRID ───────── */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

/* ───────── TEXTO ───────── */
.nosotros-text p {
  margin-bottom: 16px;
  line-height: 1.65;
}

.nosotros-text ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.nosotros-text li {
  margin-bottom: 12px;
}

/* ───────── CARDS ───────── */
.nosotros-cards {
  display: grid;
  gap: 18px; /* 🔥 más compacto y elegante */
}

.card {
  position: relative;
  padding: 24px 26px; /* 🔥 reducido */
  border-radius: var(--radius-lg);

  background: rgba(11, 46, 86, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

/* Hover sutil */
.card:hover {
  transform: translateY(-5px);
  background: rgba(11, 46, 86, 0.78);
}

/* Título */
.card h3 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semi);
  font-size: 1.25rem;
  letter-spacing: 0.3px;

  color: #fff;
  margin-bottom: 8px;
}

/* Texto */
.card p {
  font-family: var(--font-body);
  font-weight: var(--fw-normal);

  font-size: 0.95rem;
  line-height: 1.5;

  color: rgba(255,255,255,0.88);
  max-width: 90%;
}

/* Efecto glass premium */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.08),
    transparent 60%
  );

  opacity: 0.6;
  pointer-events: none;
}
/* FIX bootstrap card blanca */
.nosotros-cards .card{
  background: rgba(11, 46, 86, 0.65) !important;
  background-color: rgba(11, 46, 86, 0.65) !important;

  border: 1px solid rgba(255,255,255,0.12) !important;

  color:#fff !important;

  box-shadow: var(--shadow-md) !important;
}

/* Hover */
.nosotros-cards .card:hover{
  background: rgba(11, 46, 86, 0.78) !important;
  background-color: rgba(11, 46, 86, 0.78) !important;
}
/* ───────── RESPONSIVE ───────── */
@media (max-width: 900px) {
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nosotros-container {
    padding: 60px 20px;
  }
}

/* ═══════════════════════════════════════════
   HERO LOGO MÁS PEQUEÑO Y RESPONSIVE
═══════════════════════════════════════════ */

.nosotros-header{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:40px;
}

.nosotros-header img{
  width:100%;
  max-width:300px; /* AJUSTA TAMAÑO */
  height:auto;
  object-fit:contain;

  /* OPCIONAL */
  filter:
    drop-shadow(0 8px 25px rgba(0,0,0,.35));

  transition:transform .35s ease;
}

/* HOVER SUAVE */

.nosotros-header img:hover{
  transform:scale(1.02);
}

/* TABLET */

@media(max-width:992px){

  .nosotros-header img{
    max-width:620px;
  }

}

/* MOBILE */

@media(max-width:768px){

  .nosotros-header{
    margin-bottom:25px;
  }

  .nosotros-header img{
    max-width:92%;
  }

}
/* ═══════════════════════════════════════════
   HERO — 3 VIDEOS PRINCIPALES
═══════════════════════════════════════════ */

.hero-premium{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  background:#000;
}

/* VIDEOS */

.hero-main-video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  opacity:0;

  transition:
    opacity 1.8s ease,
    transform 8s ease;

  z-index:0;

  filter:
    brightness(1.28)
    contrast(1.08)
    saturate(1.12);

  transform:scale(1.02);
}

/* VIDEO ACTIVO */

.hero-main-video.active{
  opacity:1;
  z-index:1;

  transform:scale(1.06);
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.18),
      rgba(0,0,0,.38)
    ),

    radial-gradient(
      circle at center,
      rgba(1,85,181,.10),
      rgba(11,46,86,.22),
      rgba(0,0,0,.18)
    );

  z-index:2;
}

/* CONTENT */

.hero-content{
  position:relative;
  z-index:5;

  min-height:100vh;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:120px 20px;
}

.hero-content h1{
  font-size:clamp(3rem,8vw,7rem);
  line-height:.95;
  font-weight:800;

  color:#fff;

  margin-bottom:28px;

  text-shadow:
    0 10px 30px rgba(0,0,0,.45);
}

.hero-content p{
  max-width:850px;

  color:rgba(255,255,255,.92);

  font-size:1.2rem;
  line-height:1.9;

  text-shadow:
    0 5px 20px rgba(0,0,0,.45);
}

/* MOBILE */

@media(max-width:768px){

  .hero-main-video{
    filter:
      brightness(1.18)
      contrast(1.05)
      saturate(1.08);
  }

  .hero-content p{
    font-size:1rem;
    line-height:1.7;
  }

}
/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform .2s;
  height: 100%;
}
.service-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(1,85,181,.5);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(1,85,181,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #60a5fa;
  margin-bottom: 18px;
}
.service-card h5 {
  color: #fff;
  font-size: 17px;
  font-weight: var(--fw-semi);
  margin-bottom: 8px;
}
.service-card p {
  color: rgba(219,219,219,.7);
  font-size: 14px;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
/* ═══════════════════════════════════════════════
   SERVICIOS MAQUI-ALA
═══════════════════════════════════════════════ */

.ala-services-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left,
      rgba(1,85,181,.18),
      transparent 40%),
    linear-gradient(
      180deg,
      #07111f 0%,
      #0B2E56 100%
    );

  color:#fff;
}

#servicesCanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  opacity:.22;
}

.ala-services-section .container{
  position:relative;
  z-index:2;
}

.ala-services-header{
  max-width:900px;
  margin:auto auto 70px;
}

.ala-section-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 18px;

  border:1px solid rgba(255,255,255,.15);

  border-radius:999px;

  background:rgba(255,255,255,.06);

  backdrop-filter:blur(14px);

  font-size:.9rem;
  font-weight:600;
  letter-spacing:.5px;

  margin-bottom:25px;
}

.ala-services-title{
  font-size:clamp(2.5rem,5vw,5rem);
  font-weight:800;
  line-height:1.05;

  margin-bottom:25px;
}

.ala-services-title span{
  background:linear-gradient(
    90deg,
    #fff,
    #69b7ff,
    #0155B5
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.ala-services-subtitle{
  color:rgba(255,255,255,.75);
  font-size:1.05rem;
  line-height:1.9;
}

/* GRID */

.ala-services-grid{
  position:relative;
  z-index:2;
}

/* CARD */

.ala-service-card{
  position:relative;

  height:100%;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.03)
    );

  border:1px solid rgba(255,255,255,.08);

  border-radius:28px;

  overflow:hidden;

  backdrop-filter:blur(18px);

  transition:.45s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}

.ala-service-card:hover{
  transform:
    translateY(-10px)
    scale(1.02);

  border-color:
    rgba(1,85,181,.55);

  box-shadow:
    0 25px 50px rgba(1,85,181,.25);
}

.ala-service-glow{
  position:absolute;
  width:200px;
  height:200px;

  background:
    radial-gradient(
      circle,
      rgba(1,85,181,.45),
      transparent 70%
    );

  top:-70px;
  right:-70px;

  opacity:0;
  transition:.5s ease;
}

.ala-service-card:hover .ala-service-glow{
  opacity:1;
}

.ala-service-image{
  position:relative;
  overflow:hidden;
  height:240px;
}

.ala-service-image img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:1s ease;
}

.ala-service-card:hover img{
  transform:scale(1.08);
}

.ala-service-image::after{
  content:'';

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(7,17,31,.85)
    );
}

.ala-service-content{
  position:relative;
  padding:30px;
}

.ala-service-icon{
  width:68px;
  height:68px;

  border-radius:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:22px;

  background:
    linear-gradient(
      135deg,
      #0155B5,
      #0B2E56
    );

  font-size:1.6rem;

  box-shadow:
    0 10px 25px rgba(1,85,181,.35);
}

.ala-service-content h3{
  font-size:1.4rem;
  font-weight:700;

  margin-bottom:15px;
}

.ala-service-content p{
  color:rgba(255,255,255,.72);

  line-height:1.8;

  margin-bottom:20px;
}

.ala-service-content ul{
  list-style:none;
  padding:0;
}

.ala-service-content ul li{
  position:relative;

  padding-left:26px;

  margin-bottom:12px;

  color:#dbe9ff;

  font-size:.95rem;
}

.ala-service-content ul li::before{
  content:'';

  position:absolute;

  left:0;
  top:8px;

  width:10px;
  height:10px;

  border-radius:50%;

  background:#0155B5;

  box-shadow:
    0 0 15px #0155B5;
}

/* CTA */

.ala-services-cta{
  margin-top:80px;
}

.ala-cta-box{
  position:relative;

  padding:50px;

  border-radius:30px;

  background:
    linear-gradient(
      135deg,
      rgba(1,85,181,.25),
      rgba(255,255,255,.04)
    );

  border:1px solid rgba(255,255,255,.08);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;

  overflow:hidden;
}

.ala-cta-box::before{
  content:'';

  position:absolute;

  width:400px;
  height:400px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(1,85,181,.35),
      transparent 70%
    );

  top:-180px;
  right:-120px;
}

.ala-cta-mini{
  display:inline-block;

  margin-bottom:14px;

  color:#69b7ff;

  font-size:.9rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.ala-cta-box h3{
  font-size:2rem;
  line-height:1.3;

  max-width:650px;
}

.ala-btn-services{
  min-width:240px;

  height:62px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      #0155B5,
      #0B2E56
    );

  color:#fff;

  font-weight:700;

  transition:.3s ease;

  box-shadow:
    0 10px 30px rgba(1,85,181,.35);
}

.ala-btn-services:hover{
  transform:translateY(-4px);

  box-shadow:
    0 20px 40px rgba(1,85,181,.45);
}

/* RESPONSIVE */

@media(max-width:991px){

  .ala-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .ala-btn-services{
    width:100%;
  }

}

@media(max-width:768px){

  .ala-services-title{
    font-size:2.4rem;
  }

  .ala-service-image{
    height:220px;
  }

  .ala-cta-box{
    padding:35px;
  }

  .ala-cta-box h3{
    font-size:1.6rem;
  }

}
/* ═══════════════════════════════════════════════
   ALA GROMEX
═══════════════════════════════════════════════ */

.alagromex-section{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:#fff;
}

.alagromex-bg{
  position:absolute;
  inset:0;
}

.alagromex-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.alagromex-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.92),
      rgba(255,255,255,.75)
    );
}

.alagromex-container{
  position:relative;
  z-index:2;

  padding-top:120px;
  padding-bottom:120px;
}

.alagromex-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;
}

/* LEFT */

.alagromex-tag{
  display:inline-flex;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(1,85,181,.08);

  color:#0155B5;

  font-size:.85rem;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:25px;
}

.alagromex-content h2{
  font-size:clamp(3rem,6vw,5rem);
  font-weight:800;
  line-height:1;
  color:#0B2E56;

  margin-bottom:30px;
}

.alagromex-content h2 span{
  color:#0155B5;
}

.alagromex-text{
  font-size:1.15rem;
  line-height:2;

  color:#4B5563;

  margin-bottom:40px;
}

.alagromex-list{
  display:grid;
  gap:18px;

  margin-bottom:40px;
}

.alagromex-item{
  display:flex;
  align-items:center;
  gap:15px;

  font-size:1.05rem;
  font-weight:600;

  color:#0B2E56;
}

.alagromex-item i{
  color:#0155B5;
  font-size:1.2rem;
}

.alagromex-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;

  height:58px;
  padding:0 28px;

  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      #0155B5,
      #0B2E56
    );

  color:#fff;
  font-weight:700;

  transition:.3s ease;
}

.alagromex-btn:hover{
  transform:translateY(-4px);
  color:#fff;
}

/* RIGHT */

.alagromex-logo-wrap{
  display:flex;
  justify-content:center;
}

.alagromex-logo-card{
  width:100%;
  max-width:520px;

  padding:50px;

  border-radius:35px;

  background:#fff;

  border:1px solid rgba(1,85,181,.08);

  box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.alagromex-logo-card img{
  width:100%;
}

/* PRODUCTS */

.agro-products{
  background:#fff;
}

.agro-heading{
  text-align:center;
  margin-bottom:70px;
}

.agro-mini{
  display:inline-block;

  margin-bottom:20px;

  color:#0155B5;

  font-weight:700;
  letter-spacing:2px;
}

.agro-heading h2{
  font-size:clamp(2.4rem,5vw,4.5rem);
  font-weight:800;

  color:#0B2E56;

  margin-bottom:20px;
}

.agro-heading h2 span{
  color:#0155B5;
}

.agro-heading p{
  color:#6B7280;
  max-width:700px;
  margin:auto;

  line-height:1.9;
}

/* CARD */

.agro-card{
  height:100%;

  overflow:hidden;

  border-radius:28px;

  background:#fff;

  border:1px solid rgba(0,0,0,.06);

  transition:.35s ease;

  box-shadow:
    0 10px 35px rgba(0,0,0,.05);
}

.agro-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 20px 50px rgba(1,85,181,.12);
}

.agro-image{
  height:240px;
  overflow:hidden;
}

.agro-image img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:1s ease;
}

.agro-card:hover img{
  transform:scale(1.08);
}

.agro-content{
  padding:30px;
}

.agro-icon{
  width:68px;
  height:68px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      #0155B5,
      #0B2E56
    );

  color:#fff;

  font-size:1.5rem;

  margin-bottom:25px;
}

.agro-content h3{
  color:#0B2E56;

  font-size:1.5rem;
  font-weight:700;

  margin-bottom:15px;
}

.agro-content p{
  color:#6B7280;
  line-height:1.8;
}

/* CTA */

.alagromex-cta{
  background:#fff;
  padding-bottom:100px;
}

.alagromex-cta-box{
  padding:60px;

  border-radius:35px;

  background:
    linear-gradient(
      135deg,
      #0155B5,
      #0B2E56
    );

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.alagromex-cta-box span{
  display:block;

  margin-bottom:15px;

  font-size:.9rem;
  font-weight:700;
  letter-spacing:2px;

  opacity:.8;
}

.alagromex-cta-box h2{
  font-size:clamp(2rem,4vw,3rem);
  font-weight:800;
}

.alagromex-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:240px;
  height:60px;

  border-radius:16px;

  background:#fff;

  color:#0155B5;
  font-weight:700;
}

.alagromex-cta-btn:hover{
  color:#0155B5;
}

/* RESPONSIVE */

@media(max-width:991px){

  .alagromex-grid{
    grid-template-columns:1fr;
  }

  .alagromex-logo-card{
    max-width:420px;
  }

  .alagromex-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:768px){

  .alagromex-container{
    padding-top:90px;
    padding-bottom:90px;
  }

  .alagromex-logo-card{
    padding:35px;
  }

  .agro-image{
    height:220px;
  }

  .alagromex-cta-box{
    padding:40px 30px;
  }

}
/* ═══════════════════════════════════════════════
   VIDEOS ULTRA CLAROS — AJUSTE FINO PREMIUM
   ALA PRINTING + ALA GROMEX
═══════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   ALA PRINTING VIDEO
────────────────────────────────────────── */

.printing-video{
  width:100%;
  height:100%;
  object-fit:cover;

  /* MUCHO MÁS CLARO */
  filter:
    brightness(1.32)
    contrast(1.12)
    saturate(1.18);

  transform:scale(1.015);
}

/* OVERLAY MUY SUAVE */

.printing-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.56) 0%,
      rgba(255,255,255,.34) 45%,
      rgba(255,255,255,.22) 100%
    );
}

/* ──────────────────────────────────────────
   ALA GROMEX VIDEO
────────────────────────────────────────── */

.alagromex-video{
  width:100%;
  height:100%;
  object-fit:cover;

  /* MÁS ILUMINADO */
  filter:
    brightness(1.38)
    contrast(1.1)
    saturate(1.15);

  transform:scale(1.015);
}

/* OVERLAY MÁS TRANSPARENTE */

.alagromex-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.50) 0%,
      rgba(255,255,255,.28) 45%,
      rgba(255,255,255,.16) 100%
    );
}

/* ──────────────────────────────────────────
   GLOW PREMIUM
────────────────────────────────────────── */

.printing-bg::after,
.alagromex-bg::after{

  content:"";

  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at top,
      rgba(255,255,255,.12),
      rgba(1,85,181,.05),
      transparent 65%
    );

  pointer-events:none;
}

/* ──────────────────────────────────────────
   MÁS NITIDEZ EN CONTENIDO
────────────────────────────────────────── */

.printing-content,
.alagromex-content,
.printing-logo-card,
.alagromex-logo-card{
  position:relative;
  z-index:5;
}

/* ──────────────────────────────────────────
   MOBILE
────────────────────────────────────────── */

@media(max-width:768px){

  .printing-video,
  .alagromex-video{

    filter:
      brightness(1.22)
      contrast(1.08)
      saturate(1.12);

  }

}
/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.t-stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-style: italic;
}
.t-author { font-size: 13px; font-weight: var(--fw-semi); }

/* ══════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════ */
.newsletter-section h2 {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 8px;
}
.newsletter-section p {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  margin: 0;
}
.newsletter-form .form-control {
  border-radius: var(--radius);
  border: none;
  padding: 12px 16px;
  font-family: var(--font-body);
}
.newsletter-msg { font-size: 13px; color: rgba(255,255,255,.85); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.ala-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer-logo-text {
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: #fff;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }

.ala-footer h6 {
  font-size: 13px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 16px;
}

.ala-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ala-footer ul li, .ala-footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  display: block;
  transition: color var(--transition);
}
.ala-footer ul a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 5px 0;
}
.footer-contact li i { color: var(--color-primary); font-size: 15px; min-width: 16px; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }

.footer-top { padding-bottom: 48px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-legal a:hover { color: #fff; }

/* ══════════════════════════════════════════════
   CHATBOT & WHATSAPP FAB
══════════════════════════════════════════════ */
.chatbot-fab-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.wa-fab, .chat-fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: none;
}
.wa-fab:hover, .chat-fab:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}
.wa-fab { background: #25D366; color: #fff; }
.chat-fab { background: var(--color-primary); color: #fff; }

/* CHATBOT WINDOW */
.chatbot-window {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1049;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(.92) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity .2s, transform .2s;
  max-height: 520px;
}
.chatbot-window.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

.chatbot-header {
  background: var(--color-secondary);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.chatbot-meta { flex: 1; }
.chatbot-meta strong { display: block; color: #fff; font-size: 14px; }
.chatbot-meta small { color: rgba(255,255,255,.7); font-size: 12px; }
.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 5px;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}
.chatbot-close {
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color .15s;
}
.chatbot-close:hover { color: #fff; }

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
  min-height: 240px;
  max-height: 340px;
}

.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--color-primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chat-quick-replies button {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.chat-quick-replies button:hover {
  border-color: var(--color-primary);
  background: rgba(1,85,181,.05);
}

.chat-typing { display: flex; gap: 4px; padding: 10px 14px; }
.chat-typing span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.chatbot-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.chatbot-input input {
  flex: 1;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .15s;
}
.chatbot-input input:focus { border-color: var(--color-primary); }
.chatbot-input button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  font-size: 15px;
}
.chatbot-input button:hover { background: var(--color-primary-hover); }

/* ══════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════ */
.ala-modal {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ala-modal .modal-header {
  background: var(--color-secondary);
  color: #fff;
}
.ala-modal .modal-title { font-size: 17px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ala-nav-links { display: none; }
  .ala-hamburger { display: flex; }
  .mega-container { grid-template-columns: repeat(2,1fr); }
  .mega-featured { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .promo-inner { flex-direction: column; padding: 36px 28px; }
  .promo-image { display: none; }
  .hero-stats { gap: 20px; }
  .chatbot-window { width: calc(100vw - 32px); right: 16px; }
  .chatbot-fab-group { right: 16px; bottom: 16px; }
}

@media (max-width: 576px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════
   UTILITY CLASSES
══════════════════════════════════════════════ */
.spinner-ala {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-skeleton {
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }
