@font-face {
	font-family: 'Amsterdam';
	src: url('Amsterdam/Amsterdam.otf') format('truetype');
	font-style: oblique;
	font-weight: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
html {
	scroll-behavior: smooth;
}

.subcription a {
	text-decoration: none;
	color: #fff;
}

:root {
	--color_text-primary: #ab29ca;
	--color_text-secundary: #101e2c;
	--color_text-tertiary: #485663;
	--main_color-primary: rgb(154, 0, 191);
	--main_color-secundary: rgb(244, 212, 251);
	--lowText_font_size: 16px;
	--text_size_title: 40px;
	--text_title_card: 24px;
	--text_title_cardv2: 20px;
	--text_paragraph: 18px;
	--background-color: #f5f5f5;
	--box_shadow-primary: 0px 6px 50px -20px rgba(0, 0, 0, 0.728);
}

header {
	width: 100%;
	height: 100px;
	position: fixed;
	z-index: 100;
}

.container__header {
	max-width: 1200px;
	height: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
	/* From https://css.glass */
	background: rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(4.9px);
	-webkit-backdrop-filter: blur(4.9px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
	width: 300px;
}

.logo a img {
	width: 100%;
}

.menu {
	display: flex;
	align-items: center;
}

.menu nav {
	margin: 0px 20px;
}

.menu nav ul {
	display: flex;
}

.menu nav ul li {
	list-style: none;
	margin: 20px 16px;
}

.menu nav ul li a {
	color: var(--color_text-secundary);
	font-size: var(--lowText_font_size);
	position: relative;
}

.menu nav ul li a:hover {
	color: var(--main_color-primary); /*variable*/
}

.btn__quote {
	color: #9a00bf;
	display: block;
	padding: 8px 40px;
	border: 2px solid var(--main_color-primary);
	border-radius: 8px;
	font-weight: 500px;
	margin: 0px 20px;
	transition: all 300ms;
}

.btn__quote:hover {
	color: white;
	background: var(--main_color-primary);
}

.menu .socialMedia {
	margin: 0px 10px;
}

.menu .socialMedia a {
	margin: 0px 4px;
}

.menu .socialMedia img {
	width: 20px;
}

/*Portanda de Inicio*/

.container__cover {
	padding-top: 100px;
	padding-bottom: 100px;
	background: var(--main_color-secundary);
	justify-content: space-between;
}

.cover {
	max-width: 1200px;
	margin: auto;
	margin-top: 20px;
	display: flex;
	align-items: center;
	padding: 0px 20px;
}

.text__cover {
	width: 100%;
}

.text__cover h1 {
	font-size: 50px;
	color: var(--color_text-secundary);
}

.text__cover p {
	font-size: var(--text_paragraph);
	margin-top: 20px;
	color: var(--color_text-tertiary);
}

.btn__text {
	display: block;
	width: 190px;
	margin-top: 40px;
	padding: 10px 20px;
	text-align: center;
	font-weight: 500px;
	background: var(--main_color-primary);
	color: white;
	border-radius: 8px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 300ms;
}

.btn__text:hover {
	background: transparent;
	border: 2px solid var(--main_color-primary);
	color: var(--main_color-primary);
}

.image__cover {
	width: 100%;
}
.image__cover img {
	width: 550px;
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

/*Estilos Generales CARD*/

.container__card-primary_t {
	padding-top: 100px;
	padding-bottom: 100px;
	overflow: hidden;
	background: linear-gradient(45deg, #5300bf 0%, rgba(212, 0, 255, 0.8) 100%);
}
.container__card-primary {
	padding-top: 80px;
	overflow: hidden;
}

.card__primary {
	max-width: 1200px;
	margin: auto;
	text-align: center;
	padding: 0px 20px;
}

.text__card-primary {
	width: 800px;
	margin: auto;
}
.text__card-primary_t {
	width: 800px;
	margin: auto;
}
.text__card-primary p {
	color: var(--color_text-primary);
	letter-spacing: 4px;
	font-size: var(--text_paragraph);
	font-weight: 500;
}

.text__card-primary h1 {
	font-size: var(--text_size_title);
	font-weight: 600;
	color: var(--color_text-secundary);
}

.container__box-cardPrimary {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
}

.box__card-primary {
	width: 350px;
	padding: 60px 40px;

	margin: 14px;

	/* From https://css.glass */
	background: rgba(227, 64, 224, 0.09);
	border-radius: 10% 25%;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(4.6px);
	-webkit-backdrop-filter: blur(4.6px);
	border: 1px solid rgba(227, 64, 224, 0.15);
}

.box__card-primary:hover {
	border: 1px solid transparent;
	box-shadow: var(--box_shadow-primary);
}

.box__card-primary h2 {
	font-size: var(--text_title_card);
	margin-top: 40px;
	font-weight: 500;
}

.box__card-primary p {
	margin-top: 20px;
	text-align: justify;
}

.box__card-primary img {
	width: 200px;
}

.image-mosaic {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(3, 200px);
	gap: 10px;
	width: 80%;
}

.grid-item {
	overflow: hidden;
	position: relative;
}

.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.grid-item:hover img {
	transform: scale(1.1);
}
.tooltip-container {
	position: relative;
	display: inline-block;
	margin: 20px;
}

.text {
	color: #333;
	font-size: 15px;
	cursor: pointer;
}

.tooltip {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	background: #4e0061;
	color: #fff;
	padding: 10px;
	border-radius: 4px;
	transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
	z-index: 1;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tooltip::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	border-width: 8px;
	border-style: solid;
	border-color: transparent transparent #8c1ca8 transparent;
	transform: translateX(-50%);
}

.tooltip-container:hover .tooltip {
	top: 120%;
	opacity: 1;
	visibility: visible;
	background: #a833c5;
	transform: translate(-50%, -5px);
}

.item1 {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.item2 {
	grid-column: 3 / 5;
	grid-row: 1 / 2;
}

.item3 {
	grid-column: 5 / 7;
	grid-row: 1 / 3;
}

.item4 {
	grid-column: 1 / 3;
	grid-row: 3 / 4;
}

.item5 {
	grid-column: 3 / 5;
	grid-row: 2 / 4;
}

.item6 {
	grid-column: 5 / 7;
	grid-row: 3 / 4;
}
/* Contenedor principal del mosaico */
.mosaic-container {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	padding: 20px;
}

/* Diseño de la tarjeta individual */
.mosaic-card {
	align-content: center;

	position: relative;
	width: 350px;
	height: 280px;
	background: linear-gradient(135deg, #ffffff, #e7f3ff);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.mosaic-card:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Contenido del comentario */
.mosaic-comment {
	padding: 20px;
	font-size: 15px;
	color: #333;
	text-align: center;
}

.mosaic-comment p {
	font-weight: 500;
	line-height: 1.5;
	color: #555;
}

.mosaic-rating {
	font-size: 18px;
	color: #ffd700;
	margin-top: 10px;
}

/* Overlay con detalles del usuario */
.mosaic-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.mosaic-card:hover .mosaic-overlay {
	opacity: 1;
}

/* Imagen del lector */
.mosaic-overlay img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-bottom: 10px;
	border: 3px solid #fff;
	box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

.mosaic-overlay h4 {
	font-size: 18px;
	margin: 5px 0 2px;
	color: #ef74ff;
}

.mosaic-overlay span {
	font-size: 14px;
	color: #ddd;
	font-style: italic;
}

/* Fondo decorativo de la tarjeta */
.mosaic-card:before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	background: radial-gradient(circle at 50% 50%, rgba(174, 0, 255, 0.15), transparent 70%);
	z-index: 1;
	transition: transform 0.5s ease;
}

.mosaic-card:hover:before {
	transform: rotate(15deg);
}

/*Sobre Nosotros*/

.container__about {
	padding: 100px 0px;
	background: var(--background-color);
	margin-top: 100px;
	overflow: hidden;
}
.about {
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 20px;
}

.text__about {
	width: 70%;
}

.text__about h1 {
	color: var(--text_secundary);
	font-weight: 600;
}

.text__about p {
	font-size: var(--text_paragraph);
	margin-top: 40px;
	color: var(--color_text-tertiary);
}

.image__about {
	width: 100%;
	display: flex;
}

.image__about img {
	width: 300px;
	border-radius: 10%;
	margin: 10px;
}

.image__a {
	display: flex;
}

.image__a img {
	margin-left: -50px;
}

.container__banner {
	max-width: 1200px;
	margin: auto;
	margin-top: 80px;
}

.icon {
	width: 40%;
}

.banner .text input:hover {
	color: #9a00bf;
}

.img__icon-fire {
	height: 100%;
	position: absolute;
	right: 10px;
	overflow: hidden;
}

#icon_heart {
	z-index: 1;
	width: 300px;
	margin-bottom: -290px;
	margin-left: 500px;
	position: absolute;
	filter: drop-shadow(-40px 0px 30px rgba(0, 0, 0, 0.5));
}

#icon_fire {
	width: 300px;
	position: relative;
	margin-top: -100px;
	opacity: 0.6;
}

.pie-pagina {
	width: 100%;
	background: #0a141d;
	display: inline-block;
}

.pie-pagina .grupo1 {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 45px 0px;
	column-gap: 50px;
}

.texto {
	margin: 30px auto;
	width: 80%;
}

.texto p,
h1 {
	margin-bottom: 30px;
}

.texto p {
	font-size: 20px;
}

.btn-abrir {
	color: rgb(154, 0, 191);
	display: block;
	padding: 8px 40px;
	border: 2px solid var(--main_color-primary);
	border-radius: 8px;
	font-weight: 500px;
	margin: 0px 20px;
	transition: all 300ms;
}
.btn-abrir:hover {
	color: white;
	background: var(--main_color-primary);
}
.button-group {
	margin: 20px 0;
}

.info-button {
	background-color: #6200ea;
	color: white;
	border: none;
	padding: 10px 20px;
	margin: 0 10px;
	cursor: pointer;
	border-radius: 50px;
	transition: background-color 0.3s ease;
}

.info-button:hover {
	background-color: #3700b3;
}

.diagonal-line-two {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 160%;
	background: linear-gradient(45deg, #5300bf 0%, rgba(212, 0, 255, 0.8) 100%);
	z-index: -1;
	transition: background 0.5s ease-in-out;
}

.text__card-primary_t h1 {
	font-size: var(--text_size_title);
	font-weight: 600;
	color: rgb(255, 255, 255);
}

.text__card-primary_t p {
	letter-spacing: 4px;
	font-size: var(--text_paragraph);
	font-weight: 500;
	color: white;
}

.developer-info {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

.info-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	padding: 20px;
	color: white;
	background: rgba(255, 255, 255, 0.11);
	border-radius: 90px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-left {
	flex: 1;
	padding-right: 30px;
	padding-left: 30px;
}

.info-left h2 {
	font-size: 2rem;
	margin-bottom: 10px;
}

.info-left p {
	text-align: left;
	font-size: 1rem;
}

.info-right {
	position: relative;
	width: 150px;
	height: 150px;
}

/* .developer-image-circle img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
} */

/* Estilo para el círculo */
.developer-image-circle {
	width: 220px; /* Tamaño del círculo */
	height: 220px; /* Tamaño del círculo */
	border-radius: 50%; /* Hace que el contenedor sea redondo */
	overflow: visible; /* Permite que la imagen sobresalga del círculo */
	background: linear-gradient(45deg, #5a0070 0%, rgba(119, 0, 255, 0.8) 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 20px auto; /* Centrado */
}

/* Estilo para la imagen que sobresale */
#developer-image {
	width: 200px; /* Tamaño de la imagen */
	border-radius: 50%; /* Hace que el contenedor sea redondo */
	z-index: 1;
	transition: transform 0.3s ease-in-out;
}

/* Efecto hover en la imagen */
#developer-image:hover {
	transform: scale(1.1); /* Efecto de zoom al pasar el cursor */
}

/* VENTANA MODAL */

.pop-up {
	z-index: 2000;
	background: rgba(48, 48, 48, 0.5);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
}

.pop-up-wrap {
	display: flex;
	align-items: center;
	width: 90%;
	max-width: 950px;
	transform: scale(0.6);
	opacity: 0;
	transition: 0.3s ease all;
}

.pop-up-title {
	flex-basis: 0;
	flex-grow: 1.5;
	height: 460px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-image: url('Images/pexels-theweddingfog-2995347.jpg');
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.pop-up-title::after {
	content: '';
	position: absolute;
	background: rgba(56, 28, 113, 0.75);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.pop-up-title::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: 0px 0px 10px 3px rgba(116, 57, 205, 0.3);
	z-index: -1;
}

.subcription::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: 0px 0px 10px 3px rgba(116, 57, 205, 0.3);
	z-index: -1;
}

.pop-up-title h2,
.pop-up-title p {
	z-index: 10;
	color: #fff;
}

.pop-up-title h2 {
	font-family: 'Chiller';
	font-size: 80px;
}

.pop-up-title p {
	font-size: 20px;
	font-weight: 300;
}

.subcription {
	background: #fff;
	flex-basis: 0;
	flex-grow: 2;
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	text-align: center;
}

.sub-content {
	width: 75%;
}

.sub-content h2 {
	font-weight: 500;
	font-size: 40px;
	color: #102033;
	margin-bottom: 15px;
}

.sub-content p {
	font-weight: 500;
	color: #102033;
	margin-bottom: 30px;
}

.subs-email {
	width: 100%;
	padding: 15px;
	background: rgb(255, 255, 255);
	margin-bottom: 15px;
}

.subs-send {
	width: 100%;
	padding: 15px;
	border: 2px solid white;
	background: rgba(56, 28, 113, 0.75);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	margin-bottom: 20px;
	transition: 0.25s ease background;
	border-radius: 10px;
}

.subs-send:hover {
	background: transparent;
	border: 2px solid var(--main_color-primary);
	color: var(--color_text-primary);
}

.line {
	width: 100%;
	height: 20px;
	background: #9a00bf;
}

#close {
	position: absolute;
	top: 40px;
	right: 25px;
	font-size: 25px;
	color: #44049dad;
	cursor: pointer;
}

.pop-up.show {
	visibility: visible;
}

.pop-up-wrap.show {
	transform: scale(1);
	opacity: 1;
}

form input {
	width: 100%;
	margin-top: 20px;
	padding: 10px;
	border: none;
	font-size: 16px;
	outline: none;
	border-radius: 8px;
	border: 1px solid rgb(128, 128, 128);
}

form img {
	width: 50px;
	margin-left: 30px;
	margin-top: 10px;
	filter: grayscale(100%);
}

form img:hover {
	border: 1px solid transparent;
	box-shadow: var(--box_shadow-primary);
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

footer {
	background-color: #3f485b;
	padding: 30px;
	margin: auto;
	overflow: hidden;
}

.footer-container {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
	margin: auto;
	padding-bottom: 25px;
}

.content-foo {
	max-width: 250px;
	min-width: 250px;
}

.content-foo h4 {
	color: white;
	border-bottom: 3px solid var(--main_color-primary);
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.content-foo p {
	color: aliceblue;
}

.content-foo ul {
	color: aliceblue;
	list-style: none;
}

.content-foo ul li {
	padding: 5px;
}

.content-foo ul li i {
	margin-right: 8px;
}

.content-foo a {
	display: block;
	color: aliceblue;
	font-size: 16px;
	padding: 5px 0;
}

.content-foo a:hover {
	color: var(--main_color-primary);
}

.copyrigth {
	background-color: var(--color_text-secundary);
	border-radius: 10px;
	padding: 15px 0;
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.copyrigth h2 {
	font-size: 24px;
	margin: 15px 0 15px 25px;
	color: aliceblue;
}

.redes-sociales1 {
	display: flex;
	text-align: center;
	font-size: 15px;
	margin-right: 15px;
}

.redes-sociales1 .bubble {
	width: 37px;
	height: 37px;
	background-color: #3d0063;
	border-radius: 50px;
	margin: 10px;
	padding: 8px;
	filter: drop-shadow(0 0 10px #000);
}

.redes-sociales1 .bubble:hover {
	transform: scale(1.1);
	background-color: #d16fff;
}

.redes-sociales1 .bubble i {
	color: aliceblue;
	padding: 0 0;
	margin-top: 50%;
}

.redes-sociales1 .bubble:hover i {
	color: #0a141d;
}

/* Scroll Personalizado */

body::-webkit-scrollbar {
	width: 7px;
}

body::-webkit-scrollbar-thumb {
	background: #ab29ca;
	border-radius: 50px;
}

dialog::-webkit-scrollbar {
	width: 7px;
}

dialog::-webkit-scrollbar-thumb {
	background: #ab29ca;
	border-radius: 50px;
}

.container__banner1 {
	max-width: 1000px;
	margin: auto;
	margin-top: 80px;
}

.banner1 {
	height: 250px;
	display: flex;
	align-items: center;
	background: url(Images/Banner/Delivery1.png);
	background-size: 1000px 255px;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 10px;
	border: solid 2px black;
}

.banner1 .icon1 {
	width: 40%;
}

#icon_heart1 {
	width: 140px;
	margin-top: 580px;
	position: relative;
	filter: drop-shadow(-40px 0px 30px rgba(0, 0, 0, 0.5));
}

.container__header .menu-hambueguesa {
	width: 35px;
	opacity: 98%;
	position: absolute;
	top: 50px;
	right: 50px;
	display: none;
}

.bars__menu {
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: none;
}

.bars__menu span {
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 6px;
	background: #9a00bf;
	transition: all 300ms;
	transform-origin: 0px 100%;
}

.activeline1__bars-menu {
	transform: rotate(45deg) translate(-2px, 1px);
}
.activeline3__bars-menu {
	transform: rotate(-45deg) translate(-4px, 2px);
}

.activeline2__bars-menu {
	opacity: 0;
	margin-left: -30px;
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
	.menu {
		position: absolute;
		top: 0;
		right: -250px;
		background: #f5f5f5;
		width: 250px;
		height: 100vh;
		padding: 18px;
		z-index: 1000;
		transition: all 300ms;
		border-radius: 20px 0px 0px 20px;
	}
	.info-card {
		flex-direction: column;
	}
	.container__card-primary .text__card-primary_t h1 {
		font-size: 30px;
	}

	.menu .socialMedia a {
		margin-top: 20px;
	}
	.menu .socialMedia img {
		margin-top: 20px;
		width: 30px;
	}

	.menu ul {
		flex-direction: column;
	}
	.menu ul li a {
		list-style: none;
		margin-left: 6px;
	}
	.menu ul li a {
		color: #bebebe;
	}
	.menu .btn-abrir {
		position: absolute;
		top: 75%;
		margin-left: 15%;
	}
	.back_menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.5);
		z-index: -11100;
		display: none;
		transition: all 10000ms;
	}

	.bars__menu {
		display: block;
		z-index: 2000;
	}

	.menu__active {
		right: -1px;
	}
	.back_active {
		display: block;
	}

	.container__cover {
		max-width: 1000px;
		width: 100%;
	}
	.redes-sociales1 {
		display: none;
	}
	.text__cover h1 {
		font-size: 2.5rem;
		margin-top: 10px;
	}
	.text__cover2 h1 {
		font-size: 2rem;
	}
	.text__cover2 p {
		font-size: 0.8rem;
	}
	.cover {
		margin-top: 50px;
	}
	.image__cover .uno img {
		display: none;
	}
	.image__cover .cinco img {
		height: 440px;
	}
	.text__cover {
		padding-right: 80px;
	}
	.image__cover .cuatro img {
		display: none;
	}
	.image__cover .dos img {
		width: 150px;
	}
	.text-wrapper .letters span {
		font-size: 1rem;
	}
	.container__card-primary2 .text__card-primary2 h1 {
		font-size: 30px;
	}
}

@media screen and (max-width: 767px) {
	.menu {
		position: absolute;
		top: 0;
		right: -250px;
		background: #f5f5f5;
		width: 250px;
		height: 100vh;
		padding: 18px;
		z-index: 1000;
		transition: all 300ms;
		border-radius: 20px 0px 0px 20px;
	}
	.info-card {
		flex-direction: column;
	}
	.text__card-primary_t {
		max-width: 500px;
		width: 100%;
	}
	#developer-image {
		width: 185px;
	}

	.text__card-primary_t h1 {
		font-size: 30px;
	}

	.menu .socialMedia a {
		margin-top: 20px;
	}
	.menu .socialMedia img {
		margin-top: 20px;
		width: 30px;
	}

	.menu ul {
		flex-direction: column;
	}
	.menu ul li a {
		list-style: none;
		margin-left: 6px;
	}
	.menu ul li a {
		color: #bebebe;
	}
	.menu .btn-abrir {
		position: absolute;
		top: 75%;
		margin-left: 15%;
	}
	.back_menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.5);
		z-index: -11100;
		display: none;
		transition: all 10000ms;
	}
	.pop-up-title {
		display: none;
	}

	.bars__menu {
		display: block;
		z-index: 2000;
	}

	.menu__active {
		right: -1px;
	}
	.back_active {
		display: block;
	}
	.ml6 .text-wrapper span {
		font-size: 0.8rem;
	}
	.sub-content h2 {
		font-size: 32px;
	}
	.formulario img {
		width: 30px;
		margin-left: 20px;
	}
	.fab {
		display: none;
	}
	.fab-options {
		display: none;
	}
	.image-container {
		position: relative;
		display: inline-block;
	}

	.image-container img {
		filter: blur(5px);
		display: block;
	}

	.image-container .overlay-text {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: white;
		font-size: 24px;
		font-weight: bold;
		text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
	}

	.redes-sociales1 {
		flex-direction: column;
	}

	.container__card-primary2 .text__card-primary2 h1 {
		font-size: 30px;
	}
	.container__cover .text__cover {
		padding: 5px;
	}
	.container__cover img {
		width: 350px;
		padding: 5px;
	}
	.container__cover .text__cover h1 {
		font-size: 40px;
	}

	.text__card-primary {
		max-width: 800px;
		width: 100%;
	}

	.image__about {
		max-width: 300px;
		width: 70%;
	}

	.image__about img {
		width: 135px;
	}
	.container__banner {
		max-width: 600px;
		width: 100%;
	}

	.container__banner .icon #icon_heart {
		max-width: 200px;
		width: 100%;
		margin-top: 350px;
	}

	.container__banner1 {
		display: none;
	}

	.container__banner1 .icon1 #icon_heart1 {
		margin-top: 1150px;
	}

	.footer {
		width: 100%;
	}
	.footer-container {
		width: 100%;
		justify-content: space-between;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.content-foo {
		font-size: 20px;
		margin-top: 50px;
	}
	#foo p {
		font-size: 22px;
	}
	#foo p br {
		display: none;
	}
	.content-foo a {
		font-size: 20px;
		margin-top: 10px;
	}
	.input-box > input {
		letter-spacing: 0;
		font-size: 10px;
	}
	.data > p {
		font-size: 0.65rem;
	}
	.data > p > i {
		color: #2ddaff;
		margin-right: 4px;
		font-size: 12px;
	}

	.banner .text h2 {
		font-size: 25px;
		background: rgba(0, 0, 0, 0.628);
		padding: 10px;
		margin-left: 5px;
		border-radius: 10px;
		text-align: center;
	}
	.image__cover {
		display: none;
	}
	.redes-sociales1 {
		flex-direction: column;
	}
	.image__about {
		flex-direction: column;
	}
	.image__about img {
		height: 200px;
		width: 200px;
	}
	.text__about h1 {
		font-size: 20px;
	}
	.container__card-primary .text__card-primary {
		max-width: 500px;
		width: 100%;
	}
	.container__card-primary .text__card-primary h1 {
		font-size: 30px;
	}
	.container__card-primary2 .text__card-primary2 h1 {
		font-size: 30px;
	}
	.banner .text h2 {
		font-size: 22px;
		background: rgba(0, 0, 0, 0.628);
		padding: 10px;
		border-radius: 10px;
		text-align: center;
	}

	.banner {
		width: 95%;
		margin-left: 10px;
		height: 300px;
	}
	.image__cover {
		display: none;
	}
	.redes-sociales1 {
		display: none;
	}
	.image__about {
		flex-direction: column;
	}
	.text__about h1 {
		font-size: 20px;
	}
	.container__card-primary .text__card-primary {
		max-width: 500px;
		width: 100%;
	}
	.container__card-primary .text__card-primary h1 {
		font-size: 30px;
	}
	.container__card-primary2 .text__card-primary2 {
		max-width: 500px;
		width: 100%;
	}
	.banner .text h2 {
		font-size: 20px;
		background: rgba(0, 0, 0, 0.628);
		padding: 10px;
		border-radius: 10px;
		text-align: center;
	}

	.banner {
		width: 95%;
		margin-left: 10px;
		height: 300px;
	}
	.copyrigth .redes-sociales1 {
		flex-direction: column;
	}
	.redes-sociales1 {
		flex-direction: column;
	}

	.copyrigth h2 {
		font-size: 30px;
		text-align: center;
	}
	.container__cover .text__cover h1 {
		font-size: 39px;
		text-align: center;
	}
	#icon_heart {
		display: none;
	}
	.about {
		flex-direction: column;
	}
	.text__about {
		margin-bottom: 10px;
	}

	.about .text__about p {
		font-size: 16px;
	}
	.about .image__about img {
		width: 80%;
		height: 60%;
	}
	.Btn {
		display: none;
	}
	.botonn {
		display: none;
	}
	.box-info > h1 {
		font-size: 16px;
	}
}
dialog {
	position: relative;
	border-color: white;
	background: #edbcf8;
	border-radius: 10px;
	margin: 4%;
	padding: 40px;
	width: 800px;
	height: 500px;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}
