/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  color: #111;
  background: #fff;
} */
 html {
  scroll-behavior: smooth;
}
body {
  background-color: #f5f2eb;
}
section {
  transition: all 0.4s ease;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #0a0a0a;
  padding: 20px 0;
}

header h1 {
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.services {
  padding: 80px 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 10px;
  background: white;
  transition: all 0.1s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #0073ff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
}

.cta {
  background: #0073ff;
  color: white;
  padding: 80px 0;
  text-align: center;
}

footer {
  background: #0a0a0a;
  color: white;
  text-align: center;
  padding: 20px;
}
a:hover {
  opacity: 0.7;
}
.fade-up {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#fullscreenMenu li {
  transform: translateY(20px);
  opacity: 0;
}

#fullscreenMenu.opacity-100 li {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.6s ease;
}
/*Contact*/
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #d1d5db;
  outline: none;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background-color: #fefefe;
  transition: all 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: #1f6f3d;
  box-shadow: 0 0 0 3px rgba(31, 111, 61, 0.2);
}

.wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

/* Botón enviar */
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background-color: #1f6f3d;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.wpcf7 input[type="submit"]:hover {
  transform: scale(1.05);
  background-color: #145428;
}

/* Espaciado entre campos */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1rem;
}

.wpcf7 p {
  margin-bottom: 1rem;
}

/* Iconos redes sociales (Font Awesome) */
.fab {
  font-size: 1rem;
}

.hero-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.hero-front .parallax-bg {
  transform: translateY(0px);
  transition: transform 0.1s linear;
  will-change: transform;
}
/* Hero single service */
.hero-service .parallax-bg {
    transform: translateY(0px);
    transition: transform 0.1s linear;
    will-change: transform;
}

.hero-service h1, 
.hero-service p, 
.hero-service i {
    transition: transform 0.4s ease, opacity 0.4s ease;
}