.label-aviso a {
  color: #444444;
}
.label-aviso a:hover {
  color: #111111;
}
input[type="checkbox"] {
  accent-color: #444444 !important;
  color: white;
  margin-top: 9.5px;
}
.btn-alt:hover {
  background: #444444;
}
.separador-cnt {
  padding: 10px 0px;
}

.bloque-mapa__contenedor {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.bloque-mapa__titulo {
  text-align: center;
  font-size: 40px;
  margin: 0 0 30px;
  font-weight: 600;
}

.bloque-mapa__titulo span {
  font-weight: 700;
}

/* CONTENEDOR DEL MAPA + PANEL */
.map-wrapper {
  display: flex;
  gap: 0;
  border-radius: 22px;
  height: 579px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}

/* Mapa a la IZQUIERDA (desktop) */
#map-cafesmora {
  flex: 1 1 auto;
  min-height: 440px;
}

/* Estado inicial: aside oculto y sin ocupar espacio (desktop) */
.store-panel {
  width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  border-left: none;
  background: #fafafa;
  transition:
    width 0.3s ease,
    max-width 0.3s ease,
    opacity 0.3s ease;
}

/* Cuando haya tienda seleccionada (desktop) */
.store-panel--visible {
  width: 340px;
  height: 579px;
  max-width: 40%;
  opacity: 1;
  border-left: 1px solid #ddd;
}

.store-panel__image {
  position: relative;
  width: 100%;
  height: 195px;
  overflow: hidden;
  background: #ddd;
}

.store-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-panel__name {
  background: var(--clr-theme-primary);
  color: #fff;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-panel__content {
  padding: 10px 14px 14px;
  font-size: 0.9rem;
  overflow-y: auto;
  flex: 1;
}

.store-panel__content p {
  margin: 4px 0;
}

.store-panel__label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.store-panel__phone a {
  font-weight: 600;
}

.store-panel__phone a:hover {
  color: var(--clr-theme-primary);
}

.store-panel__desc {
  margin-top: 8px;
}

.store-panel__image,
.store-panel__name,
.store-panel__content {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.store-panel--visible .store-panel__image,
.store-panel--visible .store-panel__name,
.store-panel--visible .store-panel__content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 800px) {
  /* MAPA + PANEL en columna y sin límite de altura */
  .map-wrapper {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  #map-cafesmora {
    min-height: 320px; /* como lo tenías, ajusta si quieres */
  }

  /* PANEL debajo del mapa, ocupando todo el ancho */
  .store-panel {
    width: 100%;
    max-width: 100%;
    height: 0; /* oculto por defecto */
    border-left: none;
    overflow: hidden;
  }

  .store-panel--visible {
    height: auto; /* se adapta al texto */
    border-top: 1px solid #ddd;
  }

  /* Ocultar imagen en móvil */
  .store-panel__image {
    display: none;
  }

  /* Nombre + contenido ocupan todo el ancho */
  .store-panel__name,
  .store-panel__content {
    width: 100%;
  }

  /* Para que el texto no tenga scroll interno en móvil */
  .store-panel__content {
    overflow-y: visible;
  }
}

.leaflet-top,
.leaflet-bottom {
  position: initial;
}

.map-wrapper {
  position: relative;
  z-index: 1 !important;
}

#map-cafesmora {
  position: relative;
  z-index: 1 !important;
}

.support-item.is-cafesmora {
  background: #f5f1e6;
  padding-bottom: 20px;
}

.breadcrumb-kinetic {
  position: relative;
  overflow: hidden;
}

.breadcrumb-kinetic {
  animation: breadcrumbEnter 0.7s ease-out forwards;
  transform-origin: center;
  opacity: 0;
}

@keyframes breadcrumbEnter {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    letter-spacing: 0.04em;
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.01);
    letter-spacing: 0.08em;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 0.04em;
  }
}

.support-item.is-cafesmora {
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    background-color 220ms ease-out,
    border-color 220ms ease-out;
  will-change: transform, box-shadow;
  cursor: default;
}

.support-item.is-cafesmora:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.98);
}

.support-item.is-cafesmora:hover h3 {
  color: #b18b5e;
}

.contact__from-input input,
.contact__from-input textarea {
  transition:
    border-color 180ms ease-out,
    box-shadow 180ms ease-out,
    transform 180ms ease-out,
    background-color 180ms ease-out;
  outline: none;
}

