* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: white;
    overflow: hidden;
}

        .usuario {
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            color: #FFF;
            text-align: center;
            font-family: "Open Sans";
            font-size: 18px;
            font-style: normal;
            line-height: normal;
            letter-spacing: 0.09px;
            width: 53px;
            height: 2px;
            margin-right: 40px;
           margin-top: -45px;
        }
.container {
    display: flex;
    height: 100vh;
}

.left-panel {
    width: 50%;
    background: linear-gradient(135deg, #2d1810 0%, #1a0f0a 100%);
    display: flex;
    flex-direction: column;
}

.search-section {
    padding: 20px;
}

.search-bar {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.search-input::placeholder {
    color: #aaa;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.location-marker {
    width: 20px;
    height: 20px;
    background-color: #ff6b35;
    border-radius: 50%;
    margin-left: 10px;
}

.places-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}

.place-card {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.place-card:hover {
    transform: translateY(-2px);
}

.place-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.place-address {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.place-phone {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.place-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.time-icon {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
}

.place-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.place-decorative {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    border-radius: 50%;
    opacity: 0.3;
}

.right-panel {
    width: 50%;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.marker-orange {
    background-color: #ff6b35;
}

.marker-blue {
    background-color: #0099ff;
}

.marker-gray {
    background-color: #666;
}

.subrayado {
    display: inline-block;
    border-bottom: 1.65px solid #8B4513;
    padding-bottom: 4px;
    min-width: 20rem;
    text-align: left;
}

.centro {
    margin-top: -2rem;
}

.menu-link {
    font-size: 1.2rem;
    color: rgb(170, 170, 170);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding-bottom: 2px;
}

.menu-link:hover {
    color: #160503;
    cursor: pointer;
    border-bottom: 4px solid #8B4513;
    font-size: 1.4rem;
}
nav.encabezado {
    background-color: #160503;
    color: #FFF;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 35px 40px;
    gap: 20px;
}

nav.encabezado .home {
    text-align: center;
    font-family: Fredoka, sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.35px;
    margin-top: -28px;
    text-decoration: none;
    color: #FFF;
}

nav.encabezado .btnMenu {
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin-top: 30px;
    gap: 20px;
    margin-left: 55px;
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.09px;
}

nav.encabezado .btnMenu .linea {
    width: 53px;
    height: 2px;
    margin-bottom: -20px;
    margin-top: -20px;
    background-color: #FFF;
}

@media (max-width: 670px) {
  nav.encabezado .btnMenu {
    display: none;
  }
}

nav.encabezado .btnFindKopi {
  user-select: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1px;
  padding-right: 70px;
  margin-top: -24px;
}

@media (max-width: 960px) {
  nav.encabezado .btnFindKopi {
    padding-right: 0px;
  }
}

nav.encabezado .btnLogin {
  user-select: none;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans";
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.09px;
  border: #FFF solid;
  padding: 7px;
  border-radius: 64px;
  margin-left: 20px;
  width: 92px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
}

nav.encabezado .btnLogin a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 960px) {
  nav.encabezado .btnLogin {
    display: none;
  }
}

nav.encabezado .btnRegister {
  user-select: none;
  cursor: pointer;
  text-align: center;
  font-family: "Open Sans";
  font-weight: 700;
  letter-spacing: 0.09px;
  border-radius: 64px;
  border: 1px solid #FFF;
  background: #FFF;
  margin-left: 20px;
  color: #160503;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  height: 39px;
  padding: 7px;
  margin-top: -20px;
}

nav.encabezado .btnRegister a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 960px) {
  nav.encabezado .btnRegister {
    display: none;
  }
}

nav.encabezado .material-symbols-outlined {
  user-select: none;
  margin-left: 20px;
  cursor: pointer;
}

nav.encabezado #shopping_cart {
  margin-top: -25px;
}

@media (max-width: 960px) {
  nav.encabezado #shopping_cart {
    display: none;
  }
}

nav.encabezado #menu {
  user-select: none;
}

@media (min-width: 961px) {
  nav.encabezado #menu {
    display: none;
  }
}

.usuario {
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans";
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.09px;
  width: 53px;
  height: 2px;
  margin-right: 40px;
  margin-top: -45px;
}

a:visited {
  color: inherit;
  text-decoration: none;
}