/* clikin bodas - Estilos principales */
:root {
  --fondo: #FFFFFF;
  --acento: #B2E2ED;
  --texto: #000000;
}

body {
  background-color: var(--fondo);
  color: var(--texto);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  padding-top: 76px;
}

/* Logo en nav */
.logo-nav {
  object-fit: contain;
}

/* Banner principal */
.banner-principal {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
  z-index: 1;
}

.banner-content {
  z-index: 2;
  position: relative;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Sección con acento */
.section-accent {
  background-color: var(--acento);
}

/* Carrusel recuerdos */
.carousel-recuerdos .carousel-item img {
  height: 400px;
  object-fit: cover;
}

.carousel-recuerdos .carousel-control-prev-icon,
.carousel-recuerdos .carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 1rem;
}

/* Cards de características */
.card-feature {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.12) !important;
}

.card-feature .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Sección licencias */
.section-licencias {
  background-color: var(--acento);
}

.plan-card .card-header {
  border: none;
}

.plan-destacado .card-header {
  background-color: var(--texto) !important;
}

.plan-card {
  transition: transform 0.2s ease;
}

.plan-card:hover {
  transform: scale(1.02);
}

/* Switch de planes */
.switch-pricing {
  border: 1px solid rgba(0,0,0,0.1);
}

.switch-pricing .plan-switch {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.switch-pricing .plan-switch:hover {
  color: var(--texto);
  opacity: 0.85;
}

.switch-pricing .plan-switch.active {
  background-color: var(--texto);
  color: var(--fondo);
}

.switch-single {
  border: none;
  background-color: transparent !important;
}

.plan-pricing-top {
  border-color: rgba(0,0,0,0.08) !important;
}

.pricing-select {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pricing-select:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.plan-destacado .plan-switch.active {
  background-color: var(--acento);
  color: var(--texto);
}

.plan-destacado .pricing-select.plan-destacado-btn {
  background-color: var(--acento);
  color: var(--texto);
  border: 1px solid var(--texto);
}

.plan-destacado .pricing-select.plan-destacado-btn:hover {
  background-color: var(--texto);
  color: var(--acento);
  border-color: var(--texto);
}

/* Footer */
.footer {
  background-color: var(--fondo);
  border-top: 2px solid var(--acento);
}

.logo-footer {
  object-fit: contain;
}

.footer a[aria-label*="Facebook"],
.footer a[aria-label*="Instagram"],
.footer a[aria-label*="TikTok"] {
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer a[aria-label*="Facebook"]:hover,
.footer a[aria-label*="Instagram"]:hover,
.footer a[aria-label*="TikTok"]:hover {
  color: var(--acento) !important;
  opacity: 0.9;
}

/* Botón WhatsApp flotante */
.btn-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  z-index: 1030;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Navbar */
.navbar .nav-link:hover {
  color: var(--acento) !important;
}

/* Enlaces y botones */
a.text-dark:hover {
  color: var(--acento) !important;
}

.btn-outline-dark:hover {
  background-color: var(--texto);
  border-color: var(--texto);
  color: var(--fondo);
}

/* Responsive */
@media (max-width: 991.98px) {
  .banner-principal {
    min-height: 70vh;
  }

  .banner-content .display-4 {
    font-size: 2rem;
  }

  .carousel-recuerdos .carousel-item img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-top: 66px;
  }

  .btn-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }
}
