@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* === Global === */

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
  margin: 0;
}

/* === Section spacing === */

.section-spacing {
  padding: 9rem 0;
}


/* === Navbar === */
.navbar {
  background-color: #1a1a1a !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: #e63946 !important;
  letter-spacing: 2px;
}

/* === Hero === */
header h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #e63946;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* === Botones === */
.btn-danger {
  background-color: #e63946;
  border: none;
  font-weight: 600;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.btn-danger:hover {
  background-color: #a0262b;
}

/* === Servicios === */
#services .col-md-4 {
  background: #2a2a2a;
  margin: 1rem 0;
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .col-md-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.6);
}

/* === Contact Form === */
#contact form {
  max-width: 700px;
  margin: 0 auto;
  background: #222222;
  padding: 2rem;
  border-radius: 12px;
}

#contact input,
#contact textarea {
  background: #1a1a1a;
  border: none;
  color: #f1faee;
  padding: 0.8rem;
  margin-bottom: 1rem;
}

/* === Fade-in animation === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
