html, body {
    overflow-x: hidden;
}


/* ===============================
   BANNER
================================= */
.c-banner {
  width: 100%;
  height: 420px;
  background: linear-gradient(to right,#00000090,#00000070),
              url('img/Contacto.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.c-banner-content {
  max-width: 900px;
}

/* ===============================
   GENERAL SECTION
================================= */
.c-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
}

.c-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===============================
   LEFT INFO BLOCKS
================================= */
.c-info {
  flex: 1 1 380px;
}

.c-info h2 {
  margin-bottom: 12px;
}

.c-subtext {
  margin-bottom: 20px;
  max-width: 500px;
  color: #444;
}

.c-info-block {
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #C6C7C4;
}

.c-info-block h3 {
  margin-bottom: 6px;
  color: #004d8b;
  font-weight: 600;
}

/* ===============================
   FORM CARD
================================= */
.c-form-card {
  flex: 1 1 420px;
  background: #002e52;
  color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.c-form-card h2 {
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
  font-size: 1.1rem;
}

form input,
form textarea {
  width: 95%;
  margin-top: 5px;
  padding: 10px;
  border-radius: 6px;
  border: 2px solid #FF6B1A;
  background: #EAEFF2;
  color: #000;
}

form textarea {
  height: 120px;
  resize: none;
}

form button {
  margin-top: 20px;
  padding: 14px;
  background: #FF6B1A;
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  width: 200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

form button:hover {
  background: #ff7e3c;
}

/* ===============================
   STATUS
================================= */
.c-status {
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
}

.c-status.success {
  background: #d8ffe1;
  color: #004f1e;
}

.c-status.error {
  background: #ffd6d6;
  color: #7a0000;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .c-grid {
    flex-direction: column;
  }
}
