@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #000000;/*linear-gradient(45deg, #6C6B6B, #000000);*/
}

img {
	max-width: 100%;
}

#btn-mas {
	display: none;
}

.social {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

.redes a, .icon-plus {
	display: block;
	text-decoration: none;
	background: #6ED3DD;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
	transition: all 500ms ease;
}

.redes a:hover {
	background-color: #fff;
	color: #6ED3DD;
}

.redes a {
	margin-bottom: -15px;
	opacity: 0;
	visibility: hidden; 
}

#btn-mas:checked ~ .redes a {
	margin-bottom: 10px;
	opacity: 1;
	visibility: visible;
}

.icon-plus {
	cursor: pointer;
	background-color: #1DA1AE;
	font-size: 18px;
}

#btn-mas:checked ~ .btn-mas .icon-plus {
	transform: rotate(137deg);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.header {
	background-color: #000000;
}

.menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	color: #6ED3DD;
	font-size: 25px;
	font-weight: 800;
	text-transform: uppercase;
}

.menu .navbar ul {
	display: flex;
}

.menu .navbar ul li a {
	font-size: 18px;
	padding: 0 20px;
	color: #FFFFFF;
	display: block;
	font-weight: 600;
}

.menu .navbar ul li a:hover {
	color: #6ED3DD;
}

#menu {
	display: none;
}

.menu-icono {
	width: 25px;
}

.menu label {
	cursor: pointer;
	display: none;
}

.services {
	margin-top: 20px;
}

/* Efecto Neón Mejorado */
.neon {
	padding: 50px;
    font-weight: 400;
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 15px #0ff,
        0 0 20px #0ff,
        0 0 30px #0ff,
        0 0 40px #0ff,
        0 0 50px #0ff;
    animation: flicker 300s infinite alternate; /* Se repite automáticamente */
    filter: brightness(1.2); /* Aumenta la claridad sin perder calidad */
}

/* Ajuste del parpadeo */
@keyframes flicker {
    0%, 100% { 
        opacity: 2;
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px #0ff,
            0 0 20px #0ff,
            0 0 30px #0ff,
            0 0 40px #0ff,
            0 0 50px #0ff;
    }
    20% { opacity: 0.8; }
    40% { opacity: 0.6; }
    60% { opacity: 0.9; }
    80% { opacity: 0.5; }
}

/* Efecto de retraso en algunas letras */
.neon span {
    animation: flicker 3s infinite alternate; /* Se repite cada 3 segundos */
}

.neon .delay1 {
    animation-delay: 0.5s;
}

.neon .delay2 {
    animation-delay: 1s;
}

.neon .delay3 {
    animation-delay: 1.5s;
}


.services-container1 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
	padding: 50px 20px; 
	margin-top: -75px;
}

.services-container1 .card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 350px;
	height: 300px;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
	transition: 0.5s;
	margin-top: 100px;
}

.services-container1 .card:hover {
	height: 400px;
}

.services-container1 .card .imgBx {
	position: absolute;
	top: 20px;
	width: 300px;
	height: 180px;
	background: #333;
	border-radius: 12px;
	overflow: hidden;
	transition: 0.5s;
}

.services-container1 .card:hover .imgBx {
	top: -100px;
	scale: 0.75;
	box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.services-container1 .card .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-container1 .card .content {
	position: absolute;
	width: 100%;
	padding: 0 30px;
	height: 70px;
	overflow: hidden;
	text-align: center;
	top: 212px;
	transition: 0.5s;
}

.services-container1 .card:hover .content {
	top: 100px;
	height: 250px;
}

.services-container1 .card .content h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

.services-container1 .card .content p {
	color: #333;
	font-size: 1.05em;
}

.services-container1 .card .content a {
	position: relative;
	top: 15px;
	display: inline-block;
	padding: 12px 25px;
	background: #6ED3DD;
	color: #FFFFFF;
	font-weight: 500;
	text-decoration: none;
	border-radius: 12px;
}

.services-container1 .card .content a:hover {
	position: relative;
	top: 15px;
	display: inline-block;
	padding: 12px 25px;
	background: #1DA1AE;
	color: #FFFFFF;
	font-weight: 500;
	text-decoration: none;
	border-radius: 12px;
}

.services-container2 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
	padding: 50px 20px;
	margin-top: -75px;
}

.services-container2 .card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 350px;
	height: 300px;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
	transition: 0.5s;
	margin-top: 100px;
}

.services-container2 .card:hover {
	height: 400px;
}

.services-container2 .card .imgBx {
	position: absolute;
	top: 20px;
	width: 300px;
	height: 180px;
	background: #333;
	border-radius: 12px;
	overflow: hidden;
	transition: 0.5s;
}

.services-container2 .card:hover .imgBx {
	top: -100px;
	scale: 0.75;
	box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.services-container2 .card .imgBx img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-container2 .card .content {
	position: absolute;
	width: 100%;
	padding: 0 30px;
	height: 70px;
	overflow: hidden;
	text-align: center;
	top: 212px;
	transition: 0.5s;
}

.services-container2 .card:hover .content {
	top: 130px;
	height: 250px;
}

.services-container2 .card .content h3 {
	font-size: 1.5rem;
	font-weight: 700;
}

.services-container2 .card .content p {
	color: #333;
	font-size: 1.05em;
}

.services-container2 .card .content a {
	position: relative;
	top: 15px;
	display: inline-block;
	padding: 12px 25px;
	background: #6ED3DD;
	color: #FFFFFF;
	font-weight: 500;
	text-decoration: none;
	border-radius: 12px;
}

.services-container2 .card .content a:hover {
	position: relative;
	top: 15px;
	display: inline-block;
	padding: 12px 25px;
	background: #1DA1AE;
	color: #FFFFFF;
	font-weight: 500;
	text-decoration: none;
	border-radius: 12px;
}

.footer {
	border-top: 1px solid #FFFFFF;
	padding: 20px 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-content ul {
	display: flex;
}

.footer-content ul li a {
	display: block;
	padding: 10px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 600;
}

.footer-content ul li a:hover {
	color: #6ED3DD;
}

.credito {
	color: #000000;
	font-size: 5px;
}

@media(max-width: 991px) {

	.menu {
		padding: 20px;
		position: relative;
	}

	.menu label {
		display:  initial;
	}

	.menu .navbar {
		position: absolute;
		top: 100%;
		left: 10px;
		right: 10px;
		margin-top: 10px;
		backdrop-filter: blur(25px);
		-webkit-backdrop-filter: blur(70px);
		background-color: rgba(255, 255, 255, 0.3);
		display: none;
		border-radius: 5px;
		min-height: 400px;
		flex-direction: column;
		z-index: 9999;
	}
	
	.menu .navbar ul {
		flex-direction: column;
	}

	.menu .navbar ul li {
		width: 100%;
		padding: 35px 0;
		text-align: center;
	}

	.menu .navbar ul li a {
		color: #FFFFFF;
	}

	.menu .navbar ul li a:hover {
		color: #1DA1AE;
	}

	#menu:checked ~ .navbar {
		display: initial;
		z-index: 3;
	}

	.footer {
		padding: 30px;
		text-align: center;
	}

	.footer-content {
		flex-direction: column;
	}

	.footer-content ul {
		flex-direction: column;
	}

}

@media(max-width: 500px) {
	
	.neon {
		font-size: 2rem;
	}

}