/* GLOBAL STYLES
-------------------------------------------------- */

body {
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: rgb(var(--bs-tertiary-color-rgb));
  font-family: 'Rubik', sans-serif;
}

/* SECTION HEADINGS
-------------------------------------------------- */
.section-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  margin: 4rem 0 3rem;
  position: relative;
  display: block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #EF288F;
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* IMAGENES AJUSTES*/
.img-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-hover:hover {
  transform: scale(1.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hover-image-wrapper {
  position: relative;
  display: block;
  max-width: 500px;
  margin: auto;
}

.hover-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease;
}

.hover-image-wrapper .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.hover-image-wrapper:hover .hover-image {
  opacity: 1;
}

.hover-image-wrapper:hover .main-image {
  opacity: 0;
}

.hover-caption {
  font-size: 1rem;
  color: var(--bs-secondary-color);
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
.carousel {
  margin-bottom: 4rem;
}

.carousel-caption {
  left: 5%;
  right: 5%;
  max-width: 100%;
  word-wrap: break-word;
  bottom: 3rem;
  z-index: 10;
}

.carousel-item {
  width: 100%;
  height: auto;
  object-fit: content;
}

/* MARKETING CONTENT
-------------------------------------------------- */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */

/* Featurettes
------------------------- */
.featurette-divider {
  margin: 5rem 0;
}

/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -.05rem;
}
/* rtl:end:remove */

/* MEDIA SECTION
-------------------------------------------------- */
.media-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin: 2rem 0 4rem;
  width: 100%;
}

.media-block {
  width: 100%;
  max-width: 800px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(239, 40, 143, 0.2);
}

.media-block iframe {
  display: block;
  width: 100%;
  border: none;
}

.media-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(135deg, #EF288F, #c4186f);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-label svg {
  width: 18px;
  height: 18px;
  fill: white;
  flex-shrink: 0;
}

/* FOOTER
-------------------------------------------------- */
.site-footer {
  position: relative;
  margin-top: 5rem;
  padding: 3rem 0 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a12 0%, #2d0d1f 50%, #1a0a12 100%);
  color: rgba(255,255,255,0.8);
  border-radius: 24px 24px 0 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #EF288F, #ff6bba, #EF288F, transparent);
}

.footer-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(239,40,143,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 0 30px rgba(239,40,143,0.5);
}

.footer-brand span {
  color: #EF288F;
}

.footer-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: -1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: #EF288F;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #EF288F;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: #EF288F;
  color: #EF288F;
  background: rgba(239,40,143,0.1);
  transform: translateY(-2px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #EF288F;
}

.footer-hearts {
  color: #EF288F;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 40em) {
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    gap: 1rem;
  }
}
