/* Fuente principal estilo taller */
body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #0d0d0d;
  color: #e6e6e6;
  margin: 0;
  padding: 0;
}

/* Header estilo metálico */
header {
  background: linear-gradient(180deg, #1c1c1c, #0d0d0d);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ff6600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

header h1 {
  color: #ff6600;
  margin: 0;
  font-size: 1.5rem;
}

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

nav a {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #ff6600;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: url("https://www.transparenttextures.com/patterns/brushed-alum.png") repeat;
  background-color: #121212;
  border-bottom: 2px solid #333;
}

.hero h2 {
  color: #ff6600;
  font-size: 2rem;
}

/* Secciones */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #ff6600;
  margin-bottom: 20px;
}

/* Cards */
.card-section .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 250px;
  border: 1px solid #333;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card i {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 10px;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #ff6600;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.card a:hover {
  background: #e65c00;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

/* Formulario */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea, button {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

input, textarea {
  background: #222;
  color: #fff;
}

button {
  background: #ff6600;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: #e65c00;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #0d0d0d;
  border-top: 2px solid #ff6600;
  margin-top: 40px;
}
