@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-BookItalic.ttf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

:root {
  --blanco: #fcfcfc;
  --verde-plazuela: #08a65c;
  --verde-claro-plazuela: #94c126;
  --rojo-plazuela: #eb5857;
  --naranjo-plazuela: #f3ad00;
  --azul-contacto: #3b5dc9;
  --morado-express: #a36ea4;
  --verde-oscuro: #004c37;
  --primary-color: #3b5dc9;
}

* {
  box-sizing: border-box;
  font-family: "Gotham", sans-serif;
}

html,
body {
  background-color: #fdfbfb;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

main {
  margin-top: 90px;
}

section {
  scroll-padding-top: 120px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

input,
button,
textarea,
select {
  border: none;
  outline: none;
}

.px-section {
  padding-left: 20px;
  padding-right: 20px;
}

.py-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.my-section {
  margin-top: 70px;
  margin-bottom: 70px;
}

.max-width-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.title-section {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
}

.text-white {
  color: var(--blanco);
}

.text-green {
  color: var(--verde-plazuela);
}

.text-red {
  color: var(--rojo-plazuela);
}

.text-blue {
  color: var(--primary-color);
}

.text-purple {
  color: var(--morado-express);
}

.paragraph {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .max-width-container {
    max-width: 900px;
  }

  .my-section {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .py-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .title-section {
    font-size: 34px;
  }
}

@media (max-width: 969px) {
  .max-width-container {
    max-width: 900px;
  }

  .my-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .py-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .title-section {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .max-width-container {
    max-width: 700px;
  }

  .my-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .py-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .title-section {
    font-size: 30px;
  }

  .paragraph {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .max-width-container {
    max-width: 500px;
  }

  .my-section {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .py-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .title-section {
    font-size: 24px;
  }
}

.max-width {
  max-width: 1440px;
}

.max-width-menu {
  max-width: 1800px;
}

.btn {
  display: block;
  text-align: center;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--blanco);
}

.btn-primary:hover {
  background-color: var(--blanco);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-white {
  background-color: var(--blanco);
  border-color: var(--blanco);
  color: var(--primary-color);
}

.btn-puente-alto:hover {
  background-color: var(--verde-claro-plazuela);
  border-color: var(--verde-claro-plazuela);
  color: var(--blanco);
}

.btn-iquique:hover {
  background-color: var(--naranjo-plazuela);
  border-color: var(--naranjo-plazuela);
  color: var(--blanco);
}

.btn-green-outline {
  background-color: var(--blanco);
  border-color: var(--verde-oscuro);
  color: var(--verde-oscuro);
}

.btn-green {
  background-color: var(--verde-oscuro);
  border-color: var(--verde-oscuro);
  color: var(--blanco);
}

.btn-green-hover:hover {
  background-color: var(--verde-claro-plazuela);
  border-color: var(--verde-claro-plazuela);
  color: var(--blanco);
}

.btn-yellow-hover:hover {
  background-color: var(--naranjo-plazuela);
  border-color: var(--naranjo-plazuela);
  color: var(--blanco);
}

.shadow {
  box-shadow: 0px 4px 12px 0px #0000001f;
}

/* ----------BANNER---------- */
.banner-container {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.banner-image {
  position: absolute;
  inset: 0;
}

.banner-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-image picture .desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-image picture::before,
.banner-image picture img::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.banner-content {
  position: absolute;
  inset: 0;
  gap: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--blanco);
}

.logo-banner {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-top: -80px;
}

.banner-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  width: 853px;
  text-align: center;
  margin-top: 10px;
}

.pla-banner {
  width: 15%;
  max-width: 300px;
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: -1;
}

@media (max-width: 969px) {
  main {
    margin-top: 45px;
  }

  .banner-container {
    height: 460px;
  }

  .logo-banner {
    max-width: 380px;
  }

  .banner-content {
    padding: 20px;
  }

  .banner-content p {
    width: 100%;
    max-width: 600px;
    font-size: 18px;
  }
}

@media (max-width: 577px) {
  .banner-content p {
    font-size: 16px;
  }

  .pla-banner {
    width: 85px;
  }
}

/* ----------------------------- */

.team-section::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 145%;
  height: 20%;
  background-color: #fdfbfb;
  border-radius: 100%;
  z-index: 2;
}

.team-section {
  overflow: hidden;
}

/* -------TABS----------- */
.tab-sucursales {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 5;
}

.tab-sucursales a {
  position: relative;
  width: 290px;
  text-align: center;
}

.tab-sucursales img {
  width: 100%;
  display: block;
}

.tab-sucursales a::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 0;
  height: 6px;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
}

.tab-sucursales .puente-alto-tab::after {
  background-color: var(--verde-plazuela);
}

.tab-sucursales .iquique-tab::after {
  background-color: var(--rojo-plazuela);
}

.tab-sucursales .home-tab::after {
  background-color: var(--azul-contacto);
}

.tab-sucursales .tab-sucursal:hover::after {
  width: 100%;
}

.tab-sucursales .tab-sucursal.active::after {
  width: 100%;
  cursor: default;
}

.tab-sucursales .tab-sucursal.active {
  cursor: default;
}

@media (max-width: 969px) {
  #sucursales {
    margin-top: -10px;
    z-index: 3;
    position: absolute;
  }

  .tab-sucursales a {
    width: 180px;
  }

  .tab-sucursales a::after {
    bottom: -15px;
    height: 3px;
  }
}

@media (max-width: 577px) {
  .tab-sucursales {
    gap: 30px;
    margin: 0 0 30px;
  }

  .tab-sucursales a {
    width: 130px;
  }
}

/* -------------------------- */

/* ---------TAB CONTENT----------- */
.tabs-content {
  position: relative;
  margin-top: 80px;
}

.container-section-tabs .banner-tab,
.container-iquique .iquique-img {
  border-radius: 8px;
  display: block;
  width: 100%;
  height: 516px;
  object-fit: cover;
}

.container-section-tabs .container-tiendas-puente-alto .puente-alto-intro {
  position: relative;
  z-index: 3;
}

.container-section-tabs
  .container-tiendas-puente-alto
  .puente-alto-intro
  .paragraph,
.container-section-tabs .container-tiendas-iquique .iquique-intro .paragraph {
  width: 100%;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}

.container-section-tabs,
.container-iquique,
.plazuela-express {
  text-align: center;
}

.plazuela-express {
  position: relative;
  z-index: 3;
}

.puente-alto-intro .intro,
.iquique-intro .intro,
.texto-contacto {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.container-plazuela {
  color: var(--azul-contacto);
  font-size: 48px;
}

.intro-plazuela h2,
.puente-alto-intro h2,
.iquique-intro h2 {
  font-size: 50px;
}

.intro-plazuela p {
  font-size: 18px;
  line-height: 160%;
  color: #000;
  padding: 0 15%;
  margin: auto;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: space-between;
  margin: 50px auto 80px;
  border-radius: 4px;
  box-shadow: 0px 4px 12px 0 rgba(0, 0, 0, 0.12);
  padding: 8px 10px;
  gap: 10px;
}

.flecha-buscador {
  position: relative;
  overflow: hidden;
  width: 18px;
  height: 18px;
}

.flecha-buscador .flecha {
  position: absolute;
  top: 50%;
  transform: translate(-200px, -50%);
  transition: 0.3s ease;
  width: 20px;
}

.search-container input {
  flex: 1;
  border: none;
  background: #fff;
  outline: none;
  font-size: 20px;
}

.filter-button {
  background: transparent;
  margin: auto;
  padding: 0 6px;
}

.filtro-img,
.search-img {
  width: 18px;
  height: 18px;
  transition: 0.3s ease;
}

.menu-filtro {
  flex-direction: column;
  position: absolute;
  top: 130%;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  align-items: self-start;
  z-index: 3;
  max-height: 500px;
  overflow-y: auto;
}

.menu-filtro::-webkit-scrollbar {
  width: 5px;
}

.menu-filtro::-webkit-scrollbar-thumb {
  background-color: var(--verde-plazuela);
  border-radius: 4px;
  background-clip: content-box;
}

.menu-filtro.menu-filtro-iquique::-webkit-scrollbar-thumb {
  background-color: var(--rojo-plazuela);
}

.menu-filtro::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 4px;
}

.menu-filtro.menu-filtro-puente-alto label.activo {
  background-color: var(--verde-plazuela);
  color: var(--blanco);
}

.menu-filtro.menu-filtro-iquique label.activo {
  background-color: var(--rojo-plazuela);
  color: var(--blanco);
}

.menu-filtro label {
  display: flex;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  width: 100%;
  text-align: start;
  padding: 10px 40px;
}

.menu-filtro label:hover {
  background-color: rgba(0, 0, 0, 0.12);
}

.menu-filtro label input {
  display: none;
}

.icono-categorias {
  height: 23px;
  margin-right: 10px;
}

.menu-filtro label .active {
  display: none;
}

.menu-filtro label.activo .active {
  display: block;
}

.menu-filtro label.activo .inactive {
  display: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.iquique-intro h2,
.ubicacion-iquique h2 {
  color: var(--rojo-plazuela);
  text-align: center;
}

@media (max-width: 969px) {
  .container-section-tabs .banner-tab,
  .container-iquique .iquique-img {
    height: 400px;
  }

  .menu-filtro label {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .puente-alto-intro .intro,
  .iquique-intro .intro {
    color: #1a202c;
    text-align: center;
    font-size: 25px;
    max-width: 70%;
    margin: auto;
    font-weight: 100;
    line-height: 150%;
    letter-spacing: 0.5px;
  }

  .menu-filtro input {
    display: hidden;
  }

  .filtro-img,
  .search-img {
    height: 20px;
  }

  .container-section-tabs .banner-tab,
  .container-iquique .iquique-img {
    height: 320px;
  }
}

@media (max-width: 577px) {
  .tab-content {
    padding-top: 20px;
  }

  .container-section-tabs .banner-tab,
  .container-iquique .iquique-img {
    height: 148px;
  }

  .menu-filtro label {
    font-size: 16px;
  }
}

/* ------- GRID ------- */
#grid .curva-grid {
  top: 80px;
  left: 0;
  position: absolute;
  width: 100%;
  pointer-events: none;
}

.tiendas-grid-container {
  padding-bottom: 50px;
}

.iquique-grid {
  background-color: var(--rojo-plazuela);
  padding-bottom: 50px;
}

.tiendas-grid-container .card-tienda.hidden,
.iquique-grid .card-tienda.hidden {
  display: none;
}

.grid-puente-alto,
.grid-iquique {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 25px;
  padding: 60px 0;
  max-height: none;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
  z-index: 1;
}

.tiendas-grid-container div > .btn-green {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.btn-grid {
  display: block;
  color: var(--blanco);
  font-size: 16px;
  background-color: var(--verde-oscuro);
  border-radius: 4px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  padding: 15px 70px;
  margin: auto;
  width: max-content;
}

.tiendas-grid-container .btn-grid:hover {
  background-color: var(--verde-claro-plazuela);
}

.iquique-grid .btn-grid:hover {
  background-color: var(--naranjo-plazuela);
}

.card-tienda {
  display: flex;
  align-items: start;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 30px 20px 20px 20px;
  gap: 15px;
}

.img-tienda {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
}

.contenido-tienda {
  width: 60%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contenido-tienda .btn {
  padding: 11px 30px;
  margin-top: auto !important;
}

.grid-puente-alto .descripcion,
.grid-iquique .descripcion {
  display: none;
}

.titulo-tienda {
  text-align: start;
  font-size: 22px !important;
  font-weight: 700;
  line-height: 143%;
  letter-spacing: -0.44px;
  color: var(--verde-oscuro);
  margin: 0 0 10px;
}

.horario-tienda {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #1a202c;
  margin: 0 0 10px;
  text-align: start;
}

.boton-tienda {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.32px;
  padding: 5px 20px;
  background: transparent;
  border: 2px solid var(--verde-oscuro);
  color: var(--verde-oscuro);
  border-radius: 4px;
  transition: background-color 0.2s ease;
  margin-top: auto;
}

@media screen and (max-width: 969px) {
  .grid-puente-alto,
  .grid-iquique {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  .grid-puente-alto,
  .grid-iquique {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    transition: max-height 0.5s ease;
  }

  .titulo-tienda {
    font-size: 20px !important;
  }

  .horario-tienda {
    font-size: 16px;
  }
}

@media (max-width: 577px) {
  .tiendas-grid-container .btn {
    width: 100%;
  }
}

/* ------------------------------ */

.caracteristicas-container {
  position: relative;
  z-index: 1;
  color: var(--blanco);
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 0 0 100% 100% / 0 0 20% 20%;
}

.caracteristicas {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: start;
  padding-top: 20px;
}

.caracteristicas-plazuela {
  background-color: var(--azul-contacto);
}

.caracteristicas-plazuela .caracteristicas {
  gap: 60px;
}

.caracteristicas-item img {
  height: 35px;
  margin-bottom: 10px;
}

.caracteristicas-item p {
  font-size: 24px;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.48px;
  margin: 10px 0;
}

.icono {
  height: 55px;
}

@media (max-width: 969px) {
  .caracteristicas-item p {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .caracteristicas {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .caracteristicas-item p {
    font-size: 18px;
  }
}

/* --------------------- */

/* ------- CARRUSEL -------- */
.carrusel-section {
  position: relative;
}

.swiper {
  position: relative;
  padding: 40px 80px;
  overflow: visible;
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  text-align: center;
  width: 100%;
  height: 450px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  align-self: center;
  top: 50%;
  transform: translateY(-50%);
  stroke-width: 4px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  z-index: 5;
  pointer-events: auto;
  margin: 0 80px;
}

.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #666666;
  opacity: 1;
  margin: 0 6px !important;
}

.carrusel-plazuela .swiper-button-prev,
.carrusel-plazuela .swiper-button-next {
  color: var(--azul-contacto);
}

.carrusel-plazuela .swiper-pagination-bullet-active {
  background-color: var(--azul-contacto);
}

.carrusel-puente-alto .swiper-button-prev,
.carrusel-puente-alto .swiper-button-next {
  color: var(--verde-plazuela);
}

.carrusel-puente-alto .swiper-pagination-bullet-active {
  background-color: var(--verde-plazuela);
}

.carrusel-iquique .swiper-button-prev,
.carrusel-iquique .swiper-button-next {
  color: var(--rojo-plazuela);
}

.carrusel-iquique .swiper-pagination-bullet-active {
  background-color: var(--rojo-plazuela);
}

/* -------------------------- */
.ubicacion-puente-alto {
  position: relative;
  z-index: 1;
}

.titulo {
  margin-top: 0;
}

.direccion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #1a202c;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

.direccion .logo {
  height: 70px;
}

.direccion p {
  line-height: 150%;
  margin: 0;
  font-size: 18px;
}

.ubicacion-body {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.ubicacion-body .mapa-puente-alto {
  width: 60%;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
}

.ubicacion-body .texto-ubicacion {
  width: 40%;
}

.ubicacion-body .mapa-puente-alto iframe {
  width: 100%;
}

.ubicacion-body .puente-alto {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
  margin: 0 0 20px;
}

.ubicacion-body .iquique {
  color: var(--rojo-plazuela);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
}

.iconos {
  display: flex;
  gap: 30px;
}

.iconos img {
  height: 60px;
}

@media (max-width: 768px) {
  .direccion p {
    font-size: 16px;
  }

  .ubicacion-body {
    flex-direction: column;
    gap: 30px;
  }

  .ubicacion-body .mapa-puente-alto,
  .ubicacion-body .texto-ubicacion {
    width: 100%;
  }
}

/* --------------------------------- */
.bg-blue {
  background-color: var(--azul-contacto);
}

.bg-purple {
  background-color: var(--morado-express);
}

.bg-green {
  background-color: var(--verde-plazuela);
}

.bg-light-green {
  background-color: var(--verde-claro-plazuela);
}

.bg-red {
  background-color: var(--rojo-plazuela);
}

.bg-yellow {
  background-color: var(--naranjo-plazuela);
}

.team-contacto {
  color: #fff;
  text-align: center;
  gap: 30px;
  padding: 40px 0;
}

.texto-contacto {
  width: 40%;
  margin: auto !important;
}

.team-contacto .paragraph {
  width: 100%;
  max-width: 530px;
}

.team-contacto .btn {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .texto-contacto {
    font-size: 25px;
    padding: 0 20px;
    width: 70%;
    margin: auto;
  }

  .team-contacto .btn {
    width: 100%;
  }
}

/* ---------EXPRESS----------- */
.express-intro {
  overflow: hidden;
}

.curvas-express img,
.curvas-express svg {
  position: absolute;
  height: 300px;
  pointer-events: none;
  z-index: -1;
}

.curva-derecha {
  right: 0;
  top: 30px;
}

.curva-izquierda {
  left: -70px;
  top: -25px;
}

.logo-plazuela-express {
  width: 325px;
  margin-bottom: 45px;
}

.intro-express {
  width: 100%;
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  font-size: 30px;
  font-weight: 400;
  line-height: 150%;
  background-color: var(--azul-contacto);
  color: #fff;
  margin-bottom: 0;
}
.descripcion {
  font-size: 30px;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 1199px) {
  .curvas-express img,
  .curvas-express svg {
    height: 200px;
  }
  .curva-derecha {
    right: -130px;
    top: 70px;
  }

  .curva-izquierda {
    left: -200px;
    top: 50px;
  }
}
@media (max-width: 969px) {
  .plazuela-express .intro .descripcion {
    font-size: 18px;
  }
  .descripcion {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .curvas-express img,
  .curvas-express svg {
    height: 120px;
  }
  .curva-derecha {
    right: -240px;
    top: 100px;
  }

  .curva-izquierda {
    left: -260px;
    top: 120px;
  }
  .descripcion {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .plazuela-express .intro .descripcion {
    font-size: 16px;
  }
  .descripcion {
    font-size: 18px;
  }
}

.plazuela-express .caracteristicas-container {
  margin-top: 0;
}

.caracteristicas-express {
  text-align: center;
  padding: 40px 0;
}

.ubicaciones-express {
  background: #fdfbfb;
}

.ubicaciones-body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: auto;
  gap: 100px;
  height: 475px;
}

.direcciones {
  width: 40%;
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 12px 0px #0000001f;
  padding: 40px 30px;
  overflow-y: auto;
}

.direcciones::-webkit-scrollbar {
  width: 5px;
}

.direcciones::-webkit-scrollbar-thumb {
  background-color: var(--morado-express);
  border-radius: 4px;
  background-clip: content-box;
}

.direcciones::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 4px;
}

.title-location {
  font-size: 32px;
  margin: 0 0 20px;
}

.direcciones-container .direccion-item {
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}

.direcciones-container .direccion-item:hover {
  background-color: #f0f0f0;
}
.direcciones-container .direccion-item.active {
  background-color: #f0f0f0;
}

.direcciones img {
  height: 47px;
}

.direcciones h3,
.direcciones h4,
.direcciones p {
  text-align: start;
}

.direcciones h4 {
  font-size: 18px;
}

.direcciones p {
  font-size: 16px;
}

.seccion-mapa {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 6rem;
}

#map {
  width: 40%;
  min-height: 467px;
  border-radius: 8px;
  background-color: #eaeaea;
  box-shadow: 0px 4px 12px 0px #0000001f;
  flex-shrink: 0;
}

/* popup del mapa */
.popup-content {
  width: 200px;
  padding-top: 15px;
}

.popup-content .popup-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.express-map-marker {
  background: none;
  border: none;
}

.express-map-marker svg {
  width: 33px;
  height: 46px;
  display: block;
}

.popup-content p {
  margin-top: 5px;
}

.popup-content > :last-child {
  margin-bottom: 5px;
}

.popup-address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.popup-address-text {
  margin-top: 10px !important;
}

.popup-comuna {
  color: var(--gris);
  font-size: 16px;
}

.leaflet-container a.leaflet-popup-close-button {
  color: var(--verde) !important;
  font: 30px / 40px Tahoma, Verdana, sans-serif !important;
  border-radius: 4px;
  margin-right: 10px;
  font-weight: 300 !important;
}

/* cambiar el color del cluster */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background-color: #19704741 !important;
  color: white;
}

.marker-cluster div {
  background-color: #00944f !important;
  color: white;
  font-weight: 700;
}

@media (max-width: 768px) {
  .logo-plazuela-express {
    width: 50%;
  }

  .ubicaciones-body {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    height: auto;
  }

  .mapa-express {
    flex-direction: column;
    margin: 0 auto;
  }

  .seccion-mapa {
    flex-direction: column;
    height: auto;
    gap: 4rem;
    width: 100%;
  }

  #map {
    width: 100%;
    height: 338px;
    padding: 10px;
    margin: 0 auto;
  }

  .direcciones {
    width: 100%;
  }

  #expressList {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 2rem;
    order: 2;
  }
}

/* -------------------------------- */

.site-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FOOTER */
.site-footer {
  z-index: 1000;
  color: var(--blanco);
  width: 100%;
  text-align: center;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background-color: var(--azul-contacto);
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  z-index: -1;
  overflow: hidden;
}

.logo-footer {
  width: 20%;
  margin-top: 20px;
}

.footer-redes img {
  border-radius: 100px;
  padding: 6px 12px;
  height: 40px;
}

.footer-menu ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
  position: relative;
}

.footer-menu a {
  position: relative;
  display: flex;
  font-size: 18px;
}

.footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #fcfcfc;
  transition: width 0.3s ease-in-out;
}

.footer-menu a:hover::after {
  width: 100%;
}

.footer-line {
  border: none;
  border-top: 3px solid #fff;
  margin: 20px auto;
  width: 100%;
  color: #fff;
  height: 3px;
}

.footer-copy {
  display: flex;
  width: 100%;
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  .site-footer {
    width: 100%;
  }

  .site-footer::before {
    width: 220%;
  }

  .footer-container {
    padding-top: 30px;
  }

  .logo-footer {
    width: 40%;
  }

  .footer-menu ul {
    display: flex;
    flex-direction: column;
    margin: 40px auto;
    gap: 40px;
    font-size: 20px;
    align-items: center;
  }

  .footer-menu a {
    font-size: 16px;
  }
}

/* -------------------- */

/* ----PAGE CONTACTO---- */
.curva-roja {
  left: 0;
  top: 50px;
  position: absolute;
  pointer-events: none;
}

.curva-verde {
  top: 0;
  right: 0;
  position: absolute;
  pointer-events: none;
}

.page-contacto {
  background-color: #fbfbfb;
  position: relative;
}

.sec-contantanos {
  position: relative;
}

.sec-contantanos::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--azul-contacto);
}

