  /* ===========================
       VARIABLES Y RESET
    =========================== */
    :root {
      --crema:      #f6f0e4;
      --bordo:      #892a25;
      --bordo-dark: #561b18;
      --naranja:    #cb6120;
      --white:      #ffffff;
      --black:      #000000;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--crema);
      color: var(--bordo);
      font-family: 'Work Sans', sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }
    ul, ol { padding-left: 1.25rem; }
    p  { margin: 0; }

    /* ===========================
       TIPOGRAFIA
    =========================== */
    .heading-h1 {
      font-size: clamp(2rem, 4vw, 3.4375rem);
      font-weight: 700; line-height: 1.15;
      text-transform: uppercase; letter-spacing: -.03rem;
    }
    .heading-h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 700; line-height: 1.1;
      text-transform: uppercase; letter-spacing: -.03rem;
    }
    .heading-h3 {
      font-size: 1.5rem; font-weight: 700;
      line-height: 1.3; text-transform: uppercase; letter-spacing: -.01rem;
      text-align: center;
    }
    .text-regular { font-size: 1.125rem; font-weight: 400; letter-spacing: -.03rem; }
    .text-small   { font-size: 1rem;     font-weight: 400; letter-spacing: -.03rem; }
    .color-naranja { color: var(--naranja); }
    .color-bordo   { color: var(--bordo);   }
    .color-crema   { color: var(--crema);   }

    /* ===========================
       LAYOUT
    =========================== */
    .container        { width: 100%; max-width: 80rem;  margin: 0 auto; }
    .container-small  { width: 100%; max-width: 48rem;  margin: 0 auto; }
    .container-xsmall { width: 100%; max-width: 40rem;  margin: 0 auto; }
    .px-global { padding-left: 5%; padding-right: 5%; }
    .py-sm  { padding-top: 3rem;  padding-bottom: 3rem; }
    .py-md  { padding-top: 5rem;  padding-bottom: 5rem; }
    .text-center { text-align: center; }
    .mb-sm { margin-bottom: 1.5rem; }
    .mb-md { margin-bottom: 2rem;   }
    .mb-lg { margin-bottom: 3rem;   }

    /* ===========================
       BOTONES
    =========================== */
    .btn {
      display: inline-block;
      border: 2px solid var(--bordo);
      background-color: var(--bordo);
      color: var(--crema);
      font-family: 'Work Sans', sans-serif;
      font-size: 1.125rem; font-weight: 600;
      letter-spacing: -.02rem; text-align: center;
      border-radius: .5rem; padding: .75rem 1.5rem;
      cursor: pointer;
      transition: background-color .3s, border-color .3s;
      text-decoration: none;
    }
    .btn:hover { background-color: var(--bordo-dark); border-color: var(--bordo-dark); }
    .btn-outline { background-color: transparent; color: var(--bordo); }
    .btn-outline:hover {
      background-color: var(--bordo-dark);
      border-color: var(--bordo-dark);
      color: var(--crema);
    }
    .btn-link {
      background: none; border: none; color: var(--bordo);
      font-family: 'Work Sans', sans-serif; font-size: 1.125rem; font-weight: 400;
      padding: .25rem .75rem; cursor: pointer; text-decoration: none; display: inline-block;
    }
    .btn-link:hover { text-decoration: underline; }

    /* ===========================
       NAVBAR
       Correccion: menú mobile es
       un elemento aparte del inner,
       solo visible en mobile.
       En desktop: links y actions
       siempre visibles via flex.
    =========================== */
    .navbar {
      background-color: transparent;
      width: 100%;
      min-height: 6rem;
      padding: 0 5%;
      display: flex;
      flex-direction: column;       /* columna: inner + mobile-menu */
      justify-content: center;
      position: relative;
      z-index: 200;
    }
    .navbar__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      min-height: 6rem;
    }
    .navbar__logo img { height: 2.5rem; }

    /* Desktop: links y actions siempre visibles */
    .navbar__links {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .navbar__actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* Burger: OCULTO en desktop */
    .navbar__burger {
      display: none;
      flex-direction: column;
      gap: .35rem;
      background: none;
      border: none;
      padding: .5rem;
      cursor: pointer;
    }
    .navbar__burger span {
      display: block;
      width: 1.5rem;
      height: 2px;
      background-color: var(--bordo);
      transition: all .3s;
    }

    /* Menú mobile: SIEMPRE oculto por defecto,
       solo existe en mobile (ver media query) */
    .navbar__mobile-menu {
      display: none;
    }
    .navbar__mobile-menu.is-open {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 0 1.5rem;
      border-top: 1px solid rgba(137,42,37,.15);
      width: 100%;
    }

    /* ===========================
       SLIDER HERO (Slick)
    =========================== */
    .section-slider { background-color: var(--crema); overflow: hidden; }

    /* Slick necesita que el wrapper sea block */
    .hero-slider { line-height: 0; }

    .hero-slide {
      position: relative;
      height: 90vh;
      min-height: 32rem;
      overflow: hidden;
      outline: none;
    }
    .hero-slide__bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .hero-slide__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,.6) 0%,
        rgba(0,0,0,.25) 55%,
        transparent 100%
      );
      z-index: 1;
    }
    .hero-slide__content {
      position: absolute;
      top: 50%;
      left: 5%;
      transform: translateY(-50%);
      z-index: 2;
      max-width: 48rem;
      line-height: 1.5;
    }
    .hero-slide__content .heading-h2 {
      color: var(--crema);
      margin-bottom: 1rem;
    }
    .hero-slide__content .text-regular {
      color: var(--crema);
      margin-bottom: 2rem;
      opacity: .9;
    }

    /* Flechas del slider */
    .slick-prev, .slick-next {
      z-index: 10;
      width: 3rem;
      height: 3rem;
    }
    .slick-prev { left: 1.5rem; }
    .slick-next { right: 1.5rem; }
    .slick-prev::before, .slick-next::before {
      font-size: 2rem;
      color: var(--crema);
      opacity: .85;
    }
    /* Dots */
    .slick-dots { bottom: 1.5rem; }
    .slick-dots li button::before {
      font-size: .9rem;
      color: var(--crema);
      opacity: .55;
    }
    .slick-dots li.slick-active button::before {
      color: var(--naranja);
      opacity: 1;
    }

    /* ===========================
       BARRA CONTACTO INFO
    =========================== */
    .contact-bar {
      background-color: var(--white);
      border-radius: .75rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);      
      gap: 1.5rem;
      padding: 2.25rem 1.5rem;
      align-items: start;
      justify-items: center;
    }
    .contact-bar__item {
      display: flex; flex-direction: column;
      align-items: center; text-align: center; gap: .75rem;
    }
    .contact-bar__item img { width: 1.5rem; height: 1.5rem; }

    /* ===========================
       MARCAS
    =========================== */
    .brands__logos {
      display: flex; flex-wrap: wrap;
      justify-content: center; align-items: center; gap: 3rem;
    }
    .brands__logos img { max-height: 8rem; object-fit: contain; }

    /* ===========================
       POR QUE ELEGIRNOS
    =========================== */
    .why__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
    .why__item { display: flex; flex-direction: column; gap: .5rem; }
    .why__item img { width: 3rem; height: 3rem; margin-bottom: .5rem; align-self: center;}

    /* ===========================
       SECCIONES FEATURE (2 cols)
    =========================== */
    .feature__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .feature__content p { margin-top: 1rem; }
    .feature__img img { width: 100%; border-radius: .75rem; }

    /* ===========================
       BANNER CTA
    =========================== */
    .banner-cta {
      position: relative; border-radius: .75rem; overflow: hidden;
      min-height: 18rem; display: flex;
      align-items: center; justify-content: center;
    }
    .banner-cta__img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
    }
    .banner-cta__body {
      position: relative; z-index: 1;
      text-align: center; padding: 3rem 2rem; max-width: 40rem;
    }
    .banner-cta__body .heading-h2 { color: var(--crema); margin-bottom: 1.5rem; }

    /* ===========================
       FORMULARIO
    =========================== */
    .contact__form { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
    .contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .form-field { display: flex; flex-direction: column; gap: .25rem; }
    .form-field label {
      font-size: 1.5rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: -.01rem;
    }
    .form-input {
      border: 1px solid var(--bordo);
      background-color: var(--white); color: var(--black);
      border-radius: .625rem; min-height: 3rem;
      padding: .75rem; font-family: 'Work Sans', sans-serif;
      font-size: 1rem; line-height: 1.6;
      outline: none; transition: border-color .2s; width: 100%;
    }
    .form-input:focus { border-color: var(--naranja); }
    .form-input::placeholder { color: rgba(0,0,0,.45); }
    textarea.form-input { min-height: 11.25rem; resize: vertical; }
    .form-submit { width: 100%; padding: .875rem 1.5rem; font-size: 1.125rem; }

    /* Errores jQuery Validation */
    label.error {
      color: #c0392b;
      font-size: .875rem;
      font-weight: 400;
      text-transform: none;
      letter-spacing: 0;
      margin-top: .25rem;
      display: block;
    }
    .form-input.error { border-color: #c0392b; }
    .form-input.valid { border-color: #27ae60; }

    #form-success, #form-error {
      border-radius: .5rem; margin-top: 1rem;
      padding: 1.25rem; text-align: center;
    }
    #form-success { background: #d5f5e3; color: #1e8449; }
    #form-error   { background: #fde8e8; color: #922b21; }

    /* ===========================
       MODALES LATERAL (slide-in)
    =========================== */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.5);
      z-index: 500; opacity: 0; pointer-events: none;
      transition: opacity .3s;
    }
    .modal-overlay.is-active { opacity: 1; pointer-events: all; }
    .modal-panel {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(28rem, 100vw);
      background: var(--white); z-index: 600;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .modal-panel.is-active { transform: translateX(0); }
    .modal-panel__img { width: 100%; max-height: 18rem; object-fit: cover; }
    .modal-panel__body { padding: 2rem 1.5rem; }
    .modal-panel__body h2 { margin-bottom: .75rem; }
    .modal-panel__body p  { margin-bottom: 1.5rem; }
    .modal-panel__close {
      position: absolute; top: 1rem; right: 1rem;
      background: none; border: none; cursor: pointer;
      width: 2rem; height: 2rem; padding: 0;
    }
    .modal-panel__close img { width: 100%; }

    /* ===========================
       FOOTER
    =========================== */
    
    
    .footer { background-color: var(--bordo); color: var(--crema); }

    
    .footer__logo img { height: 2.5rem; }
    .footer__socials { display: flex; gap: .75rem; align-items: center; }
    .footer__social-link {
      color: var(--crema); display: flex; align-items: center;
      opacity: .85; transition: opacity .2s;
    }
    .footer__social-link:hover { opacity: 1; }
    .footer__social-link svg { width: 1.5rem; height: 1.5rem; }
    .footer__bottom { font-size: .875rem; opacity: .7; }
    
    
    
    /* Footer: layout de columnas */
    .footer__top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
        align-items: start;        
    }

    .footer__col p{
        display: inline-block;
        width: 85%;
        margin: 20px 0;
        padding:5px;
    }

    .footer__col-title {
        font-family: 'Work Sans', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05rem;
        color: var(--crema);
        opacity: .5;
        margin-bottom: 1rem;
    }

    .footer__contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: .75rem;
    }

    .footer__contact-list li {
        display: flex;
        flex-direction: column;
        gap: .1rem;
    }

    .footer__contact-label {
        font-size: .8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .04rem;
        color: var(--naranja);
    }

    .footer__contact-value {
        font-size: 1rem;
        color: var(--crema);
        opacity: .85;
        text-decoration: none;
        transition: opacity .2s;
    }

    .footer__contact-value:hover {
        opacity: 1;
        text-decoration: underline;
    }

    
   
    /* ===========================
       RESPONSIVE
    =========================== */    
    @media (max-width: 991px) {
      /* Ocultar desktop nav, mostrar burger */
      .navbar__links,
      .navbar__actions { display: none !important; }
      .navbar__burger   { display: flex; }      
      .hero-slide { height: 70vh; }
      .contact-bar { grid-template-columns: repeat(2, 1fr); }
      .why__grid { grid-template-columns: 1fr 1fr; }
      .feature__grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 767px) {
      .hero-slide { height: 60vh; }
      .contact-bar { grid-template-columns: repeat(2, 1fr); }
      .why__grid { grid-template-columns: 1fr; }
      .contact__form-row { grid-template-columns: 1fr; }
      .footer__top {grid-template-columns: 1fr; gap: 2rem;}
      
    }
    @media (max-width: 479px) {
       .contact-bar { grid-template-columns: 1fr; }
    }
    
    