.features {
	background-color: rgb(212, 212, 212);
	height: auto;
	overflow-x: hidden;
}
img {
	max-width: 100%;
}
.bg_ia{
	height: 100vh;
	width: 100vw;
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),url('../IA/bg-ia.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
	/* Índice de apilamiento inferior */
}
.bg_ia h1{
	font-family: "Outfit", sans-serif;
	font-weight:600;
	font-size: 3.7rem;
	line-height: 3.7rem;
	color: white;
	text-shadow: 3px 1px 3px rgba(0,0,0,0.77);
}
.bg_ia p{
	font-family: "Space Grotesk", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.4rem ;
	color: white;
	line-height: 1.8rem;
	text-shadow: 2px 3px 5px rgba(0,0,0,0.7);
}
.bg_ia h2{
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.5rem ;
	color: white;
	text-shadow: 2px 3px 5px rgba(0,0,0,0.7);
}
.arrow-intro {
	position: absolute;
	left: 50%;
	bottom: 40px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 14px solid #ffffff88;
	/* color de la flecha */
	margin: 0 auto;
	animation: arrowBounce 1.5s ease-in-out infinite;
	opacity: 1;
	/* Inicialmente visible */
	transition: opacity 0.5s;
	/* Transición suave de opacidad */
	z-index: 99;
}
@keyframes arrowBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(8px);
	}
}
.hand{
	filter: drop-shadow(0 3px 6px rgb(90, 211, 255));
}
.brain {
	filter: drop-shadow(0 3px 8px rgb(90, 211, 255));
	animation: 2.5s infinite bobble;
	transform: scale(1);
}
@keyframes bobble {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(20px);
	}
	100% {
		transform: translateY(0px);
	}
}
.brain:hover {
	transform: scale(1.2);
}
@keyframes beat {
	0%, 50%, 100% {
		transform: scale(1.2, 1.2);
	}
	30%, 80% {
		transform: scale(0.92, 0.95);
	}
}
.imgApi{
	animation: 3s ease 0s infinite beat;
}
@keyframes slide {
	from {
		transform: translateX(30%);
		/* Comienza a la derecha de la vista */
	}
	to {
		transform: translateX(-30%);
		/* Termina a la izquierda de la vista */
	}
}
.imgApi1{
	animation: slide 3s linear infinite;
}
@keyframes blink {
	0% {
		opacity: 1;
		/* Totalmente visible al inicio */
	}
	50% {
		opacity: 0.3;
		/* Totalmente invisible en el punto medio */
	}
	100% {
		opacity: 1;
		/* Vuelve a ser totalmente visible al final */
	}
}
.imgApi2{
	animation: blink 1.3s linear infinite;
}
.imgApi2a{
	animation: blink 2s linear infinite;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	to {
		transform: rotate(360deg);
		/* Termina con una rotación completa de 360 grados */
	}
}
.imgApi3{
	animation: rotate 3s linear infinite;
}
@keyframes moveDown {
	0% {
		transform: translateY(0);
		/* Comienza en la posición inicial */
	}
	100% {
		transform: translateY(45px);
		/* Mueve hacia abajo hasta el final de la vista */
	}
}
.currency{
	position: absolute;
	top:3;
	left:24px;
	animation: moveDown 1s linear infinite;
}
@keyframes moveUpRight {
	0% {
		transform: translate(0, 30%);
		/* Comienza desde abajo */
	}
	100% {
		transform:translate(100%, -50%);
		/* Termina en la esquina superior derecha */
	}
}
@keyframes rotateAroundCenter {
	0% {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	25% {
		transform: rotate(-30deg);
		/* Gira 45 grados a la izquierda */
	}
	45% {
		transform: rotate(0deg);
		/* Regresa a la posición inicial */
	}
	65% {
		transform: rotate(30deg);
		/* Gira 45 grados a la derecha */
	}
	85% {
		transform: rotate(0deg);
		/* Regresa a la posición inicial */
	}
}
.security {
	animation:rotateAroundCenter 2s ease-in-out infinite;
	transform-origin: center;
	/* La animación dura 5 segundos, es continua y repetitiva */
}
@keyframes rotateClockwise {
	0% {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	100% {
		transform: rotate(360deg);
		/* Completa una rotación de 360 grados */
	}
}
/* Define la animación de rotación en sentido antihorario */
@keyframes rotateCounterClockwise {
	0% {
		transform: rotate(0deg);
		/* Comienza sin rotación */
	}
	100% {
		transform: rotate(-360deg);
		/* Completa una rotación de -360 grados (sentido antihorario) */
	}
}
.rotate{
	position: absolute;
	right: -2px;
	top:0px;
	animation: rotateCounterClockwise 8s linear infinite;
}
.rotate1{
	position: absolute;
	left: 0px;
	bottom:3px;
	animation: rotateClockwise 10s linear infinite;
}
.circles {
	height: 45vmin;
	width: 55vmin;
	position: absolute;
	margin: 0 auto;
	top: 0px;
	left: 20%;
}
.circle {
	box-sizing: border-box;
	position: absolute;
	width: 75%;
	height: 70%;
	border: 1vmin solid transparent;
	border-radius: 115% 140% 145% 110% / 125% 140% 110% 125%;
	mix-blend-mode:screen;
	opacity: 0.4;
	background-color: #581f0b;
}
.circle:nth-child(1) {
	border-color: #0c4d70;
	transform-origin: 50% + 0% 50%;
	animation: spin1 5.5s linear infinite;
	filter: drop-shadow(0 3px 6px rgb(231, 249, 255));
}
.circle:nth-child(2) {
	border-color: #0e0e43;
	transform-origin: 50% 50% + 0%;
	animation: spin2 5.5s linear infinite;
}
.circle:nth-child(3) {
	border-color: #4285f4;
	transform-origin: 50% + 0% 50%;
	animation: spin3 5.5s linear infinite;
}
.circle:nth-child(4) {
	border-color: #21139b;
	transform-origin: 50% 50% - 0%;
	animation: spin4 5.5s linear infinite;
	filter: drop-shadow(0 3px 6px rgb(231, 249, 255));
}
@keyframes spin1 {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes spin2 {
	0% {
		transform: rotate(72deg);
	}
	100% {
		transform: rotate(-288deg);
	}
}
@keyframes spin3 {
	0% {
		transform: rotate(-144deg);
	}
	100% {
		transform: rotate(216deg);
	}
}
@keyframes spin4 {
	0% {
		transform: rotate(216deg);
	}
	100% {
		transform: rotate(-144deg);
	}
}
@keyframes moveUpRight {
	0% {
		transform: translate(0, 0) ;
	}
	25% {
		transform: translate(10px, -10px) ;
	}
	50% {
		transform: translate(20px, 0px);
	}
	75% {
		transform: translate(10px, 10px);
	}
	100% {
		transform: translate(0, 0) ;
	}
}
.search{
	animation: moveUpRight 3s ease-in-out infinite;
	animation-delay: 2s;
}
.end{
	height: auto;
	width: 100vw;
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),url('../IA/bg-ia.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
	/* Índice de apilamiento inferior */
}
@keyframes fadeInOut {
	0%, 20% {
		opacity: 0;
	}
	21%, 80% {
		opacity: 1;
	}
	81%, 100% {
		opacity: 0;
	}
}
@keyframes fadeInOut1 {
	0%, 30% {
		opacity: 0;
	}
	31%, 80% {
		opacity: 1;
	}
	81%, 100% {
		opacity: 0;
	}
}
.bot {
	animation: fadeInOut 4s infinite;
}
.bot1 {
	animation: fadeInOut1 4s infinite;
}
@keyframes moveUp{
	0% {
		transform: translateY(0%);
	}
	50% {
		transform:translateY(10%);
	}
	100% {
		transform:translateY(0%);
	}
}
@keyframes moveReverse{
	0% {
		transform: translateY(12%);
	}
	50% {
		transform:translateY(0%);
	}
	100% {
		transform:translateY(12%);
	}
}
.tool1{
	animation: moveUp 1s linear infinite normal;
}
.tool{
	animation: moveReverse 1s linear infinite ;
}
/*CONTACT*/
.contactContainer {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 2rem;
	background-color: #fafafa;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contactContainer h3{
	padding-bottom: 0;
}
.contactContainer p{
	font-weight: 400;
}
.form {
	width: 100%;
	max-width: 820px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
	z-index: 20;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.contact-form {
	background-color: #0d919b;
	position: relative;
}
.circle {
	border-radius: 50%;
	background: linear-gradient(135deg, transparent 20%, #000414);
	position: absolute;
}
.circle.one {
	width: 130px;
	height: 130px;
	top: 130px;
	right: -40px;
}
.circle.two {
	width: 80px;
	height: 80px;
	top: 10px;
	right: 30px;
}
.contact-form:before {
	content: "";
	position: absolute;
	width: 26px;
	height: 26px;
	background-color: #0d919b;
	transform: rotate(45deg);
	top: 50px;
	left: -13px;
}
form {
	padding: 2.3rem 2.2rem;
	z-index: 10;
	overflow: hidden;
	position: relative;
}
.title {
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 0.7rem;
}
.input-container {
	position: relative;
	margin: 1rem 0;
}
.input {
	margin-bottom:12px;
	width: 100%;
	height: 2rem;
	outline: none;
	border: 1.7px solid #fafafa;
	background: none;
	padding: 0.6rem 1.2rem;
	color: #fff;
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	border-radius: 25px;
	transition: 0.3s;
}
.input::placeholder{
	color:rgba(255, 255, 255, 0.765)
}
.error-message {
	color: rgb(209, 4, 4);
	padding-left: 20px;
	margin-top: -5px;
	margin-bottom: 5px;
	font-weight: 800;
	font-size: 0.6rem;
	font-family: "Poppins", sans-serif;
	display: block;
}
textarea.input {
	padding: 0.8rem 1.2rem;
	min-height: 150px;
	border-radius: 22px;
	resize: none;
	overflow-y: auto;
}
.contactContainer .btn {
	padding: 0.6rem 1.3rem;
	background-color: #fff;
	border: 2px solid #fafafa;
	font-size: 0.95rem;
	font-weight: 600;
	color: #0d919b;
	line-height: 1;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
	margin: 0;
}
.contactContainer .btn:hover {
	background-color: transparent;
	color: #fff;
}
.input-container span {
	position: absolute;
	top: 0;
	left: 10px;
	transform: translateY(-50%);
	font-size: 0.8rem;
	padding: 0 0.4rem;
	color: transparent;
	pointer-events: none;
	z-index: 25;
}
.input-container span:before,.input-container span:after {
	content: "";
	position: absolute;
	width: 15%;
	opacity: 0;
	transition: 0.3s;
	height: 8px;
	background-color: #000d3a;
	top: 50%;
	transform: translateY(-50%);
}
.input-container span:before {
	left: 50%;
}
.input-container span:after {
	right: 50%;
}
.input-container.focus label {
	top: 0;
	transform: translateY(-50%);
	left: 12px;
	font-size: 0.8rem;
}
.input-container.focus span:before,.input-container.focus span:after {
	width: 50%;
	opacity: 1;
}
.contact-info {
	padding: 2.3rem 2.2rem;
	position: relative;
}
.contact-info .title {
	color: #0d919b;
}
.text {
	color: #333;
	margin: 1rem 0 2rem 0;
}
.information {
	display: flex;
	color: #555;
	margin: 0.7rem 0;
	align-items: center;
	font-size: 0.95rem;
}
.information a{
	font-size: 0.95rem;
}
.social-media {
	padding: 2rem 0 0 0;
}
.social-media p {
	color: #333;
}
.social-icons {
	display: flex;
	margin-top: 0.5rem;
}
.social-icons a {
	width: 35px;
	height: 35px;
	border-radius: 40px;
	background: linear-gradient(45deg, #0d919b, #09a8b4);
	color: #fff;
	text-align: center;
	line-height: 35px;
	margin-right: 0.5rem;
	transition: 0.3s;
}
.social-icons a:hover {
	transform: scale(1.05);
}
.contact-info:before {
	content: "";
	position: absolute;
	width: 110px;
	height: 100px;
	border: 22px solid #0d919b;
	border-radius: 50%;
	bottom: -77px;
	right: 50px;
	opacity: 0.3;
}
.big-circle {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: linear-gradient(to bottom, #000d3a, #000414);
	bottom: 50%;
	right: 50%;
	transform: translate(-40%, 38%);
}
@media (max-width: 600px) {
	.form {
		grid-template-columns: 1fr;
	}
}
