

/* NUEVO CSS 'HERENCIAS'
----------------------------------*/

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

body {
  margin: 0;
  line-height: 1.6;
  color: #000000;
  min-height: 100vh;
  position: relative;
  padding-top: 19vh; /* 10% de la altura de la pantalla */
}

#i0af {
  border: 0 none black;
  opacity: 1;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="mesh" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M0 30h60M30 0v60" stroke="%23000000" stroke-width="0.5" opacity="0.02"/></pattern></defs><rect width="60" height="60" fill="url(%23mesh)"/></svg>')
    repeat;
  pointer-events: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 45px 20px; */
  position: relative;
  z-index: 2;
}
.header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.header::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, #2c2c2c, #000000, #2c2c2c);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
h1 {
  font-size: 4rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.subtitle {
  font-size: 1.6rem;
  color: #1a1a1a;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 50px auto;
  padding-bottom: 45%;
  height: 0;
  border-radius: 50px 50px 50px 50px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.plan-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 55px;
  border-radius: 22px;
  margin-bottom: 50px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.plan-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}
.plan-content {
  position: relative;
  z-index: 2;
}
.plan-title {
  font-size: 2.5rem;
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}
.plan-subtitle {
  font-size: 1.8rem;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
  font-style: italic;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.step-item {
  background: rgba(248, 249, 250, 0.8);
  padding: 35px;
  border-radius: 16px;
  border-left: 5px solid #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-left-color: #333333;
}
.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #000000;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}
.step-item h4 {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 12px;
  margin-top: 10px;
  font-weight: 600;
}
.step-item p {
  color: #333333;
  line-height: 1.6;
  font-size: 0.95rem;
}
.benefits-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}
.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  position: relative;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  stroke: #000000;
  fill: none;
  stroke-width: 1.5;
}
.benefit-card h3 {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 500;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  color: #333333;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}
.benefit-list li::before {
  content: "•";
  color: #000000;
  font-weight: bold;
  position: absolute;
  left: 8px;
  font-size: 1.2rem;
}
.final-section {
  background: linear-gradient(
    135deg,
    #0b0b0b 0%,
    #000000 25%,
    #000000 60%,
    #0a0000 100%
  );
  color: white;
  padding: 60px;
  border-radius: 0px 0px 0 0px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.final-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 35%,
      rgba(255, 255, 255, 0.04) 50%,
      transparent 65%
    ),
    radial-gradient(
      circle at 25% 75%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 50%
    );
  animation: shimmer 6s ease-in-out infinite;
}
.final-content {
  position: relative;
  z-index: 2;
}
.final-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.final-section p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
}
.decorative-diamond {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
  animation: spin 30s linear infinite;
}
.decorative-diamond::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transform: rotate(45deg);
}
#iptxnk {
  color: white;
}
#idt2kw {
  color: white;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-25px) scale(1.1);
    opacity: 0.2;
  }
}
@keyframes shimmer {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes spin {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}
@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }
  h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
  .subtitle {
    font-size: 1.3rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .benefits-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .plan-section {
    padding: 35px;
  }
  .benefit-card {
    padding: 35px;
  }
  .final-section {
    padding: 35px;
  }
  .decorative-diamond {
    display: none;
  }
  .video-container {
    padding-bottom: 56.25%;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }
}
