
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #63547d;
      background: white;
      overflow-x: hidden;
    }

    .hero-slider {
      position: relative;
      height: 600px;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    }

    .dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s;
    }

    .dot.active {
      background: #ab7495;
      width: 30px;
      border-radius: 5px;
    }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.2);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s;
      backdrop-filter: blur(5px);
    }

    .nav-arrow:hover {
      background: rgba(255,255,255,0.4);
    }

    .nav-arrow.prev { left: 20px; }
    .nav-arrow.next { right: 20px; }

    /* Carousel de bodegas */
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    .animate-scroll {
      animation: scroll 30s linear infinite;
    }

    .bodega-track:hover .animate-scroll {
      animation-play-state: paused;
    }

    /* Icon boxes carousel in mobile */
    .icons-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding: 1rem 0;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .icons-track::-webkit-scrollbar {
      display: none;
    }

    .icon-box {
      flex: 0 0 auto;
      width: 280px;
      transition: all 0.3s ease;
      scroll-snap-align: start;
    }

    .icon-box:hover {
      transform: translateY(-5px);
    }

    .card {
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.875rem 2rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .btn-primary {
      background: #ab7495;
      color: white;
    }

    .btn-primary:hover {
      background: #59293f;
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 2px solid #59293f;
      color: #59293f;
      background: transparent;
    }

    .btn-outline:hover {
      background: #59293f;
      color: white;
    }

    /* Dropdown Nav */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      min-width: 200px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
      padding: 8px 0;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      display: block;
      padding: 12px 20px;
      color: #63547d;
      text-decoration: none;
      font-size: 0.875rem;
      transition: background 0.2s;
    }

    .dropdown-item:hover {
      background: #f8f9fa;
      color: #59293f;
    }

    @media (max-width: 768px) {
      .hero-slider {
        height: 70vh;
      }
      
      .nav-arrow {
        width: 40px;
        height: 40px;
      }

      .slide-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%);
      }

      .slide h1 {
        font-size: 2rem !important;
        line-height: 1.1;
      }

      .slide .text-sm {
        font-size: 0.75rem;
      }

      .slide .text-3xl {
        font-size: 1.875rem;
      }

      .slide .text-lg {
        font-size: 1rem;
      }

      .slide p {
        font-size: 0.875rem;
      }

      .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 4px;
        border-radius: 0;
      }

      /* Icon boxes in mobile: horizontal scroll */
      .icons-grid {
        display: none;
      }

      .icons-carousel {
        display: block;
      }

      /* Historia in mobile: stack image and text vertically, center aligned, force grid and swap order for second block */
      .historia-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        align-items: stretch;
      }

      .historia-grid:nth-of-type(2) > div:first-child {
        order: 2;
      }

      .historia-grid:nth-of-type(2) > div:last-child {
        order: 1;
      }

      .historia-image {
        height: 200px !important;
        width: 100%;
        object-fit: cover;
      }

      .historia-text {
        min-height: auto !important;
        padding: 1rem !important;
        text-align: center !important;
        display: block !important;
      }

      .historia-icon {
        justify-content: center !important;
        margin-top: 1rem;
      }

      /* Bodegas carousel on mobile: reduce size */
      .bodega-track {
        gap: 1rem;
      }

      .bodega-logo {
        width: 8rem;
        height: 3rem;
      }

      /* General mobile improvements */
      .max-w-7xl {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
      }

      .py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
      }

      h1, h2, h3 {
        line-height: 1.2;
      }

      .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
      }

      .card {
        margin-bottom: 1rem;
      }

      .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
      }

      @media (max-width: 480px) {
        .hero-slider {
          height: 60vh;
        }

        .slide h1 {
          font-size: 1.5rem !important;
        }

        .btn-primary {
          width: 100%;
          justify-content: center;
        }

        .icon-box {
          width: 250px;
        }

        .bodega-logo {
          width: 6rem;
          height: 2.5rem;
        }

        .bodega-track {
          gap: 0.5rem;
        }
      }
    }

    @media (min-width: 769px) {
      .icons-carousel {
        display: none;
      }

      .icons-grid {
        display: grid;
      }
    }

    /* Estilos para historia: igualar alturas en desktop */
    .historia-image {
      height: 24rem;
      object-fit: cover;
    }

    .historia-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 24rem;
      padding: 2rem;
    }

    .historia-icon {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
