/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e0e;
    color: #f0f0f0;
    line-height: 1.6;
  }
  
  /* Hero */
  .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
  }
  
  
  .hero .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 10px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    color: #fff;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #ccc;
  }
  
  .btn {
    display: inline-block;
    background: #017FD6;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #C93ED2;
  }
  
  /* Secciones generales */
  section {
    padding: 4rem 2rem;
    max-width: 960px;
    margin: auto;
  }
  
  h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #017FD6;
  }
  
  /* Lista de servicios */
  .servicios-lista {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    padding: 0;
  }
  
  .servicios-lista li {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .servicios-lista li:hover {
    transform: scale(1.05);
  }
  
  /* Galería */
  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }
  
  .galeria-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .galeria-grid img:hover {
    transform: scale(1.03);
  }
  
  /* Testimonios */
  blockquote {
    background: #1e1e1e;
    padding: 1rem 1.5rem;
    border-left: 5px solid #07BAEB;
    margin: 1rem 0;
    border-radius: 6px;
    color: #ddd;
  }
  
  /* Contacto */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  input, textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: #2b2b2b;
    color: #fff;
  }
  
  input::placeholder, textarea::placeholder {
    color: #aaa;
  }
  
  button[type="submit"] {
    background: #017FD6;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background: #C93ED2;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    background: #111;
    color: #999;
  }
  
  .redes {
    margin-top: 1rem;
  }
  
  .redes a {
    margin: 0 0.5rem;
    color: #C93ED2;
    text-decoration: none;
    font-weight: bold;
  }
  
  .redes a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  }

  /* Animaciones al hacer scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/*Estatus Formulario*/
#form-status {
  display: none;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  max-width: 600px;
  margin: 1rem auto 0 auto;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

#form-status.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#form-status.success {
  background-color: #9ef3b2;
  color: #fff;
}

#form-status.error {
  background-color: #ff7d8a;
  color: #fff;
}

#form-status::before {
  content: '';
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.3rem;
}

#form-status.success::before {
  content: '✔️';
}

#form-status.error::before {
  content: '❌';
}

