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

* {
  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: 180px auto 0px auto; */
  /* padding: 40px 20px; */
}
.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: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.subtitle {
  font-size: 1.6rem;
  color: #1a1a1a;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.intro {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.intro p {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #34495e;
  text-align: justify;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.service-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f0f0f, #000000, #000000);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.service-card h3 {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 15px;
}
.service-card p {
  color: #5d6d7e;
  line-height: 1.7;
  font-size: 1rem;
}
.cta-section {
  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, #111316 0%, #000000 100%);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  animation: float 20s ease-in-out infinite;
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.cta-section p {
  font-size: 1.3rem;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.decorative-element {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    45deg,
    rgba(52, 152, 219, 0.1),
    rgba(142, 68, 173, 0.1)
  );
  border-radius: 50%;
  filter: blur(2px);
}
#iggvc2 {
  color: white;
}
#izqakd {
  color: white;
}
#i39ii {
  text-align: left;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  .subtitle {
    font-size: 1.1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .intro {
    padding: 25px;
  }
  .service-card {
    padding: 25px;
  }
  .cta-section {
    padding: 25px;
  }
  .decorative-element {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 130px;
  }
  h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: black;
  }
  p {
    padding: 0.5rem;
  }
  .subtitle {
    font-size: 1.3rem;
  }

  .service-card h3 {
    text-align: center;
  }

  .service-card p {
    text-align: left;
  }
}
