/* Bloque Newsletter */
.bloque-newsletter {
	background: #E0E1F0;
	border-radius: 8px;
	padding: 3rem;
	margin: 6rem 0;
	transition: all 0.3s ease;
}

.newsletter-contenido {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: end;
}

.bloque-newsletter p {
	margin: 0 !important;
}

.bloque-newsletter h2 {
	color: #1B1B1A;
	font-family: "Founders Grotesk", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 110%;
	letter-spacing: -0.96px;
	margin: 0;
	transition: color 0.3s ease;
}

/* Formulario Contact Form 7 */
.bloque-newsletter .wpcf7-form {
	display: flex;
	flex-direction: column;
}

.bloque-newsletter .wpcf7-form br,
.wpcf7-spinner {
	display: none;
}

.bloque-newsletter .wpcf7-form-control.custom-input {
	background: transparent;
	border: none;
	border-bottom: 1px solid #1B1B1A;
	border-radius: 0;
	padding: 1rem 0;
	font-family: "Open Sauce Two", sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	color: #1B1B1A;
	letter-spacing: 0.014em;
	transition: all 0.3s ease;
	width: 100%;
}

.bloque-newsletter .wpcf7-form-control.custom-input::placeholder {
	color: #1B1B1A;
	opacity: 1;
}

.bloque-newsletter .wpcf7-form-control.custom-input:focus {
	outline: none;
	border-bottom-color: #1B1B1A;
}

.wpcf7-not-valid-tip{
	font-size: 12px;
	color: gray;
}

/* Checkbox */
.bloque-newsletter .wpcf7-acceptance {
	display: flex !important;
	align-items: flex-start !important;
	gap: 0.75rem !important;
	font-family: "Open Sauce Two", sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	color: #1B1B1A;
	padding: 3rem 0;
	transition: color 0.3s ease;
	margin: 0;
}

.bloque-newsletter .wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	flex-shrink: 0;
}

.bloque-newsletter .wpcf7-acceptance input.custom-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 0.875rem;
	height: 0.875rem;
	border: 1px solid #1B1B1A;
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
	margin: 0;
	vertical-align: text-top;
}

.bloque-newsletter .wpcf7-acceptance input.custom-checkbox:checked {
	background: #1b1b1a;
	border-color: #1b1b1a;
}

.bloque-newsletter .wpcf7-acceptance input.custom-checkbox:checked::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 7px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
}

/* Botón */
.bloque-newsletter .boton-proyecto {
	display: unset;
	justify-content: unset;
	align-items: center;
	border: 1px solid #1B1B1A;
	border-radius: 0.5rem;
	background: transparent;
	color: #1B1B1A;
	font-family: "Open Sauce Two", sans-serif;
	font-size: 1.06rem;
	font-weight: 400;
	line-height: 1.06rem;
	padding: 0.57rem 1rem;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s ease;
}

.bloque-newsletter .boton-proyecto [type="submit"] {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
	align-items: center;
}

.bloque-newsletter .boton-proyecto p {
	display: flex;
	justify-content: space-between;
}

.bloque-newsletter .boton-proyecto svg {
	vertical-align: middle;
}

.bloque-newsletter .boton-proyecto:hover {
	border-radius: 1.25rem;
}

