/* Sección vue_contact_hub — réplica 1:1 del original.
   Las variables las escribía el original en un style inline sobre la sección;
   aquí viven en la clase raíz. Se omiten --vue-contact-card-bg/--input-bg
   (venían vacías del original y no se usan en el CSS). */
.vue-contact {
	--vue-contact-bg: #f8fafc;
	--vue-contact-text: #111827;
	--vue-contact-accent: #2d70ff;
	--vue-contact-pt: 0px;
	--vue-contact-pb: 20px;

	background-color: var(--vue-contact-bg);
	color: var(--vue-contact-text);
	padding-bottom: var(--vue-contact-pb);
}

/* Hero Header */
.vue-contact__hero {
	padding: 100px 5vw 120px 5vw;
	text-align: center;
	background: linear-gradient(to bottom, #0A111F, #000814);
}

.vue-contact__hero-inner {
	max-width: 800px;
	margin: 0 auto;
}

.vue-contact__eyebrow-pill {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background-color: rgba(45, 112, 255, 0.1);
	color: var(--vue-contact-accent);
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
	border: 1px solid rgba(45, 112, 255, 0.3);
}

.vue-contact__heading {
	font-family: var(--font-h);
	font-size: clamp(2.5rem, 5vw, 4.2rem);
	font-weight: 700;
	margin: 0 0 1.5rem 0;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.vue-contact__hero-desc {
	font-family: var(--font-b);
	font-size: 1.15rem;
	line-height: 1.6;
	opacity: 0.7;
	color: #CBD5E1;
}

/* Layout Container */
.vue-contact__container {
	max-width: 1440px;
	margin: -60px auto 0 auto;
	padding: 0 5vw;
	position: relative;
	z-index: 10;
}

.vue-contact__layout {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 4rem;
	background-color: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0,0,0,0.1);
	color: #111827;
}

/* Left Side: Support Channels */
.vue-contact__channels-side {
	padding: 5rem 4rem;
	border-right: 1px solid #F1F5F9;
}

.vue-contact__side-title {
	font-family: var(--font-h);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 0.8rem 0;
}

.vue-contact__side-subtitle {
	font-size: 1rem;
	color: #64748B;
	margin-bottom: 4rem;
}

.vue-contact__channels-list {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.vue-contact__channel-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.vue-contact__channel-icon {
	width: 44px;
	height: 44px;
	background-color: rgba(45, 112, 255, 0.08);
	color: var(--vue-contact-accent);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vue-contact__channel-icon svg { width: 20px; height: 20px; }

.vue-contact__channel-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #94A3B8;
	margin-bottom: 0.3rem;
}

.vue-contact__channel-value {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
}

/* Right Side: Form Card */
.vue-contact__form-side {
	padding: 5rem 4rem;
}

.vue-contact__form-title {
	font-family: var(--font-h);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 3rem 0;
}

.vue-contact__form {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.vue-contact__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.vue-contact__field {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.vue-contact__label {
	font-size: 0.85rem;
	font-weight: 700;
	color: #1E293B;
}

.vue-contact__input {
	width: 100%;
	padding: 1rem 1.2rem;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	font-family: inherit;
	font-size: 0.95rem;
	background-color: #F8FAFC;
	transition: all 0.3s ease;
}

.vue-contact__input:focus {
	outline: none;
	border-color: var(--vue-contact-accent);
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(45, 112, 255, 0.1);
}

.vue-contact__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.2rem;
	padding-right: 3rem;
}

.vue-contact__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	background-color: var(--vue-contact-accent);
	color: #ffffff;
	padding: 1.2rem 2.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	margin-top: 1rem;
}

.vue-contact__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(45, 112, 255, 0.3);
	background-color: #1e56d4;
}

.vue-contact__form-footer {
	font-size: 0.75rem;
	color: #94A3B8;
	line-height: 1.5;
	margin-top: 1.5rem;
}

.vue-contact__form-footer a { color: inherit; text-decoration: underline; }

/* -------------------------------------------------------------------------
   Contact Form 7: el formulario dinámico reusa las clases .vue-contact__*,
   por lo que hereda el estilo original. Aquí solo se resuelven los envoltorios
   propios de CF7 y sus mensajes de estado.
   ------------------------------------------------------------------------- */
.vue-contact-hub-section .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.vue-contact-hub-section .wpcf7-form-control-wrap {
	display: block;
}

/* CF7 (wpautop) intercala <br> entre label e input; el layout ya es flex. */
.vue-contact-hub-section .wpcf7-form br {
	display: none;
}

/* El <select> de CF7 mantiene la flecha del original. */
.vue-contact-hub-section select.vue-contact__input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.2rem;
	padding-right: 3rem;
}

/* Mensajes de validación por campo. */
.vue-contact-hub-section .wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: 0.8rem;
	margin-top: 0.4rem;
}

.vue-contact-hub-section .wpcf7-not-valid {
	border-color: #dc2626 !important;
}

/* Aviso global de CF7 (éxito / error). */
.vue-contact-hub-section .wpcf7-response-output {
	margin: 1.5rem 0 0 0 !important;
	padding: 1rem 1.2rem;
	border-radius: 8px;
	font-size: 0.9rem;
	line-height: 1.5;
}

.vue-contact-hub-section .wpcf7 form.sent .wpcf7-response-output {
	border: 1px solid rgba(45, 112, 255, 0.3);
	background-color: rgba(45, 112, 255, 0.08);
	color: var(--vue-contact-accent);
}

.vue-contact-hub-section .wpcf7 form.invalid .wpcf7-response-output,
.vue-contact-hub-section .wpcf7 form.failed .wpcf7-response-output {
	border: 1px solid rgba(220, 38, 38, 0.3);
	background-color: rgba(220, 38, 38, 0.08);
	color: #dc2626;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
	.vue-contact__layout { grid-template-columns: 1fr; }
	.vue-contact__channels-side { border-right: none; border-bottom: 1px solid #F1F5F9; padding: 4rem 2.5rem; }
	.vue-contact__form-side { padding: 4rem 2.5rem; }
}

@media (max-width: 600px) {
	.vue-contact__form-row { grid-template-columns: 1fr; }
	.vue-contact__hero { padding-top: 60px; padding-bottom: 100px; }
	.vue-contact__container { margin-top: -40px; }
}

/* En el original el botón se estira a todo el ancho del formulario; el
   wrapper que inyecta CF7 lo encogía a su contenido. */
.vue-contact .vue-contact__submit { width: 100%; }
