/* FUENTES Y COLORES */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif; /* cuerpo de texto elegante */
  background-color: #0a1d2f; /* azul noche */
  color: #f4f4f9; /* letras claras */
  line-height: 1.8;
}

/* ENCABEZADO */
.header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to right, #001f3f, #0a1d2f);
  color: #ffd700; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  font-family: 'Montserrat', sans-serif; /* títulos grandes */
}
.header h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.header p { font-size: 1.5rem; font-weight: 600; color: #ffe066; }

.banner .logo {
  width: 250px;      /* ancho del logo */
  max-width: 80%;    /* adaptable en pantallas pequeñas */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  display: block;
  margin: 0 auto;    /* centra la imagen */

}
/* SECCIONES */
section {
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* TÍTULOS DE SECCIÓN */
section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 10px;
}

/* TEXTO CUERPO */
section p, .services li, .faq-answer {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: #e0e0e0;
}

/* LISTAS DE SERVICIOS */
.services ul { list-style: none; padding: 0; }
.services li { margin: 12px 0; padding-left: 30px; position: relative; font-weight: 500; }
.services li::before { content:"✔"; position: absolute; left: 0; color: #00b4d8; font-weight: bold; }

/* FAQ ACORDEÓN */
.faq-item { margin-bottom: 15px; border-bottom: 1px solid #444; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ffd166;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 15px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.3s;
}
.faq-question:hover { color: #00b4d8; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #e0e0e0; padding-left: 15px; font-style: normal; }

/* FOOTER */
footer.contact {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #0d2547;
  color: #f4f4f9;
  margin-top: 3rem;
  border-top: 3px solid #00b4d8;
  font-family: 'Roboto', sans-serif;
}
footer.contact p { margin: 0.5rem 0; }
footer.contact a { color: #ffd166; text-decoration: none; font-weight: bold; }
footer.contact a:hover { color: #ffffff; }
