/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* ELIMINAR IMÁGENES DE FONDO EN MOBILE */

@media only screen and (max-width: 1024px) {
	.e-con {
		background-image: none !important;
	}
}

/* ESTILOS DEL FORMULARIO */

.wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: "Fira Sans", Sans-serif;
	font-weight: 300;
}

.wpcf7-form br {
	display: none;
}

.wpcf7-form .form-row p {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-block-end: 0;
}

.wpcf7-form .form-row label .label-name {
	display: none;
}

.wpcf7-form .wpcf7-form-control-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wpcf7-form input, .wpcf7-form textarea {
	background: transparent;
	border: none;
	padding: 12px 0px;
	outline: none !important;
	border-bottom: 1px solid rgb(194, 194, 194);
	border-radius: 0;
}

.wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder {
	color: rgb(194, 194, 194);
}

.wpcf7-form input.wpcf7-submit {
	margin-top: 16px;
	border: 5px solid #b1d750;
	color: #000000;
	padding: 14px 50px;
	border-radius: 30px;
	font-weight: 300;
}

.wpcf7-form input.wpcf7-submit:hover {
	background-color: #b1d750;
	color: #FFFFFF;
}

.wpcf7-form input.wpcf7-submit:focus {
	background-color: #b1d750 !important;
	color: #FFFFFF !important;
}

@media only screen and (min-width: 1024px) {
	.wpcf7-form .form-row p {
		flex-direction: row;
	}
	
	.wpcf7-form .form-row.full-width label {
		width: 100%;
	}
}

/* SMALL CAPS PARA TEXTOS */

.small-caps p {
	font-variant: small-caps;
}