.button {
	margin-top: 20px;
	width: 100px;
	padding: 15px 20px;
	font-size: 16px;
	background: transparent;
	border: none;
	position: relative;
	color: #f0f0f0;
	z-index: 1;
}

.button::after,
.button::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -99999;
	transition: all 0.4s;
}

.button::before {
	transform: translate(0%, 0%);
	width: 100%;
	height: 100%;
	background: #350257;
	border-radius: 10px;
}

.button::after {
	transform: translate(10px, 10px);
	width: 35px;
	height: 35px;
	background: #ffffff15;
	backdrop-filter: blur(5px);
	border-radius: 50px;
}

.button:hover::before {
	transform: translate(5%, 20%);
	width: 110%;
	height: 110%;
}

.button:hover::after {
	border-radius: 10px;
	transform: translate(0, 0);
	width: 100%;
	height: 100%;
}

.button:active::after {
	transition: 0s;
	transform: translate(0, 5%);
}

#section {
	position: relative;
	background: #161623;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	border: solid 2px white;
}

.box {
	position: relative;
	min-width: 350px;
	min-height: 400px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(25px);
	border-radius: 10px;
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	z-index: 10;
	padding: 20px;
}

.box h3 {
	color: #fff;
	margin-bottom: 20px;
}

.box .list {
	position: relative;
	display: flex;
	padding: 10px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	margin: 10px 0;
	cursor: pointer;
	transition: 0.5s;
	overflow: hidden;
}

.box .list:hover {
	background: #fff;
	box-shadow: -15px 30px 50px rgba(0, 0, 0, 0.5);
	transform: scale(1.15) translateX(-30px) translateY(15px);
	z-index: 1000;
}

.box .list .imgBX {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 10px;
}

.box .list .imgBX img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box .list .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
}

/* .box .list .content:hover{
    color: #000;
} */
.box .list .content .rank {
	position: absolute;
	right: -70px;
	color: #9145f4;
	transition: 0.5s;
	font-size: 2em;
}

.box .list .content .rank small {
	font-weight: 500;
	opacity: 0.3;
}

.box .list:hover .content .rank {
	right: 20px;
}

.box .list .content h4 {
	line-height: 1.2em;
	font-weight: 500;
	transition: 0.5s;
}

.box .list .content p {
	font-size: 0.75em;
	transition: 0.5s;
}

.box .list:hover .content h4,
.box .list:hover .content p {
	color: #161623;
}
