.left-align-buttons .button-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: left !important;
}

.left-align-buttons .button-container * {
  text-align: left !important;
}

/* DESKTOP (1025px en adelante) */
@media screen and (min-width: 1025px) {
  h2 {
    font-size: 40px !important;
    line-height: 50px !important;
  }

  p {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

/* TABLET (768px a 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  h2 {
    font-size: 35px !important;
    line-height: 45px !important;
  }

  p {
    font-size: 20px !important;
    line-height: 30px !important;
  }
}

/* MÓVIL (hasta 767px) */
@media screen and (max-width: 767px) {
  h2 {
    font-size: 30px !important;
    line-height: 35px !important;
  }

  p {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.col-6 {
  width: 48%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 767px) {
  .col-6 {
    width: 100%;
  }
}

/* Mejora visual de inputs */
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.btn-orange-rounded {
   display: inline-flex;
  align-items: left;
  gap: 10px;
  background-color: #FF7C03;
  color: #fff !important;
  font-weight: 400;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.btn-orange-rounded:hover {
  background-color: #000;
  color: #fff;
}
html {
  scroll-behavior: smooth;
}