/* ================================
   CUSTOM.CSS - CICOAHUILA
   ================================ */

/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
  color: #0f0; /* Verde corporativo */
  font-weight: bold;
}

/* Menú */
.navbar {
  background-color: #111 !important;
}
.navbar a {
  color: #0f0 !important;
}
.navbar a:hover {
  color: #fff !important;
}

/* Carrusel */
.carousel-caption h5 {
  font-size: 1.8rem;
  color: #0f0;
  text-shadow: 1px 1px 3px #000;
}

/* Tarjetas de Programas */
.card {
  border: 1px solid #0f0;
  background-color: #fff;
  color: #111;
  transition: transform 0.2s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}
.card-title {
  color: #0f0;
}

/* Footer */
footer {
  background-color: #111;
  color: #0f0;
  text-align: center;
  padding: 20px;
}
footer p {
  margin: 0;
}

/* Formulario de contacto */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
}
.wpcf7 input[type="submit"] {
  background-color: #0f0;
  border: none;
  color: #111;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}
.wpcf7 input[type="submit"]:hover {
  background-color: #111;
  color: #0f0;
}
