  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --azul-profundo: #08152e;
    --azul-oscuro:   #0d2251;
    --azul-med:      #163a8a;
    --azul:          #1a55c4;
    --azul-claro:    #3b72e0;
    --azul-palido:   #eef2fb;
    --azul-borde:    #cdd9f5;
    --acento:        #e8a840;
    --acento-claro:  #f0be64;
    --lima:          #8bc34a;
    --blanco:        #fafcff;
    --texto:         #0d1b3e;
    --texto-suave:   #4a5a80;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
  }

  html { scroll-behavior: smooth; scroll-padding-top: 68px; }

.toast {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: var(--azul);
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 300px;
    box-shadow: 0 8px 24px rgba(13,34,81,0.3);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 400;
    pointer-events: none;
  }

  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }

  body {
    font-family: var(--font-body);
    background: var(--blanco);
    color: var(--texto);
    overflow-x: hidden;
  }

  /* ============ NAV ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(8,21,46,0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  nav.scrolled {
    background: rgba(6,12,30,0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    border-bottom-color: rgba(255,255,255,0.1);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .footer-logo-img {
    height: 48px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0;
    height: 2px;
    background: var(--azul-claro);
    border-radius: 2px;
    transition: width 0.25s ease;
  }

  .nav-links a:hover { color: white; }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--azul);
    color: white;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(26,85,196,0.4);
  }

  .nav-cta:hover { background: var(--azul-claro); box-shadow: 0 6px 20px rgba(59,114,224,0.5); }

  /* ============ HERO ============ */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #060f2a 0%, #0d2251 55%, #112d6e 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 65% 40%, rgba(59,114,224,0.35) 0%, transparent 50%),
      radial-gradient(circle at 20% 70%, rgba(232,168,64,0.08) 0%, transparent 45%),
      radial-gradient(circle at 80% 80%, rgba(26,85,196,0.18) 0%, transparent 35%),
      radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, auto, auto, 36px 36px;
  }

  .hero-bg-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
  }

  .hero-content {
    padding: 80px 48px 80px 80px;
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,114,224,0.15);
    border: 1px solid rgba(59,114,224,0.35);
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }

  .badge-dot {
    width: 8px; height: 8px;
    background: var(--azul-claro);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
  }

  .hero-badge span {
    color: var(--azul-claro);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.05;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.1s both;
  }

  .hero h1 em {
    font-style: italic;
    font-weight: 400;
  }

  .hero-em-gradient {
    background: linear-gradient(120deg, var(--azul-claro) 0%, var(--acento) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 420px;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  @keyframes shimmer {
    0%   { left: -80%; }
    60%, 100% { left: 130%; }
  }

  .btn-primary {
    background: var(--azul);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-block;
    box-shadow: 0 4px 18px rgba(26,85,196,0.4);
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
  }

  .btn-primary:hover { background: var(--azul-claro); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,114,224,0.5); }

  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 30px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }

  .hero-panel {
    padding: 60px 80px 60px 40px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease 0.4s both;
  }

  .hero-deco {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 480px; height: 480px;
    pointer-events: none;
    opacity: 1;
  }

  .hero-deco svg {
    width: 100%;
    height: 100%;
  }

  .hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s, transform 0.2s;
  }

  .stat-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
  }

  .stat-num {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 600;
    color: var(--acento);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-desc {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
  }

  .hero-feature-card {
    background: rgba(59,114,224,0.12);
    border: 1px solid rgba(59,114,224,0.3);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .feature-icon {
    width: 44px; height: 44px;
    background: rgba(59,114,224,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
  }

  .feature-text h4 {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
  }

  .feature-text p {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 300;
  }

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

  /* ============ TRUST BAR ============ */
  .trust-bar {
    background: var(--azul-med);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 12.5px;
    font-weight: 500;
    padding: 4px 28px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }

  .trust-item:last-child { border-right: none; }

  .trust-item svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
  }

  /* ============ SECTIONS SHARED ============ */
  section { padding: 96px 80px; }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .label-line {
    width: 28px; height: 1.5px;
    background: var(--azul);
  }

  .label-text {
    color: var(--azul);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.1;
    color: var(--texto);
    font-weight: 700;
    margin-bottom: 12px;
  }

  .section-sub {
    color: var(--texto-suave);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 52px;
  }

  /* ============ PROCESO ============ */
  .proceso-section {
    background: var(--blanco);
    padding: 96px 80px;
  }

  .proceso-grid {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
  }

  .proceso-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--azul-borde);
    background: white;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    position: relative;
  }

  .proceso-step:hover {
    box-shadow: 0 12px 36px rgba(26,85,196,0.12);
    transform: translateY(-4px);
    border-color: var(--azul-claro);
  }

  .paso-num {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--azul);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26,85,196,0.35);
  }

  .paso-icon {
    margin: 8px 0 16px;
  }

  .paso-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 10px;
  }

  .paso-desc {
    color: var(--texto-suave);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 300;
  }

  .proceso-connector {
    flex-shrink: 0;
    padding: 0 12px;
    margin-bottom: 24px;
    opacity: 0.5;
  }

  /* ============ ACORDEÓN ============ */
  .acordeon {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .acord-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    transition: background 0.2s, border-color 0.2s;
  }

  .acord-item.open {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.16);
  }

  .acord-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
  }

  .acord-icon-wrap {
    width: 38px; height: 38px;
    background: rgba(59,114,224,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-claro);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .acord-item.open .acord-icon-wrap {
    background: rgba(59,114,224,0.28);
  }

  .acord-title {
    color: white;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
  }

  .acord-chevron {
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .acord-item.open .acord-chevron {
    transform: rotate(180deg);
    color: var(--azul-claro);
  }

  .acord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
  }

  .acord-item.open .acord-body {
    max-height: 120px;
    padding: 0 20px 18px;
  }

  .acord-body p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 300;
    padding-left: 52px;
  }

  /* ============ CATEGORIES TABS ============ */
  .cat-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }

  .cat-tab {
    background: white;
    border: 1.5px solid var(--azul-borde);
    border-radius: 100px;
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--texto-suave);
    cursor: pointer;
    transition: all 0.2s;
  }

  .cat-tab.active, .cat-tab:hover {
    background: var(--azul);
    border-color: var(--azul);
    color: white;
  }

  /* ============ PRODUCTS GRID ============ */
  .products-section { background: var(--azul-palido); }

  .prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .prod-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--azul-borde);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    position: relative;
  }

  .prod-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--azul), var(--azul-claro));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .prod-card:hover::before { opacity: 1; }

  .prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(26,85,196,0.14);
  }

  .prod-card[data-cat="bioestimulante"] { display: block; }
  .prod-card[data-cat="proteccion"] { display: block; }
  .prod-card[data-cat="suelo"] { display: block; }
  .prod-card[data-cat="adherente"] { display: block; }
  .prod-card.hidden { display: none !important; }

  .prod-img-area {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    position: relative;
    overflow: hidden;
  }

  .prod-img-area.bg-bio { background: linear-gradient(135deg, #e8eef8 0%, #d4e0f5 100%); }
  .prod-img-area.bg-pro { background: linear-gradient(135deg, #edf2fb 0%, #d8e6f8 100%); }
  .prod-img-area.bg-sue { background: linear-gradient(135deg, #e8f0fb 0%, #d0dff5 100%); }
  .prod-img-area.bg-adh { background: linear-gradient(135deg, #e4ecf9 0%, #cddaf5 100%); }

  .prod-img-area img {
    height: 108px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }

  .prod-img-area::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30px;
    background: linear-gradient(transparent, white);
  }

  .prod-body { padding: 18px 20px 20px; }

  .prod-cat-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
  }

  .tag-bio { background: #e2ecfb; color: var(--azul-med); }
  .tag-pro { background: #dce7fa; color: var(--azul-med); }
  .tag-sue { background: #e0eafa; color: var(--azul-med); }
  .tag-adh { background: #d8e5f9; color: var(--azul-med); }

  .prod-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
  }

  .prod-tipo {
    color: var(--texto-suave);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .prod-desc {
    color: var(--texto-suave);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 14px;
  }

  .prod-benefits {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }

  .prod-benefit {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12px;
    color: var(--texto-suave);
    line-height: 1.4;
  }

  .prod-benefit::before {
    content: '✓';
    color: var(--azul);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--azul-borde);
  }

  .prod-detail-btn {
    color: var(--azul);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: var(--font-body);
    transition: gap 0.2s;
  }

  .prod-detail-btn:hover { gap: 8px; }

  .prod-wapp {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
  }

  .prod-wapp:hover { background: #1ab855; }

  /* ============ MODAL ============ */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,21,46,0.7);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
  }

  .modal-overlay.open { display: flex; }

  .modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
  }

  .modal-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--azul-borde);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    border-radius: 20px 20px 0 0;
  }

  .modal-logo-wrap {
    margin: 10px 0 6px;
  }

  .modal-logo-wrap img {
    height: 90px;
    width: auto;
    max-width: 70%;
    object-fit: contain;
    display: block;
  }

  .modal-close {
    position: absolute;
    top: 20px; right: 24px;
    background: var(--azul-palido);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--texto-suave);
    transition: background 0.2s;
  }

  .modal-close:hover { background: var(--azul-borde); }

  .modal-cat { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--azul); margin-bottom: 6px; }
  .modal-name { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--texto); margin-bottom: 4px; }
  .modal-tipo { font-size: 14px; color: var(--texto-suave); }

  .modal-body { padding: 24px 32px 32px; }

  .modal-desc { font-size: 14px; line-height: 1.7; color: var(--texto-suave); margin-bottom: 20px; font-weight: 300; }

  .modal-section-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--texto); margin-bottom: 10px; }

  .modal-benefits { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
  .modal-benefits li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--texto-suave); line-height: 1.5; }
  .modal-benefits li::before { content: '✓'; color: var(--azul); font-weight: 700; flex-shrink: 0; }

  .modal-wapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    transition: background 0.2s;
  }

  .modal-wapp:hover { background: #1ab855; }

  /* ============ NOSOTROS ============ */
  .nosotros-section {
    background: linear-gradient(135deg, #060f2a 0%, #0d2251 60%, #0f2a6e 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .nosotros-section .section-title { color: white; }
  .nosotros-section .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 32px; }
  .nosotros-section .label-text { color: var(--acento); }
  .nosotros-section .label-line { background: var(--acento); }

  .valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .valor-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s, transform 0.2s;
  }

  .valor-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-2px);
  }

  .valor-icon { margin-bottom: 10px; display: flex; }

  .valor-card h4 {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
  }

  .valor-card p {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 300;
  }

  /* ============ BLOG ============ */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--azul-borde);
    background: white;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }

  .blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(13,34,81,0.1);
  }

  .blog-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
  }

  .blog-img-green  { background: linear-gradient(135deg, #ddeeff 0%, #c8dff7 100%); }
  .blog-img-shield { background: linear-gradient(135deg, #d4e2f8 0%, #bdd0f0 100%); }
  .blog-img-soil   { background: linear-gradient(135deg, #fdf0d8 0%, #f5e0b0 60%, #ddeeff 100%); }

  .blog-body { padding: 20px; }

  .blog-tag {
    display: inline-block;
    background: var(--azul-palido);
    color: var(--azul);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .blog-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .blog-excerpt {
    color: var(--texto-suave);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 14px;
  }

  .blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--texto-suave);
    padding-top: 12px;
    border-top: 1px solid var(--azul-borde);
  }

  /* ============ CONTACTO ============ */
  .contacto-section {
    background: var(--azul-palido);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contacto-info { padding-top: 8px; }

  .contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
  }

  .contacto-icon {
    width: 44px; height: 44px;
    background: var(--azul);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }

  .contacto-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .contacto-item p, .contacto-item a {
    font-size: 15px;
    color: var(--texto-suave);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
  }

  .contacto-item a:hover { color: var(--azul); }

  .contact-form {
    background: white;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid var(--azul-borde);
  }

  .form-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 6px;
  }

  .form-sub {
    color: var(--texto-suave);
    font-size: 13px;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .form-group:last-of-type { margin-bottom: 0; }

  label {
    font-size: 12px;
    font-weight: 500;
    color: var(--texto);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  input, select, textarea {
    border: 1.5px solid var(--azul-borde);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--texto);
    background: var(--blanco);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  input:focus, select:focus, textarea:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(26,85,196,0.12);
  }

  textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    background: var(--azul);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 18px;
    transition: background 0.2s;
  }

  .form-submit:hover { background: var(--azul-claro); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--azul-profundo);
    padding: 48px 80px 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 28px;
  }

  .footer-brand p {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 14px;
    font-weight: 300;
    max-width: 280px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
  }

  .social-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .social-icon:hover {
    background: var(--azul);
    color: white;
    border-color: var(--azul);
  }

  .footer-col h5 {
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: rgba(255,255,255,0.7); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom p {
    color: rgba(255,255,255,0.2);
    font-size: 12px;
  }

  .footer-bottom .lima { color: var(--acento); }

  /* ============ WHATSAPP FLOAT ============ */
  .wapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 150;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .wapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }

  .wapp-float svg { width: 28px; height: 28px; }

  /* ============ DISTRIBUIDORES ============ */
  .dist-section {
    background: var(--azul-palido);
    padding: 80px;
    border-top: 1px solid var(--azul-borde);
  }

  .dist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
  }

  .dist-card {
    background: white;
    border: 1px solid var(--azul-borde);
    border-left: 4px solid var(--azul);
    border-radius: 16px;
    padding: 28px 32px;
    transition: box-shadow 0.2s, transform 0.2s, border-left-color 0.2s;
  }

  .dist-card:hover {
    box-shadow: 0 8px 28px rgba(26,85,196,0.14);
    transform: translateY(-2px);
    border-left-color: var(--azul-claro);
  }

  .dist-region {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--azul);
    margin-bottom: 10px;
  }

  .dist-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .dist-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    color: var(--azul);
    text-decoration: none;
    transition: color 0.2s;
  }

  .dist-phone:hover { color: var(--azul-claro); }

  /* ============ WAVE DIVIDERS ============ */
  .wave-divider {
    line-height: 0;
    overflow: hidden;
    margin: 0; padding: 0;
  }

  .wave-divider svg {
    display: block;
    width: 100%;
    height: 90px;
  }

  /* ============ CTA SECTION ============ */
  .cta-section {
    background: linear-gradient(135deg, #060f2a 0%, #0d2251 55%, #112d6e 100%);
    padding: 88px 80px;
    text-align: center;
  }

  .cta-label {
    color: var(--acento);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
  }

  .cta-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .cta-sub {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 40px;
  }

  .cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-btn-primary {
    background: var(--azul);
    color: white;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-block;
    box-shadow: 0 4px 18px rgba(26,85,196,0.45);
    position: relative;
    overflow: hidden;
  }

  .cta-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: shimmer 3.5s ease-in-out 0.6s infinite;
    pointer-events: none;
  }

  .cta-btn-primary:hover { background: var(--azul-claro); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,114,224,0.55); }

  .cta-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.2s, transform 0.15s;
    display: inline-block;
  }

  .cta-btn-outline:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }

  /* ============ HAMBURGER ============ */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ============ MOBILE MENU ============ */
  .mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--azul-profundo);
    z-index: 300;
    padding: 88px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .mobile-menu.open { right: 0; }

  .mobile-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
    display: block;
  }

  .mobile-link:hover { color: white; }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,21,46,0.65);
    z-index: 299;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    backdrop-filter: blur(3px);
  }

  .mobile-overlay.open { opacity: 1; pointer-events: all; }

  /* ============ SCROLL REVEAL ============ */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============ ACTIVE NAV ============ */
  .nav-links a.nav-active {
    color: white;
  }

  .nav-links a.nav-active::after {
    width: 100%;
  }

  /* ============ FORM VALIDATION ============ */
  input.field-error, select.field-error, textarea.field-error {
    border-color: #e53935;
    background: #fff5f5;
  }

  .field-error-msg {
    color: #e53935;
    font-size: 11px;
    margin-top: 4px;
    display: none;
  }

  .field-error-msg.visible { display: block; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; padding-top: 68px; }
    .hero-content { padding: 60px 24px 40px; }
    .hero h1 { font-size: 44px; }
    .hero-panel { padding: 0 24px 60px; }
    section { padding: 64px 24px; }
    .prod-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .nosotros-section { grid-template-columns: 1fr; gap: 40px; }
    .contacto-section { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .trust-bar { flex-direction: column; gap: 8px; align-items: flex-start; padding: 16px 24px; }
    .trust-item { border-right: none; padding: 2px 0; }
    .proceso-section { padding: 64px 24px; }
    .proceso-grid { flex-direction: column; gap: 32px; }
    .proceso-connector { transform: rotate(90deg); padding: 0; margin: -16px 0; }
    .dist-section { padding: 64px 24px; }
    .dist-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 64px 24px; }
    .cta-title { font-size: 36px; }
    .wave-divider svg { height: 55px; }
  }

/* ============ MISIÓN · VISIÓN · ESLOGAN ============ */
.mision-vision-section {
  background: var(--azul-profundo);
  padding: 80px 64px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s;
}

.mv-card:hover {
  border-color: rgba(59,114,224,0.35);
}

.mv-icon {
  width: 44px;
  height: 44px;
  background: rgba(59,114,224,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-claro);
  margin-bottom: 20px;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.mv-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .mision-vision-section { padding: 64px 24px; }
  .mv-grid { grid-template-columns: 1fr; }
}
