/* Por defecto movil */

#menu_donde_estamos{
    background-color: #f2f2f2;
}
    



/* MOBILE */
@media (max-width: 992px) {
    
    /** dejarlo aqui dentro, es exclusivo para mvl */
    .donde-estamos-nav-wrapper {
       display: none;
    }
    
    .donde-estamos-nav-mobile {
        padding: 8px 16px;
        padding-top: 50px;
    }


.donde-estamos-nav-mobile details {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .donde-estamos-nav-mobile summary {
    list-style: none;
    cursor: pointer;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    color: #121212;
    display: flex;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
  
  }
  
  .donde-estamos-nav-mobile summary::-webkit-details-marker {
    display: none;
  }
  
  .donde-estamos-nav-mobile details[open] summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .donde-estamos-nav-mobile details[open] summary::after {
    transform: rotate(180deg);
  }
  
  .donde-estamos-nav-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
  
  .donde-estamos-nav-mobile li+li {
    border-top: 1px solid #ddd;
  }
  
  .donde-estamos-nav-mobile li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #121212;
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .donde-estamos-nav-mobile li a:hover {
    background: #eaeaea;
  }
  

}


/* DESKTOP */
@media (min-width: 993px) {

    .donde-estamos-nav-mobile {
        display: none;
    }

    .donde-estamos-nav-wrapper {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .donde-estamos-nav-wrapper .donde-estamos-nav {
        position: static;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 12px;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }
   
    .donde-estamos-nav-wrapper .donde-estamos-nav a {
        display: inline-block;
        display: flex;
        padding: 14px 16px;
        align-items: flex-start;
        gap: 10px;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        border-radius: 20px;
        border: 1.5px solid var(--Color-Secondary-Secondary-500, #1D1D1C);
        color: var(--Color-Secondary-Secondary-500, #1D1D1C);
        text-align: right;
        color: #1D1D1C;
        
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
      }

      .donde-estamos-nav a:hover {
        background: #d2d2d2;
      }
}