.sec-contantanos .curva-purple {
  position: absolute;
  z-index: 0;
  top: -65%;
  left: 0;
  width: 100%;
}

.curva path {
  opacity: 0;
}

.container-contacto {
  display: flex;
  position: relative;
  z-index: 2;
  justify-content: center;
  padding-top: 50px;
}

.intro-contacto {
  width: 54%;
  justify-content: left;
  position: relative;
  padding: 40px 147px 0 0;
}

.intro-contacto .title-section {
  text-align: start;
}

.paragraph-contacto {
  font-size: 22px;
  margin: 20px 0;
  line-height: 143%;
}

.formulario {
  width: 46%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 15px;
}
.formulario p {
  margin: 0;
}
.formulario .tema {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
}

.formulario label {
  font-size: 18px;
}
.formulario input:not([type="submit"]),
.formulario textarea,
.formulario select {
  width: 100%;
  border: 1px solid var(--azul-contacto);
  border-radius: 8px;
  padding: 14px 12px;
  background: #f9f9fb;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  font-size: 16px;
  color: #808080;
  margin-top: 10px;
}

.formulario textarea {
  resize: none;
}

.formulario .limit-msg {
  position: absolute;
  bottom: -15px;
  right: 0;
  font-size: 12px;
}

.formulario .btn {
  width: 50%;
  cursor: pointer;
}
.formulario .wpcf7 .wpcf7-response-output {
  position: absolute;
  left: 0;
  bottom: -40px;
}
.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #ffb900;
  color: #fff;
}
.formulario .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 14px;
}
.error {
  color: #bd2e28;
  font-size: 18px;
}

