

/* NUEVO CSS 'RENTA SEGURA'
----------------------------------*/

* {
  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 */
}

.container {
  max-width: 1200px;
  /* margin: 150px auto 0px auto; */
  /* padding: 50px 20px; */
  position: relative;
  z-index: 2;
}
.header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
.header::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #000000, #333333, #666666);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
h1 {
  text-transform: uppercase;
  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.5rem;
  color: #333333;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
line-height:1.8;
}
.hero-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000000;
  text-align: justify;
  margin-bottom: 25px;
}
.features-section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: stretch;
}
.features-left {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.features-left h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 25px;
  font-weight: 500;
  border-left: 5px solid #000000;
  padding-left: 20px;
}
.features-left p {
  color: #333333;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.advantages-section {
  flex: 1;
}
.advantages-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}
.advantage-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 15px;
  border-left: 6px solid #000000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.advantage-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-left-color: #333333;
}
.advantage-item::before {
  content: "✓";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 12px;
}
.advantage-item span {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.closing-section {
  background: linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
  color: #d32727;
  padding: 60px;
  border-radius: 0px 0px 0px 0;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.closing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
}
.closing-content {
  position: relative;
  z-index: 2;
}
.closing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.closing-section p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
}
#ijp5p {
  color: white;
}
#iwf5w {
  color: white;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.1;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .container {
    /* padding: 30px 15px; */
  }
  h1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .features-section {
    flex-direction: column;
    gap: 30px;
  }
  .hero-section {
    padding: 30px;
  }
  .features-left {
    padding: 30px;
  }
  .closing-section {
    padding: 30px;
  }
  .advantage-item {
    padding: 20px;
  }
}

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