.contacto-block {
  background: #1A2B4A;
  padding: 96px 6%;
  font-family: 'Outfit', sans-serif;
}

.contacto-block .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacto-block .contact-left .eyebrow {
  color: rgba(255,255,255,0.4);
}

.contacto-block .contact-left .eyebrow::before {
  background: rgba(255,255,255,0.25);
}

.contacto-block .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contacto-block .contact-left h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.contacto-block .contact-left p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.78;
  font-size: 15px;
}

.contacto-block .contact-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.contacto-block .contact-ch {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
  text-decoration: none;
}

.contacto-block .contact-ch:hover {
  background: rgba(255,255,255,0.12);
}

.contacto-block .contact-ch-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 2px;
}

.contacto-block .contact-ch-val {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

/* FORMULARIO */
.contacto-block .contact-right {
  background: #FAFAF8;
  padding: 40px;
}

.contacto-block .form-title {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1A;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.contacto-block .form-sub {
  font-size: 13px;
  color: #6B6860;
  margin-bottom: 28px;
  font-weight: 300;
}

.contacto-block .form-group {
  margin-bottom: 16px;
}

.contacto-block .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.contacto-block .contact-right label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1C1C1A;
  display: block;
  margin-bottom: 6px;
}

.contacto-block .contact-right input,
.contacto-block .contact-right textarea,
.contacto-block .contact-right select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1C1C1A;
  background: #F4F2EF;
  border: 1.5px solid rgba(28,28,26,0.08);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contacto-block .contact-right input:focus,
.contacto-block .contact-right textarea:focus,
.contacto-block .contact-right select:focus {
  border-color: #1A2B4A;
}

.contacto-block .contact-right input::placeholder,
.contacto-block .contact-right textarea::placeholder {
  color: #9C9890;
}

.contacto-block .contact-right textarea {
  resize: vertical;
  min-height: 100px;
}

.contacto-block .contact-right select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C9890' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contacto-block .btn-submit {
  width: 100%;
  background: #1A2B4A;
  color: #fff;
  padding: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.contacto-block .btn-submit:hover {
  background: #243D6B;
}

.contacto-block .form-note {
  font-size: 11px;
  color: #9C9890;
  text-align: center;
  margin-top: 12px;
  font-weight: 300;
}

@media (max-width: 1100px) {
  .contacto-block .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .contacto-block { padding: 72px 5%; }
  .contacto-block .contact-right { padding: 28px 5%; }
  .contacto-block .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contacto-block .contact-left h2 { font-size: 24px; }
  .contacto-block .contact-item { gap: 12px; }
  .contacto-block .contact-icon { width: 44px; height: 44px; }
  .contacto-block .contact-right { padding: 24px 4%; }
}

/* CONTACT FORM 7 STYLES */
.contacto-block .cf7-form-wrap .wpcf7-form {
  margin: 0;
}

.contacto-block .cf7-form-wrap .wpcf7-form p {
  margin: 0 0 16px 0;
}

.contacto-block .cf7-form-wrap .wpcf7-form label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1C1C1A;
  display: block;
  margin-bottom: 6px;
}

.contacto-block .cf7-form-wrap .wpcf7-form input[type="text"],
.contacto-block .cf7-form-wrap .wpcf7-form input[type="email"],
.contacto-block .cf7-form-wrap .wpcf7-form input[type="tel"],
.contacto-block .cf7-form-wrap .wpcf7-form textarea,
.contacto-block .cf7-form-wrap .wpcf7-form select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1C1C1A;
  background: #F4F2EF;
  border: 1.5px solid rgba(28,28,26,0.08);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.contacto-block .cf7-form-wrap .wpcf7-form input:focus,
.contacto-block .cf7-form-wrap .wpcf7-form textarea:focus,
.contacto-block .cf7-form-wrap .wpcf7-form select:focus {
  border-color: #1A2B4A;
}

.contacto-block .cf7-form-wrap .wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contacto-block .cf7-form-wrap .wpcf7-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C9890' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contacto-block .cf7-form-wrap .wpcf7-submit {
  width: 100%;
  background: #1A2B4A;
  color: #fff;
  padding: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
  border-radius: 0;
}

.contacto-block .cf7-form-wrap .wpcf7-submit:hover {
  background: #243D6B;
}

.contacto-block .cf7-form-wrap .wpcf7-response-output {
  margin: 16px 0 0 0;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 0;
}

.contacto-block .cf7-form-wrap .wpcf7 .ajax-loader {
  display: none;
}

/* Contact Form 7 - Two column layout */
.contacto-block .cf7-form-wrap .form-row-cf7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.contacto-block .cf7-form-wrap .form-row-cf7 p {
  margin: 0;
}

.contacto-block .cf7-form-wrap .form-col {
  margin: 0;
}

.contacto-block .cf7-form-wrap .form-col label {
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .contacto-block .cf7-form-wrap .form-row-cf7 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* GDPR Consent Checkbox */
.contacto-block .gdpr-consent {
  margin: 20px 0;
  padding: 16px;
  background: rgba(107, 159, 191, 0.08);
  border-radius: 4px;
  border-left: 3px solid var(--blue);
}

.contacto-block .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: #1C1C1A;
}

.contacto-block .checkbox-label input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  margin: 2px 0 0 0 !important;
  cursor: pointer;
  accent-color: var(--blue);
}

.contacto-block .consent-text {
  flex: 1;
}

.contacto-block .consent-text a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 500;
}

.contacto-block .consent-text a:hover {
  color: var(--blue-mid);
}

.contacto-block .consent-text .required {
  color: #D85A30;
  margin-left: 2px;
}

/* CF7 GDPR Checkbox styling */
.contacto-block .cf7-form-wrap .wpcf7 .gdpr-checkbox .wpcf7-list-item {
  margin: 0;
}

.contacto-block .cf7-form-wrap .wpcf7 .gdpr-checkbox input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.contacto-block .cf7-form-wrap .wpcf7 .gdpr-checkbox .wpcf7-list-item-label {
  font-size: 13px;
  line-height: 1.5;
}

.contacto-block .cf7-form-wrap .wpcf7 .gdpr-checkbox .wpcf7-list-item-label a {
  color: var(--blue);
  text-decoration: underline;
}
