/* NUEVO CSS 'SERVICIOS AL INQUILINO'
-----------------------------------------*/

* {
  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 */
}
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 80 80"><defs><pattern id="dots" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.2" fill="%23000000" opacity="0.03"/><circle cx="60" cy="60" r="0.8" fill="%23000000" opacity="0.02"/><circle cx="40" cy="5" r="1" fill="%23000000" opacity="0.025"/><circle cx="10" cy="50" r="0.6" fill="%23000000" opacity="0.03"/></pattern></defs><rect width="80" height="80" fill="url(%23dots)"/></svg>')
    repeat;
  pointer-events: none;
  z-index: 1;
}
.container {
  max-width: 1200px;
  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 {
  text-transform: uppercase;
  font-size: 4rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px 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;
}
.intro-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 45px;
  border-radius: 18px;
  margin-bottom: 50px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 60%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.intro-content {
  position: relative;
  z-index: 2;
}
.intro-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
}
.service-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  transition: left 0.5s ease;
}
.service-item:hover::before {
  left: 100%;
}
.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.service-item h3 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
}
.service-item p {
  color: #333333;
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
}
.benefits-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}
.benefits-title {
  font-size: 2.2rem;
  color: #000000;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.benefits-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #000000;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.benefit-point {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.benefit-point:hover {
  background: rgba(240, 242, 245, 0.9);
  transform: translateX(5px);
}
.benefit-point::before {
  content: "▶";
  color: #000000;
  font-size: 0.8rem;
  margin-right: 15px;
  margin-top: 3px;
  transition: transform 0.3s ease;
}
.benefit-point:hover::before {
  transform: translateX(3px);
}
.benefit-point span {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
.final-cta {
  color: black;
  padding: 50px;
  border-radius: 0px 0 0px 0px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right, #020202 0%, #000000 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.final-cta p {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}
#ihyxa {
  color: white;
}
#idlqx {
  color: white;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-15px) scale(1.05);
    opacity: 0.2;
  }
}
@keyframes sparkle {
  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: 25px 15px;
  }
  h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    font-weight: 600;
  }
  .subtitle {
    font-size: 1.1rem;
  }
  .services-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .intro-section {
    padding: 30px;
  }
  .service-item {
    padding: 30px;
  }
  .benefits-section {
    padding: 30px;
  }
  .final-cta {
    padding: 30px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

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