* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Updated to pink/rose background with orange-to-purple gradients matching original design */
  --primary: #ff5722;
  --secondary: #e91e63;
  --accent: #9c27b0;
  --dark: #1a1a2e;
  --light: #ffffff;
  --gray: #6b7280;
  --gray-light: #ffe5e0;
  --gradient-primary: linear-gradient(135deg, #ff5722 0%, #e91e63 50%, #9c27b0 100%);
  --gradient-hero: linear-gradient(135deg, #ffe5e0 0%, #ffd4e5 100%);
  --gradient-features: linear-gradient(135deg, #ffd4e5 0%, #f3e5f5 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--primary);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: var(--light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--light);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 150px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Changed to pink/rose gradient background */
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255, 87, 34, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-number::after {
  content: "+";
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.hero-right {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Updated hero video styles */
.hero-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-icon {
  font-size: 2rem;
}

.card-title {
  font-weight: 700;
  color: var(--dark);
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  /* Changed to light pink background */
  background: #ffe5e0;
}

.section-badge {
  display: inline-block;
  background: rgba(156, 39, 176, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-10px);
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: white;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  /* Updated to pink-to-purple gradient background */
  background: var(--gradient-features);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--light);
}

.pricing-offer {
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  margin: 2rem auto;
  max-width: 400px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-featured {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.05);
}

.pricing-featured .pricing-name,
.pricing-featured .pricing-price,
.pricing-featured .pricing-features {
  color: white;
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
}

.price-period {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.section-badge-light {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit-item {
  font-size: 1rem;
  font-weight: 600;
}

/* Added contact form styles */
.contact-form {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-input {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  color: var(--dark);
}

.form-input::placeholder {
  color: var(--gray);
}

.form-input:focus {
  outline: 2px solid var(--primary);
}

.form-textarea {
  width: 100%;
  resize: vertical;
  margin-bottom: 1rem;
}

select.form-input {
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 3rem 0;
}

/* Updated footer styles for 3-column layout */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-domain {
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-left p {
  color: var(--gray);
  margin-top: 0.5rem;
}

.footer-center h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.whatsapp-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.whatsapp-link {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-link:hover {
  color: #25d366;
}

.whatsapp-icon {
  font-size: 1.25rem;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  color: var(--gray);
  margin-top: 0.5rem;
}

.heart {
  color: var(--primary);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
  .nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .stats {
    justify-content: center;
  }

  .gallery-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-form {
    flex-direction: column;
  }

  /* Updated responsive footer styles */
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-center,
  .footer-right {
    text-align: center;
  }

  .whatsapp-contacts {
    align-items: center;
  }
}

/* --- Custom Video Controls --- */
.hero-video { position: relative; }
.video-ui {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.video-play {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 9999px;
  background: rgba(0,0,0,.7);
  color: #fff;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(2px);
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.video-play .icon { width: 20px; height: 20px; fill: currentColor; }
.video-play:hover { transform: scale(1.03); }

.video-mute {
  pointer-events: auto;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: none;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.video-mute:hover { transform: scale(1.05); background: #fff; }
.video-mute .icon { width: 22px; height: 22px; fill: #111; }
.video-mute[aria-pressed="false"] .mute-x { display: none; }
.video-hidden { opacity: 0; visibility: hidden; }

@media (max-width: 968px) {
  .video-mute { width: 48px; height: 48px; }
  .video-play { font-size: .95rem; }
}
/* --- Video downscale for sharper look (intrinsic ~480x872) --- */
.hero-right { display: flex; justify-content: center; }
.hero-video { display: inline-block; }
.hero-video video {
  /* Mantenerlo por debajo del tamaño nativo para evitar blur */
  width: min(36vw, 360px);
  max-width: 360px;
  height: auto;
  aspect-ratio: 480 / 872;
  border-radius: var(--radius-xl, 16px);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 968px) {
  .hero-video video { width: min(85vw, 340px); max-width: 340px; }
}
