/* ====== ESTILOS GENERALES ====== */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #222;
}
header {
  background-color: #000;
  color: #d4af37; /* dorado */
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  color: #d4af37;
}

/* ====== SECCIÓN HERO ====== */
.hero {
  background: url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80") 
    no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h2 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.btn:hover {
  background-color: #fff;
  color: #000;
}

/* ====== SECCIONES ====== */
section {
  padding: 60px 50px;
  max-width: 1100px;
  margin: auto;
}
h2.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #000;
}

/* ====== SERVICIOS ====== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.service {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.service:hover {
  transform: translateY(-5px);
}
.service h3 {
  color: #d4af37;
}

/* ====== SOBRE NOSOTROS ====== */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about img {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
}
.about-text {
  flex: 1;
  min-width: 300px;
}

/* ====== CONTACTO ====== */
.contact-form {
  max-width: 600px;
  margin: auto;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.contact-form button {
  background-color: #d4af37;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
.contact-form button:hover {
  background-color: #000;
  color: #fff;
}

/* ====== FOOTER ====== */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}
