.oferta-page[data-astro-cid-ombi37j6] {
  margin-top: 77px;
}
.oferta-hero[data-astro-cid-ombi37j6] {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e2654 100%);
  color: #fff;
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}
.oferta-hero[data-astro-cid-ombi37j6]:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 25%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 25% 75%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.15) 2px,
      transparent 2px
    );
  background-size: 80px 80px;
  background-position: 0 0;
  opacity: 0.4;
  animation: oferta-float 25s ease-in-out infinite;
}
@keyframes oferta-float {
  0%,
  to {
    transform: translateY(0) translate(0);
  }
  25% {
    transform: translateY(-5px) translate(2px);
  }
  50% {
    transform: translateY(-10px) translate(0);
  }
  75% {
    transform: translateY(-5px) translate(-2px);
  }
}
.hero-content[data-astro-cid-ombi37j6] {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-title[data-astro-cid-ombi37j6] {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}
.hero-description[data-astro-cid-ombi37j6] {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.offer-section-fullwidth[data-astro-cid-ombi37j6] {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--color-bg);
  padding: 0;
}
.offer-container[data-astro-cid-ombi37j6] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 121px);
  max-height: calc(100vh - 121px);
  max-width: 100%;
  margin: 0;
}
.offer-text-block[data-astro-cid-ombi37j6] {
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl);
  position: relative;
}
.offer-content[data-astro-cid-ombi37j6] {
  max-width: 550px;
  text-align: left;
}
.offer-title[data-astro-cid-ombi37j6] {
  text-align: left !important;
  margin-bottom: var(--spacing-xl);
}
.offer-description[data-astro-cid-ombi37j6] {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  font-weight: 400;
}
.offer-image-block[data-astro-cid-ombi37j6] {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}
.offer-image[data-astro-cid-ombi37j6] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.offer-image-block[data-astro-cid-ombi37j6]:hover
  .offer-image[data-astro-cid-ombi37j6] {
  transform: scale(1.05);
}
.offer-section-fullwidth[data-astro-cid-ombi37j6].text-image
  .offer-text-block[data-astro-cid-ombi37j6] {
  order: 1;
}
.offer-section-fullwidth[data-astro-cid-ombi37j6].text-image
  .offer-image-block[data-astro-cid-ombi37j6] {
  order: 2;
}
.offer-section-fullwidth[data-astro-cid-ombi37j6].image-text
  .offer-image-block[data-astro-cid-ombi37j6] {
  order: 1;
}
.offer-section-fullwidth[data-astro-cid-ombi37j6].image-text
  .offer-text-block[data-astro-cid-ombi37j6] {
  order: 2;
}
@media (max-width: 768px) {
  .oferta-page[data-astro-cid-ombi37j6] {
    margin-top: 83px;
  }
  .offer-section-fullwidth[data-astro-cid-ombi37j6] {
    width: 100%;
    position: static;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
    padding: var(--spacing-lg) 0;
  }
  .offer-container[data-astro-cid-ombi37j6] {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    max-height: none;
    gap: var(--spacing-lg);
  }
  .offer-section-fullwidth[data-astro-cid-ombi37j6].text-image
    .offer-text-block[data-astro-cid-ombi37j6],
  .offer-section-fullwidth[data-astro-cid-ombi37j6].image-text
    .offer-text-block[data-astro-cid-ombi37j6] {
    height: auto;
    order: 2;
    padding: 0 var(--spacing-lg);
    align-items: flex-start;
    padding-top: 0;
  }
  .offer-section-fullwidth[data-astro-cid-ombi37j6].text-image
    .offer-image-block[data-astro-cid-ombi37j6],
  .offer-section-fullwidth[data-astro-cid-ombi37j6].image-text
    .offer-image-block[data-astro-cid-ombi37j6] {
    height: 300px;
    order: 1;
    border-radius: 16px;
    margin: 0 var(--spacing-lg);
  }
  .offer-content[data-astro-cid-ombi37j6] {
    max-width: 100%;
    text-align: left;
  }
  .offer-title[data-astro-cid-ombi37j6] {
    margin-bottom: var(--spacing-md);
    text-align: left !important;
  }
  .offer-description[data-astro-cid-ombi37j6] {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
  }
}
@media (max-width: 480px) {
  .oferta-hero[data-astro-cid-ombi37j6] {
    padding: var(--spacing-xl) 0;
  }
  .hero-title[data-astro-cid-ombi37j6] {
    font-size: 2rem;
  }
  .hero-description[data-astro-cid-ombi37j6] {
    font-size: 1rem;
  }
  .offer-section-fullwidth[data-astro-cid-ombi37j6] {
    padding: var(--spacing-md) 0;
  }
  .offer-container[data-astro-cid-ombi37j6] {
    gap: var(--spacing-md);
  }
  .offer-section-fullwidth[data-astro-cid-ombi37j6].text-image
    .offer-text-block[data-astro-cid-ombi37j6],
  .offer-section-fullwidth[data-astro-cid-ombi37j6].image-text
    .offer-text-block[data-astro-cid-ombi37j6] {
    padding: 0 var(--spacing-md);
  }
  .offer-section-fullwidth[data-astro-cid-ombi37j6].text-image
    .offer-image-block[data-astro-cid-ombi37j6],
  .offer-section-fullwidth[data-astro-cid-ombi37j6].image-text
    .offer-image-block[data-astro-cid-ombi37j6] {
    height: 250px;
    margin: 0 var(--spacing-md);
  }
  .offer-title[data-astro-cid-ombi37j6] {
    line-height: 1.1;
    text-align: left !important;
  }
  .offer-description[data-astro-cid-ombi37j6] {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .offer-container[data-astro-cid-ombi37j6] {
    height: calc(100vh - 121px);
    max-height: calc(100vh - 121px);
    grid-template-columns: 1fr 1fr;
  }
  .offer-text-block[data-astro-cid-ombi37j6] {
    padding: var(--spacing-xl);
  }
  .offer-content[data-astro-cid-ombi37j6] {
    max-width: 480px;
  }
  .offer-title[data-astro-cid-ombi37j6] {
    text-align: left !important;
  }
}
@media (min-width: 1400px) {
  .offer-container[data-astro-cid-ombi37j6] {
    height: calc(100vh - 121px);
    max-height: calc(100vh - 121px);
    grid-template-columns: 1fr 1fr;
  }
  .offer-text-block[data-astro-cid-ombi37j6] {
    padding: var(--spacing-2xl) 4rem;
  }
  .offer-content[data-astro-cid-ombi37j6] {
    max-width: 600px;
  }
  .offer-title[data-astro-cid-ombi37j6] {
    text-align: left !important;
  }
  .offer-description[data-astro-cid-ombi37j6] {
    font-size: 1.2rem;
  }
}