.error-label {
  color: #bd2e28 !important;
}

.formulario .tema .error {
  display: none;
}

.formulario .tema.has-error .error {
  display: block;
}

.formulario .tema.has-error .label-form,
.formulario .tema.has-error label {
  color: #bd2e28 !important;
}

.formulario .tema.has-error input,
.formulario .tema.has-error select,
.formulario.tema.has-error textarea {
  border-color: #bd2e28;
}

@media screen and (max-width: 969px) {
  .intro-contacto {
    padding: 20px 50px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .container-contacto {
    display: block;
    padding-top: 0;
  }

  .intro-contacto {
    width: 100%;
    margin: 0 auto 30px;
    padding: 0;
  }

  .intro-contacto p {
    font-size: 18px;
  }

  .formulario {
    width: 100%;
  }

  #msg {
    margin-bottom: 80px;
  }

  .formulario label {
    font-size: 16px;
  }

  .formulario .btn {
    width: 100%;
  }
}

/* ---------------------------------- */
/* ------------ PAGE TIENDA -------------- */

.page-tienda {
  background-color: #fdfbfb;
}

.curva-tienda {
  bottom: -170px;
  right: 0;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.banner-tienda {
  position: relative;
  height: 430px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-tienda div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 565px;
  height: 195px;
}

.single-banner {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.single-tienda {
  position: relative;
}

.single-tienda::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 170%;
  height: 100%;
  background-color: #fdfbfb;
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

@media (max-width: 969px) {
  .single-tienda::before {
    width: 230%;
  }
}

@media (max-width: 577px) {
  .single-tienda::before {
    width: 400%;
  }
}

.texto-ruta {
  display: flex;
  position: relative;
  gap: 30px;
  align-items: center;
  z-index: 2;
  margin-bottom: 50px;
}

.texto-ruta p span {
  font-weight: 700;
}

.texto-ruta p,
.categoria p {
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

#btn-volver {
  color: var(--blanco);
  background-color: var(--verde-oscuro);
  border-radius: 4px;
  padding: 5px;
  width: 30px;
  height: 30px;
}

.categoria {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  margin-bottom: 30px;
}

.categoria p {
  margin-left: 20px;
  margin-right: 40px;
}

.single-body {
  display: flex;
  position: relative;
  z-index: 2;
  gap: 50px;
  margin-bottom: 100px;
}

.single-texto {
  width: 58%;
}

.single-title {
  font-size: 48px;
  margin: 0 0 20px;
}

.single-content img {
  max-width: 100%;
  display: block;
  margin: 20px 0;
}

.single-content p {
  font-size: 22px;
  font-weight: 400;
  margin: 20px 0;
  line-height: 143%;
  letter-spacing: -0.5px;
}

.single-info {
  width: 42%;
}

.single-info h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 15px 0 25px;
}

.single-info p {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 20px;
}

.links-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.links-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 5px;
  width: 40px;
  height: 40px;
}

