/* NUEVO CSS 'CAMBIAR DE CASA'
------------------------------*/

* {
  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 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;
  position: relative;
  z-index: 2;
}
.header {
  text-align: center;
  margin-bottom: 65px;
  position: relative;
}
.header::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, #404040, #000000, #404040);
  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.7rem;
  color: #2a2a2a;
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}
.hero-section {
  background: rgba(255, 255, 255, 0.93);
  padding: 60px;
  border-radius: 25px 25px 0px 0px;
  margin-bottom: 55px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid black;
  position: relative;
  overflow: hidden;
  background-color: black;
}
.hero-section::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -25%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 65%);
  border-radius: 50%;
  animation: breathe 12s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-title span {
  font-weight: 700;
}
.hero-text {
  font-size: 1.3rem;
  color: white;
  line-height: 1.8;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
  border: 0px solid black;
}
.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-bottom: 55px;
}
.service-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  transition: left 0.6s ease;
}
.service-card:hover::before {
  left: 100%;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.service-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 25px;
  stroke: #000000;
  fill: none;
  stroke-width: 1.5;
  display: block;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}
.service-card h3 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.service-card p {
  color: #333333;
  line-height: 1.7;
  font-size: 1rem;
  text-align: center;
}
.process-section {
  background: rgba(248, 250, 252, 0.9);
  padding: 55px;
  border-radius: 0px 0 25px 25px;
  margin-bottom: 55px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  background-color: black;
}
.process-title {
  font-size: 2.4rem;
  color: white;
  text-align: center;
  margin-bottom: 45px;
  font-weight: 500;
  position: relative;
  background-color: black;
}
.process-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #000000;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.process-step {
  background: rgba(255, 255, 255, 0.8);
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  background-color: white;
}
.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.step-bullet {
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}
.step-bullet::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
.process-step h4 {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}
.process-step p {
  color: #333333;
  line-height: 1.6;
  font-size: 0.95rem;
}
.conclusion-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}
.conclusion-text {
  font-size: 1.3rem;
  color: #1a1a1a;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: 2.9rem;
  margin-bottom: 25px;
  font-weight: 400;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.final-cta p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
.decorative-triangles {
  position: absolute;
  top: 90px;
  left: 90px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: float-triangle 18s ease-in-out infinite;
}
.decorative-triangles::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
#iob0i {
  color: black;
  text-align: center;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15) rotate(180deg);
    opacity: 0.2;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes float-dots {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}
@keyframes float-triangle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  .subtitle {
    font-size: 1.3rem;
  }
  .services-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero-section {
    padding: 40px;
  }
  .service-card {
    padding: 40px;
  }
  .process-section {
    padding: 40px;
  }
  .conclusion-section {
    padding: 40px;
  }
  .decorative-triangles {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }
}
