/* ===============================
   ESTILOS GENERALES MAUCO PRO
   =============================== */

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background-color: #fff;
  color: #222;
}

/* ======= HEADER ======= */
header {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}
header img {
  height: 65px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #ff7a00;
}

/* ======= HERO ======= */
.hero {
  position: relative;
  height: 88vh;
  background: url('../img/roller2.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.hero h1 {
  font-size: 2.4em;
  margin-bottom: 10px;
  color: #fff;
}
.hero p {
  font-size: 1.1em;
  color: #f2f2f2;
  margin-bottom: 25px;
}
.hero button {
  background: #ff7a00;
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.hero button:hover {
  background: #e66d00;
}

/* ======= SECCIONES ======= */
.section {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}
.section h2 {
  color: #ff7a00;
  margin-bottom: 10px;
}
.section p {
  color: #555;
  line-height: 1.6;
  font-size: 1em;
}

/* ======= GALERÍA ======= */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card h3 {
  color: #333;
  margin: 10px;
}
.card p {
  color: #666;
  font-size: 0.95em;
  margin: 0 10px 15px;
}
.btn-wa {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px;
}
.btn-wa:hover {
  background: #1ebe5b;
}

/* ======= COTIZADOR ======= */
main {
  max-width: 1100px;
  margin: 30px auto;
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
h1 {
  color: #ff7a00;
  text-align: center;
}
.info {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95em;
}
button {
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
button:hover {
  background: #e66d00;
}
.btn-sec {
  background: #ccc;
  color: #222;
}
.btn-sec:hover {
  background: #bbb;
}
.card form {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

/* ======= CONTACTO ======= */
.overlay {
  background: rgba(0,0,0,0.7);
  min-height: 100vh;
  padding: 40px 20px;
}
form {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  max-width: 600px;
  margin: auto;
}
label {
  display: block;
  margin-top: 15px;
  color: #ffae42;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  margin-top: 5px;
  font-size: 1em;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-info {
  max-width: 700px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}
.contact-info h2 {
  color: #ff7a00;
  margin-bottom: 15px;
}
.contact-info a {
  color: #ffae42;
  text-decoration: none;
  font-weight: 600;
}
.contact-info a:hover {
  color: #fff;
}

/* ======= GAVIOTA ======= */
.content {
  max-width: 900px;
  margin: 40px auto;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.content p {
  color: #f1f1f1;
  line-height: 1.6;
  font-size: 1.05em;
}
.content button {
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.content button:hover {
  background: #e66d00;
}

/* ======= FOOTER ======= */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 60px;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .hero h1 {
    font-size: 1.8em;
  }
}