.links-socials img {
  max-width: 100%;
  max-height: 100%;
}

#puente-alto .links-socials a {
  background-color: var(--verde-claro-plazuela);
}

#iquique .links-socials a {
  background-color: var(--naranjo-plazuela);
}

@media (max-width: 1199px) {
  .texto-ruta p,
  .categoria p,
  .single-info p,
  .single-content p {
    font-size: 18px;
  }

  .single-title {
    font-size: 40px;
  }

  .single-info h2 {
    font-size: 26px;
  }
}

@media (max-width: 969px) {
  .single-body {
    flex-direction: column;
    gap: 30px;
  }

  .single-texto,
  .single-info {
    width: 80%;
  }

  .texto-ruta p,
  .categoria p,
  .single-info p,
  .single-content p {
    font-size: 16px;
  }

  .single-title {
    font-size: 36px;
  }

  .single-info h2 {
    font-size: 22px;
  }
}

@media (max-width: 577px) {
  .single-body {
    flex-direction: column;
    gap: 30px;
  }

  .single-texto,
  .single-info {
    width: 100%;
  }

  .texto-ruta p,
  .categoria p {
    font-size: 14px;
  }

  .single-title {
    font-size: 20px;
  }

  .single-info h2 {
    font-size: 20px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

body.modal-open {
  overflow: hidden;
}

.modal.active {
  display: flex;
}

.modal-dialog {
  background-color: #fff;
  width: 90%;
  max-width: 567px;
  padding: 20px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  padding: 0;
}

.btn-close span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #3b5dc9;
}

.btn-close span:first-child {
  transform: rotate(45deg) translate(1px, 1px);
}

.btn-close span:last-child {
  transform: rotate(-45deg) translate(1px, -1px);
}

.curva-modal {
  position: absolute;
  bottom: 0;
  right: 0;
}

.modal-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.modal-title {
  font-size: 30px;
  margin: 0;
}

.modal-content .modal-body p {
  font-size: 18px;
  line-height: 150%;
  margin: 0 0 40px;
}
