body {
    font-family: 'Inter', sans-serif;
    background-color: #FDFBF8;
    color: #000000;
}

h1,
h2,
h3,
.font-display {
    font-family: 'Inter', serif;
}

.nav-scrolled {
    background-color: rgba(253, 251, 248, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-transparent {
    background-color: transparent;
}

.testimonial-slider {
    transition: transform 0.5s ease-in-out;
}

.hero-bg {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%), url('img/1.jpeg');
}


.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.contact-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e5e7eb' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: #f3f4f6;
}

.scroller {
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller-inner {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.scroller:hover .scroller-inner {
    animation-play-state: paused;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-box span {
  background-color: #ccc;
  color: #000;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.label {
  margin-top: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #333;
}

.masonry {
  column-count: 3;
  column-gap: 1rem;
}

.detalles h2 {
  font-family: 'Tangerine', cursive !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: 3.5rem !important;
}

.titulo-detalles {
    font-family: 'Tangerine', cursive !important;
    font-size: 3.5rem !important;
}

  .pinterest-widget {
    max-width: 320px; /* ancho más reducido */
    background-color: white !important; /* fondo blanco */
    border-radius: 12px;
    overflow: hidden;
  }

@media (max-width: 1024px) {
  .masonry { column-count: 3; }
}

@media (max-width: 768px) {
  .masonry { column-count: 2; }
}

@media (max-width: 480px) {
  .masonry { column-count: 1; }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.masonry-item img {
  width: 100%;     /* se adapta al ancho de la columna */
  height: auto;    /* conserva proporción natural */
  display: block;
  border-radius: 1rem;
}

.masonry-item img {
  transition: transform 0.3s ease;
}

.masonry-item:hover img {
  transform: scale(1.03);
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50%));
    }
}