.fullscreen-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.contact-section {
  padding: 40px 20px; /* antes 80px */
  text-align: center;
  background-color: #BD0016;
}


.contact-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* FORMULARIO */
.contact-form-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Segoe UI', sans-serif;
}

.contact-form-container button {
  background-color: #BD0016;
  color: white;
  font-weight: bold;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.contact-form-container button:hover {
  background-color: #9c0012;
}

/* LOGO DESPUÉS DEL FORMULARIO */
.contact-logo-wrapper {
  text-align: center;
  background: white;
  padding: 80px 0 60px; /* antes 40px 0 20px */
}


.contact-logo {
  width: 180px;
}

/* FOOTER */
.kinomi-footer {
  background-color: #fff;
  color: #BD0016;
  padding: 20px 20px 10px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  border-top: 3px solid #BD0016;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
}

.footer-section {
  max-width: 300px;
}

.footer-section h4 {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-section p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom {
  font-size: 13px;
  color: #BD0016;
}
