:root{
    --text:#232323;
    --muted:#6f6f6f;
    --border:#e7e7e7;
    --accent:#c18b54;
    --radius:14px;
    --shadow:0 18px 45px rgba(0,0,0,.14);
  }
  
  .container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  /* HEADER */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  
  .header-inner{
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
  }
  
  /* LOGO */
  .logo{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img{
    max-height: 88px; /* tamaño del logo */
    width: auto;
    height: auto;
    display: block;
  }
  
  /* NAV DESKTOP */
  .nav-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav-link{
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--muted);
    transition: background .15s ease, color .15s ease;
  }
  .nav-link:hover,
  .nav-link:focus-visible{
    background: #f4f4f4;
    color: var(--text);
    outline: none;
  }
  
  .nav-link.cta{
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
  }
  .nav-link.cta:hover,
  .nav-link.cta:focus-visible{
    background: #cc9a67;
    color: #fff;
  }
  
  /* BOTÓN HAMBURGUESA */
  .nav-toggle{
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .nav-toggle .bar{
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    display: block;
  }
  
  /* OVERLAY */
  .nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 150;
  }
  
  /* ===== MOBILE ===== */
  @media (max-width: 900px){
    .nav-toggle{
      display: inline-flex;
      flex-direction: column;
    }
  
    /* menú desplegable */
    .nav{
      position: fixed;
      left: 0;
      right: 0;
      top: 110px;                 /* igual a header-inner height */
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: var(--shadow);
      z-index: 180;
  
      max-height: 0;              /* cerrado */
      overflow: hidden;
      transition: max-height .35s ease;
    }
  
    .nav-list{
      flex-direction: column;
      padding: 20px;
      gap: 12px;
      text-align: center;
    }
  
    .nav-link{
      justify-content: center;
      padding: 14px 16px;
      font-size: 1.05rem;
    }
  
    /* abierto */
    .site-header.is-open .nav{
      max-height: 75vh;
    }
  
    .site-header.is-open .nav-overlay{
      display: block;
    }
  }

    /* ===== SLIDER ===== */
.slider-section {
    width: 100%;
    padding: 40px 0;
    background: #fff;
  }
  
  .slider {
    position: relative;
    width: min(1200px, 100%);
    margin: auto;
    overflow: hidden;
    border-radius: 18px;
  }
  
  .slider-track {
    display: flex;
    transition: transform 0.6s ease;
  }
  
  .slide {
    min-width: 100%;
    height: 520px;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Flechas */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    transition: background .2s ease;
  }
  
  .slider-btn:hover {
    background: rgba(0,0,0,.8);
  }
  
  .slider-btn.prev {
    left: 16px;
  }
  
  .slider-btn.next {
    right: 16px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .slide {
      height: 340px;
    }
  }

  /* ===== SLIDER ARRIMOS ===== */
.arrimos-section{
    padding: 60px 0;
    background: #fff;
  }
  
  .arrimos-container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  .arrimos-head h2{
    margin: 0;
    font-size: 1.7rem;
    color: #232323;
  }
  .arrimos-head p{
    margin: 10px 0 22px;
    color: #6f6f6f;
  }
  
  .arrimos-carousel{
    position: relative;
  }
  
  .arrimos-viewport{
    overflow: hidden;
    border-radius: 18px;
  }
  
  /* Track con scroll suave */
  .arrimos-track{
    display: flex;
    gap: 14px;
    padding: 6px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .arrimos-track::-webkit-scrollbar{ display: none; }
  
  /* Card */
  .arrimo-card{
    flex: 0 0 320px;
    border-radius: 18px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  .arrimo-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }
  
  .arrimo-img{
    width: 100%;
    height: 210px;
    object-fit: contain;     /* muestra el producto completo */
    background: #f3f3f3;
    display: block;
  }
  
  .arrimo-body{
    padding: 16px;
  }
  
  .arrimo-title{
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: #2b2b2b;
  }
  
  /* Característica + valor */
  .arrimo-spec{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.06);
  }
  
  .arrimo-label{
    color: #6f6f6f;
    font-size: .92rem;
  }
  
  .arrimo-value{
    color: #232323;
    font-weight: 700;
    font-size: .92rem;
  }
  
  /* Flechas */
  .arrimos-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.92);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
  }
  
  .arrimos-arrow--left{ left: 10px; }
  .arrimos-arrow--right{ right: 10px; }
  
  @media (max-width: 900px){
    .arrimo-card{ flex-basis: 78vw; }
    .arrimo-img{ height: 200px; }
  }
  
  /* Botón ver más */
  .arrimos-cta{
    margin-top: 22px;
    display: flex;
    justify-content: center;
  }
  
  .arrimos-more{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 14px;
    background: #c18b54;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }
  
  .arrimos-more:hover{
    background: #cc9a67;
  }
  

  /* ===== FOOTER PREMIUM OSCURO ===== */
.footer-premium{
    background: #0f1115;
    color: rgba(255,255,255,.86);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 58px 0 18px;
  }
  
  .footer-premium__container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 38px;
    align-items: start;
  }
  
  .footer-premium__logo{
    margin: 0 0 10px;
    font-size: 1.4rem;
    letter-spacing: .2px;
  }
  
  .footer-premium__desc{
    margin: 0 0 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    max-width: 42ch;
  }
  
  .footer-premium__col h4{
    margin: 0 0 14px;
    font-size: 1.05rem;
    color: rgba(255,255,255,.9);
  }
  
  /* Links */
  .footer-premium__links{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,.68);
    transition: color .18s ease, transform .18s ease;
  }
  
  .footer-link:hover{
    color: #c18b54;
    transform: translateX(2px);
  }
  
  .footer-premium .icon{
    display: inline-flex;
    color: rgba(255,255,255,.75);
  }
  
  /* WhatsApp pill */
  .footer-premium__wa{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    width: fit-content;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  
  .footer-premium__wa:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
    border-color: rgba(193,139,84,.35);
  }
  
  /* Bottom line */
  .footer-premium__bottom{
    width: min(1200px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .footer-premium__container{
      grid-template-columns: 1fr;
      gap: 26px;
    }
    .footer-premium__bottom{
      justify-content: flex-start;
      text-align: left;
    }
  }

  .whatsapp-float{
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0,0,0,.3);
    z-index: 999;
    transition: transform .2s ease;
  }
  
  .whatsapp-float:hover{
    transform: scale(1.05);
  }
  