/* Responsive Mobile */
@media (max-width: 767px) {
	.bloque-newsletter {
		padding: 32px;
		margin: 96px 0;
	}

	.newsletter-contenido {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.bloque-newsletter h2 {
		font-size: 27px;
		line-height: 110%;
		letter-spacing: -0.54px;
	}

	.bloque-newsletter .wpcf7-form-control.custom-input {
		padding: 16px 0;
		font-size: 14px;
	}

	.bloque-newsletter .wpcf7-acceptance {
		font-size: 11px;
		padding: 40px 0;
	}

	.bloque-newsletter .wpcf7-acceptance input.custom-checkbox {
		width: 14px;
		height: 14px;
	}

	.bloque-newsletter .boton-proyecto {
		border-radius: 8px;
		font-size: 15px;
		font-weight: 400;
		line-height: 1.06rem;
		padding: 10px 16px;
	}

	.bloque-newsletter .boton-proyecto svg {
		width: 15px;
		height: 16px;
	}

	.bloque-newsletter .boton-proyecto:hover {
		border-radius: 24px;
	}
}


/* Bloque Contacto - Basado en Newsletter */
.bloque-contacto {
	background: #E0E1F0;
	border-radius: 8px;
	padding: 3rem;
	margin-top: 6rem;
	transition: all 0.3s ease;
}

.contacto-contenido {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.bloque-contacto p {
	margin: 0 !important;
}

.bloque-contacto h2 {
	color: #1B1B1A;
	font-family: "Founders Grotesk", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 110%;
	letter-spacing: -0.96px;
	margin: 0;
	transition: color 0.3s ease;
}

/* Formulario Contact Form 7 */
.bloque-contacto .wpcf7-form {
	display: flex;
	flex-direction: column;
}

.bloque-contacto .wpcf7-form br,
.wpcf7-spinner {
	display: none;
}

.bloque-contacto .wpcf7-form-control.custom-input {
	background: transparent;
	border: none;
	border-bottom: 1px solid #1B1B1A;
	border-radius: 0;
	padding: 0 0 1rem 0;
	font-family: "Open Sauce Two", sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	color: #1B1B1A;
	letter-spacing: 0.014em;
	transition: all 0.3s ease;
	width: 100%;
}

.bloque-contacto .wpcf7-form-control-wrap:nth-child(n+2) .custom-input {
	padding: 3rem 0 1rem 0 !important;
}

.bloque-contacto .wpcf7-form-control.custom-input::placeholder {
	color: #1B1B1A;
	opacity: 1;
}

.bloque-contacto .wpcf7-form-control.custom-input:focus {
	outline: none;
	border-bottom-color: #1B1B1A;
}

.wpcf7-not-valid-tip{
	font-size: 12px;
	color: gray;
}

/* Checkbox - estructura corregida */
.bloque-contacto .wpcf7-acceptance {
	display: flex !important;
	align-items: flex-start !important;
	gap: 0.75rem !important;
	font-family: "Open Sauce Two", sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	color: #1B1B1A;
	padding: 3rem 0;
	transition: color 0.3s ease;
	margin: 0;
}

.bloque-contacto .wpcf7-list-item {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	flex-shrink: 0;
}

.bloque-contacto .wpcf7-acceptance input.custom-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 0.875rem;
	height: 0.875rem;
	border: 1px solid #1B1B1A;
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
	margin: 0;
	vertical-align: text-top;
}

.bloque-contacto .wpcf7-acceptance input.custom-checkbox:checked {
	background: #82FF7A;
	border-color: #82FF7A;
}

.bloque-contacto .wpcf7-acceptance input.custom-checkbox:checked::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 7px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
}

/* Botón */
.bloque-contacto .boton-proyecto {
	display: unset;
	justify-content: unset;
	align-items: center;
	border: 1px solid #1B1B1A;
	border-radius: 0.5rem;
	background: transparent;
	color: #1B1B1A;
	font-family: "Open Sauce Two", sans-serif;
	font-size: 1.06rem;
	font-weight: 400;
	line-height: 1.06rem;
	padding: 0.57rem 1rem;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s ease;
}

.bloque-contacto .boton-proyecto [type="submit"] {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
	align-items: center;
}

.bloque-contacto .boton-proyecto p {
	display: flex;
	justify-content: space-between;
}

.bloque-contacto .boton-proyecto svg {
	vertical-align: middle;
}

.bloque-contacto .boton-proyecto:hover {
	border-radius: 1.25rem;
}

/* Responsive Mobile */
@media (max-width: 767px) {
	.bloque-contacto {
		padding: 32px;
		margin-top: 96px;
	}

	.contacto-contenido {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.bloque-contacto h2 {
		font-size: 27px;
		line-height: 110%;
		letter-spacing: -0.54px;
	}

	.bloque-contacto .wpcf7-form-control.custom-input {
		padding: 16px 0;
		font-size: 14px;
	}

	.bloque-contacto .wpcf7-form-control-wrap:nth-child(n+2) .custom-input {
		padding: 40px 0 16px 0 !important;
	}

	.bloque-contacto .wpcf7-acceptance {
		font-size: 11px;
		padding: 40px 0;
	}

	.bloque-contacto .wpcf7-acceptance input.custom-checkbox {
		width: 14px;
		height: 14px;
	}

	.bloque-contacto .boton-proyecto {
		border-radius: 8px;
		font-size: 15px;
		font-weight: 400;
		line-height: 1.06rem;
		padding: 10px 16px;
	}

	.bloque-contacto .boton-proyecto svg {
		width: 15px;
		height: 16px;
	}

	.bloque-contacto .boton-proyecto:hover {
		border-radius: 24px;
	}
}