.contact__from-input input:focus,
.contact__from-input textarea:focus {
  border-color: #b18b5e;
  box-shadow: 0 0 0 2px rgba(177, 139, 94, 0.18);
  background-color: #fffdf9;
  transform: translateY(-1px);
}

.form-error {
  animation: formAlertIn 260ms ease-out;
}

.form-success {
  animation: formAlertIn 260ms ease-out;
}

@keyframes formAlertIn {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.join-btn.btn-alt {
  position: relative;
  overflow: hidden;
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    background-position 220ms ease-out;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.join-btn.btn-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.join-btn.btn-alt:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.join-btn.btn-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  opacity: 0;
  transform: scale(0.3);
  transition:
    opacity 260ms ease-out,
    transform 260ms ease-out;
  pointer-events: none;
}

.join-btn.btn-alt:active::after {
  opacity: 1;
  transform: scale(1);
}

.backtotop-wrap {
  bottom: 40px;
  left: 40px;
}

@media (max-width: 992px) {
  .backtotop-wrap {
    z-index: 999;
    position: fixed;
    bottom: 10px;
    left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: #faf8f5;
}

header {
  background-color: #ffffff;
}

.contact-from {
  background-color: #cce2a6;
}

.privacy-section h1.privacy-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.privacy-section h2 {
  font-size: 26px !important;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #333;
}

.privacy-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #444;
}

.privacy-section p {
  margin-bottom: 15px;
  color: #555;
}

.privacy-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-section ul li {
  margin-bottom: 8px;
  color: #555;
}

.privacy-section strong {
  font-weight: 600;
  color: #222;
}

.privacy-section ul li::marker {
  color: #888;
}

.privacy-section * + * {
  margin-top: 8px;
}

.accordion-item {
  background-color: inherit;
}

.fa-calendar {
  font-size: 1.1 rem;
}

.bd-faq .accordion-button:not(.collapsed) {
  background-color: #f5f1e6;
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-grid {
  grid-template-columns: repeat(3, 1fr);
}

.brand-thumb {
  max-width: 320px;
}

@media (max-width: 575px) {
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.enl-prs {
  color: #719d25 !important;
  font-size: 20px !important;
}

.enl-prs:hover {
  color: #161616 !important;
}

/*--------------------------------------*/

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background-color: #000;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  padding: 0 20px;
  max-width: 800px;
}

.slide-subtitle {
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  color: #faf8f5;
}

.slide-separator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.slide-separator span {
  display: block;
  width: 8px;
  height: 8px;
  background-color: #719d25;
  transform: rotate(45deg);
}

.slide-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
  color: #faf8f5;
}

.slide-description {
  font-size: 2rem;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #faf8f5;
}

.slide-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  border-radius: 3px;
}

.btn-primary {
  background-color: #719d25;
  color: #faf8f5;
  border: 2px solid #719d25;
}

.btn-primary:hover {
  background-color: #faf8f5;
  border-color: #faf8f5;
  color: #719d25;
}

.btn-ghost {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-ghost:hover {
  background-color: #ffffff;
  color: #719d25;
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
  }
  .slide-description {
    font-size: 1rem;
  }
  .slide-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    width: 100%;
  }
}

.slider-nav {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.nav-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.nav-dot.active {
  background-color: #719d25;
  border-color: #719d25;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slider-nav {
    right: 50%;
    top: auto;
    bottom: 30px;
    transform: translateX(50%);
    flex-direction: row;
  }
}

.btn-third {
  background-color: #719d25;
  color: #faf8f5;
  border: 2px solid #719d25;
}
.btn-third:hover {
  background-color: #6c757d;
  color: #faf8f5;
  border: 2px solid #6c757d;
}

.logo-img {
  height: 72.8px;
  margin-bottom: 15px;
}
@media (max-width: 500px) {
  .logo-img {
    height: 45px;
  }
}
.input-archivos-multiples {
  padding: 0 !important;
  display: flex;
  align-items: center;
}

.input-archivos-multiples::-webkit-file-upload-button {
  height: 100%;
  margin: 0 12.5px 0 0;
  border: none;
  border-right: 1px solid #ced4da;
}

.input-archivos-multiples::file-selector-button {
  height: 100%;
  margin: 0 12.5px 0 0;
  border: none;
  border-right: 1px solid #ced4da;
}
