/* ===============================
   🖥️ VERSIÓN ESCRITORIO
   =============================== */
   @media (min-width: 760px) {

    /* ===============================
       🧼 AJUSTES GENERALES
    =============================== */
    img[id="bottom-taller"] {
      display: none;
    }
    
    #carrito-movil {
      display: none;
    }

    /* ===============================
       📌 MENÚ / NAVEGACIÓN
    =============================== */
    menu {
      display: flex;
      font-size: 30px !important;
    }
  
    .menu a {
      font-size: 23px;
    }
  
    .logo {
      font-weight: bold;
      color: #e3fc02;
      font-size: 40px;
    }
  
    button[class="toggle-menu"] {
      display: none;
    }

    .menu-cart-group {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto; /* empuja el grupo a la derecha */
    }
    
    .toggle-menu {
      display: none !important;
    }
    
    .navbar-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 30px;
    }
    
    .cart-container {
      margin-left: auto;
    }
    
    
  
    /* ===============================
       🧴 HERO / PORTADA
    =============================== */
    .hero {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      text-align: left;
      gap: 40px;
      max-width: 1200px;
      margin: auto !important;
      padding: 40px 20px;
      padding-top: 0% !important;
    }
  
    .hero-texto {
      flex: 1;
      height: auto;
      width: 350px;
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      max-width: 500px;
    }
  
    .hero-product {
      flex: 1;
      width: auto;
      height: auto;
      align-items: flex-start;
      justify-content: center;
      max-width: 500px;
    }
  
    .hero h1 {
      font-size: 48px;
    }
  
    /* ===============================
       👥 SOBRE NOSOTROS
    =============================== */
    .sobre-nosotros {
      background-color: #1f1f1f;
      color: #fff;
      padding: 50px 20px;
      padding-top: 0%;
    }
  
    .contenido-flex {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }
  
    .imagen {
      flex: 1;
      display: flex;
      justify-content: center;
    }
  
    .imagen img {
      width: 100%;
      max-width: 450px;
      height: auto;
      border-radius: 10px;
    }
  
    .texto {
      flex: 2;
      padding-left: 20px;
      text-align: left;
    }
  
    .texto h2 {
      color: #e6ff00;
      margin-bottom: 20px;
      font-size: 2rem;
    }
  
    .texto p {
      margin-bottom: 15px;
      line-height: 1.6;
      font-size: 20px;
    }
  
    .texto ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }
  
    .texto li {
      margin-bottom: 10px;
      font-weight: 500;
      font-size: 16px;
    }
  
    /* ===============================
       🛒 SECCIÓN PRODUCTOS
    =============================== */
    .productos {
      padding-bottom: 30px;
    }
  }
  