*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f4f7fb;
  color:#222;
}

/* HEADER */
.header{
  background:#0f172a;
  padding:15px 30px;
  position:sticky;
  top:0;
  z-index:100;
}

.container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo{height:45px}

.nombre{
  color:#fff;
  font-weight:700;
  font-size:32px;
  letter-spacing:2px;
}

/* MENÚ */
.menu{
  display:flex;
  gap:30px;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:.3s;
  padding:8px 0;
  border-bottom:2px solid transparent;
}

.menu a:hover{
  color:#f97316;
  border-bottom:2px solid #f97316;
}

/* BOTONES */
.btn{
  padding:10px 18px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.call{background:#f97316;color:#fff;}
.call:hover{background:#ea580c;}

.whatsapp{background:#22c55e;color:#fff;}
.whatsapp:hover{background:#16a34a;}

/* HERO */
.hero{
  height:85vh;
  background:url('img/hero.webp') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.overlay{
  background:rgba(15,23,42,0.85);
  padding:60px;
  border-radius:20px;
  text-align:center;
  color:#fff;
  max-width:650px;
  backdrop-filter:blur(10px);
}

.overlay h1{
  font-size:2.2rem;
  margin-bottom:15px;
}

.overlay p{
  opacity:.9;
  margin-bottom:25px;
}

.overlay .btn{
  background:#f97316;
}

/* CONFIANZA */
.confianza{
  display:flex;
  justify-content:center;
  gap:40px;
  padding:30px;
  background:#fff;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  font-weight:600;
}

/* SERVICIOS */
.servicios{
  padding:60px 30px;
  text-align:center;
}

.servicios h2{
  margin-bottom:30px;
  font-size:2rem;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:40px;
}

.card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  display:block;
  text-decoration:none;
  color:inherit;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.card h3{
  margin-bottom:10px;
}

/* REVIEWS */
.reviews{
  padding:60px 30px;
  background:#0f172a;
  color:#fff;
  text-align:center;
}

.reviews h2{margin-bottom:30px}

.reviews .card{
  background:#1e293b;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height:150px;
}

/* MAPA */
.map iframe{
  width:100%;
  height:300px;
  border:none;
}

/* CONTACTO */
.contacto{
  padding:60px 30px;
  text-align:center;
}

form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
}

input,textarea{
  margin:10px 0;
  padding:12px;
  border-radius:10px;
  border:1px solid #ccc;
}

button{
  background:#0f172a;
  color:#fff;
  padding:12px;
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

button:hover{
  background:#020617;
}

/* BOTONES FIJOS */
.boton-fijo{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#22c55e;
  color:#fff;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
  transition:.3s;
  z-index:999;
}

.boton-fijo:hover{
  background:#16a34a;
  transform:scale(1.1);
}

.boton-fijo-llamar{
  position:fixed;
  bottom:80px;
  right:20px;
  background:#f97316;
  color:#fff;
  padding:15px 20px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
  transition:.3s;
  z-index:999;
}

.boton-fijo-llamar:hover{
  background:#ea580c;
  transform:scale(1.1);
}

/* SERVICIOS PAGE */
.servicios-page{
  padding:60px 30px;
  text-align:center;
  max-width:1000px;
  margin:0 auto;
}

.servicios-page h1{
  font-size:2.5rem;
  margin-bottom:50px;
  color:#0f172a;
}

.servicios-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  margin-top:100px;
}

.servicio-item{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  text-align:left;
}

.servicio-item h2{
  color:#0f172a;
  font-size:1.8rem;
  margin-bottom:10px;
}

.servicio-item p{
  color:#666;
  font-size:1.1rem;
  margin-bottom:20px;
}

.servicio-item h3{
  color:#0f172a;
  font-size:1.2rem;
  margin-top:20px;
  margin-bottom:15px;
}

.servicio-item ul{
  list-style:none;
  padding:0;
}

.servicio-item li{
  color:#555;
  padding:8px 0;
  padding-left:20px;
  position:relative;
}

.servicio-item li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:#f97316;
  font-weight:bold;
}

.servicio-img{
  width:100%;
  height:auto;
  max-height:250px;
  object-fit:contain;
  border-radius:10px;
  margin-top:20px;
}

/* UBICACION */
.ubicacion-info{
  padding:60px 30px;
  text-align:center;
  max-width:1000px;
  margin:0 auto;
}

.ubicacion-info h1{
  font-size:2.5rem;
  margin-bottom:50px;
  color:#0f172a;
}

.info-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  margin-bottom:50px;
}

.direccion-box, .horario-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.direccion-box h2, .horario-box h2{
  color:#0f172a;
  font-size:1.5rem;
  margin-bottom:20px;
}

.direccion-box p, .horario-box p{
  color:#555;
  font-size:1rem;
  line-height:1.8;
}

/* SERVICIO DETAIL */
.servicio-detail{
  padding:60px 30px;
  max-width:800px;
  margin:0 auto;
}

.servicio-detail h1{
  font-size:2.5rem;
  color:#0f172a;
  margin-bottom:30px;
}

.servicio-hero-img{
  width:100%;
  height:auto;
  max-height:400px;
  object-fit:contain;
  border-radius:15px;
  margin-bottom:25px;
}

.detail-content{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.detail-content p{
  color:#555;
  font-size:1.1rem;
  line-height:1.8;
  margin-bottom:20px;
}

.detail-content h2{
  color:#0f172a;
  font-size:1.5rem;
  margin-top:30px;
  margin-bottom:15px;
}

.benefits{
  list-style:none;
  padding:0;
}

.benefits li{
  color:#555;
  padding:12px 0;
  padding-left:25px;
  position:relative;
  font-size:1rem;
}

.benefits li:before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
}

.contact-buttons{
  margin-top:30px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media(max-width:768px){
  /* HEADER */
  .container{
    flex-direction:column;
    gap:20px;
  }

  .logo-area{
    width:100%;
    justify-content:center;
  }

  .nombre{
    font-size:24px;
  }

  .menu{
    flex-direction:column;
    gap:15px;
    width:100%;
    text-align:center;
  }

  .menu a{
    font-size:14px;
    display:block;
  }

  /* HERO */
  .hero{
    height:60vh;
  }

  .overlay{
    padding:30px 20px;
    max-width:90%;
    border-radius:15px;
  }

  .overlay h1{
    font-size:1.5rem;
    margin-bottom:12px;
  }

  .overlay p{
    font-size:0.95rem;
  }

  /* CONFIANZA */
  .confianza{
    flex-direction:column;
    gap:15px;
    padding:20px;
  }

  .confianza > div{
    font-size:0.9rem;
  }

  /* SERVICIOS */
  .servicios{
    padding:40px 20px;
  }

  .servicios h2{
    font-size:1.5rem;
    margin-bottom:20px;
  }

  .grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .card{
    padding:20px;
  }

  /* REVIEWS */
  .reviews{
    padding:40px 20px;
  }

  .reviews h2{
    font-size:1.5rem;
  }

  /* CONTACTO */
  .contacto{
    padding:40px 20px;
  }

  form{
    max-width:100%;
  }

  input, textarea{
    padding:10px;
    font-size:16px;
  }

  /* BOTONES FIJOS */
  .boton-fijo{
    bottom:15px;
    right:15px;
    padding:12px 15px;
    font-size:14px;
  }

  .boton-fijo-llamar{
    bottom:75px;
    right:15px;
    padding:12px 15px;
    font-size:14px;
  }

  /* SERVICIOS PAGE */
  .servicios-page{
    padding:40px 20px;
  }

  .servicios-page h1{
    font-size:1.8rem;
    margin-bottom:30px;
  }

  .servicios-container{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:50px;
  }

  .servicio-item{
    padding:25px;
  }

  .servicio-item h2{
    font-size:1.4rem;
  }

  .servicio-item p{
    font-size:0.95rem;
  }

  /* UBICACION */
  .ubicacion-info{
    padding:40px 20px;
  }

  .ubicacion-info h1{
    font-size:1.8rem;
    margin-bottom:30px;
  }

  .info-container{
    grid-template-columns:1fr;
    gap:20px;
    margin-bottom:30px;
  }

  .direccion-box h2, .horario-box h2{
    font-size:1.2rem;
  }

  /* SERVICIO DETAIL */
  .servicio-detail{
    padding:40px 20px;
  }

  .servicio-detail h1{
    font-size:1.8rem;
  }

  .detail-content{
    padding:25px;
  }

  .contact-buttons{
    flex-direction:column;
  }

  .contact-buttons .btn{
    width:100%;
    text-align:center;
  }
}

/* EXTRA PEQUEÑO - MÓVILES MUY PEQUEÑOS */
@media(max-width:480px){
  .header{
    padding:10px 15px;
  }

  .logo{
    height:35px;
  }

  .nombre{
    font-size:18px;
    letter-spacing:0;
  }

  .menu{
    gap:10px;
  }

  .menu a{
    font-size:12px;
  }

  .overlay h1{
    font-size:1.2rem;
    margin-bottom:10px;
  }

  .overlay p{
    font-size:0.85rem;
    margin-bottom:15px;
  }

  .overlay .btn{
    padding:8px 15px;
    font-size:13px;
  }

  .servicios h2, .servicios-page h1, .ubicacion-info h1{
    font-size:1.3rem;
  }

  .servicio-item h2, .servicio-detail h1{
    font-size:1.2rem;
  }

  .confianza{
    flex-direction:column;
    gap:10px;
    padding:15px;
  }

  .boton-fijo{
    bottom:10px;
    right:10px;
    padding:10px 12px;
    font-size:12px;
  }

  .boton-fijo-llamar{
    bottom:70px;
    right:10px;
    padding:10px 12px;
    font-size:12px;
  }

  .detail-content{
    padding:15px;
  }

  .servicio-item{
    padding:15px;
  }

  form input, form textarea{
    padding:8px;
    font-size:14px;
  }

  button{
    padding:10px;
    font-size:14px;
  }
}