.elementor-199 .elementor-element.elementor-element-18de162{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-199 .elementor-element.elementor-element-c5dbb93{--display:flex;}@media(min-width:768px){.elementor-199 .elementor-element.elementor-element-18de162{--content-width:1400px;}.elementor-199 .elementor-element.elementor-element-c5dbb93{--content-width:1400px;}}/* Start custom CSS for shortcode, class: .elementor-element-a765ed6 */@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");


:root {
  --primary: #f1c232;
  --primary-dark: #e3b64b;
  --bg: #ffffff;
  --text: #222;
  --muted: #666;
  --border: #e4e4e4;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

/* === SECCIÓN PRINCIPAL === */
.form-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

/* === CONTENEDOR === */
.form-container {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeIn 1s ease forwards;
}

/* === ENCABEZADO CON EFECTO === */
.form-header {
  background: linear-gradient(135deg, #f1c232, #e3b64b, #f1c232);
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
  text-align: center;
  padding: 40px 20px;
  color: #222;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-header p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* === FORMULARIO === */
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  padding: 50px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
}

.form-group:hover {
  transform: translateY(-2px);
}

.full-width {
  grid-column: 1 / -1;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(241, 194, 50, 0.2);
  outline: none;
}

/* === BOTÓN === */
.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 10px;
}

.btn-submit {
  background: var(--primary);
  color: #222;
  font-weight: 700;
  border: none;
  padding: 14px 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* === ANIMACIONES === */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .form-header h2 {
    font-size: 1.6rem;
  }
}/* End custom CSS */