* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	color: #333;
	background: #f7f7f7;
}

/*--------------------- NAVBAR ---------------------*/
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: transparent; /* transparente al inicio */
	color: #fff;
	padding: 20px 40px;
	height: 110px;
	display: flex;
	align-items: center;
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar.shrink {
	background: rgba(17, 17, 17, 0.75);
	backdrop-filter: blur(10px);
	padding: 5px 40px;
	height: 65px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Contenedor interno */
.navbar-inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* --- LOGO GRANDE --- */
.logo-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo {
	height: 55px;
	transition: all 0.4s ease;
	transform: translateX(0);
}

.navbar.shrink .logo {
	height: 40px;
	transform: translateX(-120px);
}

nav {
	flex: 2;
	display: flex;
	justify-content: center;
	gap: 25px;
}

/* Navbar links */
nav a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 17px;
	position: relative;
	padding: 5px 2px;
	transition: all 0.3s ease;
}

nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0%;
	height: 2px;
	background: #ffffff;
	transition: width 0.3s ease;
	border-radius: 50px;
}

nav a:hover {
	color: #fff;
	transform: translateY(-2px);
}

nav a:hover::after {
	width: 100%;
}

/*--------------------- HERO ---------------------*/
.hero {
	position: relative;
	height: 90vh;
	background: url("https://picsum.photos/1600/900") center/cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	overflow: hidden;
}

/* Overlay elegante */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(2px);
	opacity: 0;
	animation: heroFadeIn 1.5s ease forwards;
}

/* Animación de entrada del texto */
.hero h1,
.hero p {
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	animation: heroTextUp 1.2s ease forwards;
}

.hero h1 {
	animation-delay: 0.3s;
	font-size: 3.2rem;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

.hero p {
	animation-delay: 0.6s;
	font-size: 1.3rem;
	max-width: 700px;
	line-height: 1.4;
}

/* Animaciones */
@keyframes heroFadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes heroTextUp {
	0% {
		opacity: 0;
		transform: translateY(35px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Parallax suave al hacer scroll */
.hero {
	background-attachment: fixed;
}

@media (max-width: 900px) {
	.hero {
		background-attachment: scroll; /* Mejor para móviles */
	}

	.hero h1 {
		font-size: 2.3rem;
	}

	.hero p {
		font-size: 1.1rem;
		padding: 0 20px;
	}
}

/*---------------------ABOUT SECTION---------------------*/
.about-section {
	padding: 120px 80px;
	display: flex;
	justify-content: center;
	text-align: center;
	background: #fafafa;
}

.about-content {
	max-width: 900px;
	line-height: 1.8;
}

.about-section h2 {
	font-size: 2.8rem;
	margin-bottom: 25px;
	color: #111;
	letter-spacing: -0.5px;
}

.about-section p {
	font-size: 1.2rem;
	color: #444;
}

/* GENERAL SECTION */
.section {
	padding: 100px 60px;
	text-align: center;
}

/* ----- HOW IT WORKS SECTION ----- */

.how-slide-content {
	width: 900px;
	max-width: 95%;
	height: 500px;
	background: white;
	padding: 40px;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	justify-content: flex-start;
	text-align: left;
	gap: 40px;
	align-items: center;
	opacity: 1;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.how-slide-content.fade-out {
	opacity: 0;
	transform: translateY(20px);
}

.how-slide-content.fade-in {
	opacity: 1;
	transform: translateY(0px);
}

.how-section {
	padding: 50px 80px;
	text-align: center;
	background: #fafafa;
}

.how-title {
	font-size: 2.8rem;
	margin-bottom: 40px;
	color: #111;
}

/* TOP STEP BUTTONS */
.how-steps-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.how-step-btn {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid #d7d7d7;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease;
	background: white;
}

.how-step-btn i {
	font-size: 26px;
	color: #111;
}

.how-step-btn:hover {
	border-color: #111;
}

.how-step-btn.active {
	background: #111;
	border-color: #111;
}

.how-step-btn.active i {
	color: #fff;
}

/*--------------------- CAROUSEL ---------------------*/
.how-carousel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.how-slide {
	width: 900px;
	max-width: 95%;
	display: none;
	background: white;
	border-radius: 20px;
	padding: 40px;
	display: flex;
	gap: 40px;
	align-items: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease;
}

.how-slide.active {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}

.how-text h3 {
	color: #b48b25;
	margin-bottom: 5px;
	font-size: 1rem;
}

.how-text h2 {
	font-size: 2rem;
	margin-bottom: 15px;
	color: #111;
}

.how-text p {
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

.how-btn {
	background: #111;
	color: #f4f4f4;
	padding: 12px 26px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	transition: 0.3s;
}

.how-text .how-btn {
	background: #111;
	color: white;
	padding: 12px 26px;
	border: none;
	cursor: pointer;
	font-weight: 600;
}

.how-btn:hover {
	background: #124c6c;
}

.how-img {
	width: 45%;
	border-radius: 16px;
}

/* ARROWS */
.how-arrow {
	background: #f4f4f4;
	border: 2px solid #dfe6ee;
	padding: 12px 18px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	transition: 0.3s;
	width: 70px;
	height: 70px;
}

.how-arrow:hover {
	border-color: #111;
	color: #111;
}

.how-arrow.prev {
	left: -60px;
}

.how-arrow.next {
	right: -60px;
}

/*--------------------- SERVICES ---------------------*/
#services {
	text-align: center;
	padding: 40px 40px;
	background: #fafafa;
}

#services h2 {
	font-size: 2.6rem;
	margin-bottom: 50px;
	color: #111;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	max-width: 1300px;
	margin: 0 auto;
}

.service-card {
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	text-align: left;
}

.service-card img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}

.service-card h3 {
	margin: 20px 20px 10px;
	font-size: 1.3rem;
	color: #111;
	font-weight: 600;
}

.service-card p {
	margin: 0 20px 25px;
	font-size: 1rem;
	color: #5a5a5a;
	line-height: 1.4;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ---------- PLAN SECTION ---------- */
.plan-section {
	position: relative;
	padding: 80px 40px;
	color: #111;

	background: url("https://picsum.photos/1600/900?blur=2") center/cover
		no-repeat;
	background-attachment: fixed;
}

.plan-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(17, 17, 17, 0.75);
	backdrop-filter: blur(2px);
	z-index: 1;
}

.plan-container {
	position: relative;
	z-index: 2;
}

.plan-section * {
	position: relative;
	z-index: 1;
}

.plan-section h2 {
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 80px;
	color: white;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.plan-section.visible h2 {
	opacity: 1;
	transform: translateY(0);
}

.plan-timeline {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

/* Cada ítem */
.plan-item {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	padding: 40px 30px;
	box-shadow: 0 4px 20px rgba(17, 17, 17, 0.08),
		0 1px 3px rgba(17, 17, 17, 0.05);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	position: relative;
	overflow: hidden;
}

.plan-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(17, 17, 17, 0.02) 0%,
		transparent 50%
	);
	z-index: -1;
}

.plan-item:nth-child(odd) {
	transform: translateX(-40px) translateY(40px) scale(0.95);
}

.plan-item:nth-child(even) {
	transform: translateX(40px) translateY(40px) scale(0.95);
}

.plan-section.visible .plan-item {
	opacity: 1;
	transform: translateX(0) translateY(0) scale(1);
}

.plan-item:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 15px 30px rgba(17, 17, 17, 0.12),
		0 5px 15px rgba(17, 17, 17, 0.08);
}

/* Contenedor de ícono y contenido */
.plan-item-content {
	display: flex;
	align-items: flex-start;
	gap: 25px;
}

.plan-icon {
	min-width: 70px;
	height: 70px;
	border-radius: 16px;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f4f4f4;
	font-size: 24px;
	box-shadow: 0 6px 15px rgba(17, 17, 17, 0.2);
	transition: all 0.5s ease;
	position: relative;
	overflow: hidden;
}

.plan-icon::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.15) 0%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.plan-item:hover .plan-icon {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 20px rgba(17, 17, 17, 0.3);
}

.plan-item:hover .plan-icon::before {
	opacity: 1;
}

.plan-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #111;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.plan-content p {
	font-size: 1.05rem;
	color: #333;
	line-height: 1.6;
	max-width: 100%;
}

.plan-item:hover .phase-number {
	transform: scale(1.1);
}

.plan-item::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #111;
	transition: width 0.8s ease;
}

.plan-item:hover::after {
	width: 100%;
}

@media (max-width: 992px) {
	.plan-timeline {
		grid-template-columns: 1fr;
		max-width: 700px;
	}

	.plan-item:nth-child(odd),
	.plan-item:nth-child(even) {
		transform: translateY(40px) scale(0.95);
	}

	.plan-section.visible .plan-item {
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 768px) {
	.plan-section {
		padding: 80px 20px;
	}

	.plan-section h2 {
		font-size: 2.5rem;
		margin-bottom: 50px;
	}

	.plan-item {
		padding: 30px 20px;
	}

	.plan-item-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.plan-icon {
		align-self: center;
	}
}

/* Animaciones para los elementos individuales con retrasos */
.plan-item:nth-child(1) {
	transition-delay: 0.1s;
}
.plan-item:nth-child(2) {
	transition-delay: 0.3s;
}
.plan-item:nth-child(3) {
	transition-delay: 0.5s;
}
.plan-item:nth-child(4) {
	transition-delay: 0.7s;
}

/* Efectos de acento sutil */
.accent-line {
	position: absolute;
	width: 80px;
	height: 2px;
	background: #111;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	z-index: 0;
}

.accent-line:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
	width: 120px;
}

.accent-line:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 120px;
}

/*--------------------- PROJECTS ---------------------*/

.projects-section {
	padding: 40px 40px;
	text-align: center;
	background: #fafafa;
}

.projects-section h2 {
	font-size: 2.6rem;
	color: #111;
	margin-bottom: 60px;
}

/* GRID */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 35px;
	max-width: 1300px;
	margin: 0 auto;
}

/* PROJECT CARD */
.project-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.project-card.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Imagen */
.project-card img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform 0.6s;
}

/* Hover elegante */
.project-card:hover img {
	transform: scale(1.08);
	filter: brightness(0.85);
}

/* Overlay info */
.project-info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
	color: white;
	text-align: left;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.45s ease;
}

.project-card:hover .project-info {
	opacity: 1;
	transform: translateY(0);
}

.project-info h3 {
	font-size: 1.4rem;
	margin-bottom: 5px;
	font-weight: 600;
}

.project-info p {
	font-size: 0.95rem;
}

/*--------------------- CONTACT ---------------------*/
.contact-section {
	background: #fafafa;
	padding: 100px 80px;
}

/* GRID LAYOUT */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1100px;
	margin: 0 auto;
	align-items: start;
}

/* LEFT SIDE INFO */
.contact-info {
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.contact-info h2 {
	font-size: 2.8rem;
	color: #111;
	margin-bottom: 20px;
}

.contact-info p {
	color: #333;
	font-size: 1.05rem;
	line-height: 1.5;
	margin-bottom: 25px;
	max-width: 450px;
}

.info-block {
	margin-bottom: 25px;
}

.info-block h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #111;
	margin-bottom: 6px;
}

#phone-box {
	display: inline-block;
	background: #111;
	color: white;
	padding: 10px 20px;
	margin-top: 5px;
}

.contact-info a {
	color: #111;
	text-decoration: none;
	transition: opacity 0.2s;
}

.contact-info a:hover {
	opacity: 0.8;
}

/* RIGHT SIDE FORM */
.contact-form-wrapper {
	background: white;
	padding: 50px 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 15px;
	border-radius: 6px;
	border: 1px solid #ddd;
	background: #f8f8f8;
	font-size: 1rem;
	font-family: inherit;
	outline: none;
	transition: border 0.3s;
}

.contact-form textarea {
	height: 140px;
	resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #111;
}

/* BUTTON */
.contact-form button {
	background: #111;
	color: white;
	border: none;
	border-radius: 6px;
	padding: 14px;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-form button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.contact-container {
		grid-template-columns: 1fr;
	}
}

/* --------------------- LANGUAGE DROPDOWN --------------------- */

.lang-dropdown {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
}

.lang-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.25s ease;
	color: white;
	font-size: 14px;
}

.lang-btn:hover {
	background: rgba(255, 255, 255, 0.15);
}

.flag-icon {
	width: 22px;
	height: 16px;
	border-radius: 3px;
}

.arrow {
	font-size: 12px;
	opacity: 0.8;
}

/* Menu desplegable */
.lang-menu {
	position: absolute;
	top: 45px;
	right: 0;
	width: 140px;
	background: rgba(20, 20, 20, 0.9);
	backdrop-filter: blur(6px);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
	padding: 8px 0;
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
	transition: all 0.25s ease;
	z-index: 999;
}

.lang-menu.show {
	opacity: 1;
	transform: translateY(0px);
	pointer-events: auto;
}

.lang-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	color: white;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s ease;
}

.lang-option:hover {
	background: rgba(255, 255, 255, 0.12);
}

.lang-option img {
	width: 22px;
	height: 16px;
	border-radius: 3px;
}

/* --- SCROLL ANIMATION --- */
.scroll-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scroll-animate.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------------------- FOOTER ---------------------- */

.footer {
	background: #111;
	color: #eee;
	padding: 70px 40px 30px;
	margin-top: 80px;
	position: relative;
	overflow: hidden;
}

/* SUTIL ANIMACIÓN DE FONDO (DEGRADADO EN MOVIMIENTO) */
.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at top left, #1e1e1e, #111 60%);
	animation: footerGlow 12s infinite alternate ease-in-out;
	opacity: 0.35;
}

@keyframes footerGlow {
	0% {
		transform: translate(0, 0) scale(1);
	}
	100% {
		transform: translate(-15%, -10%) scale(1.15);
	}
}

/* GRID */
.footer-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	z-index: 2;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-container.visible {
	opacity: 1;
	transform: translateY(0);
}

/* LOGO */
.footer-logo {
	width: 160px;
	margin-bottom: 15px;
	filter: brightness(1) contrast(1.1);
}

/* TEXT */
.footer-text {
	line-height: 1.5;
	max-width: 270px;
	color: #ddd;
}

/* TITLES */
.footer-title {
	color: #fff;
	font-size: 1.2rem;
	margin-bottom: 15px;
	font-weight: bold;
	letter-spacing: 0.5px;
}

/* LINKS */
.footer-links li {
	list-style: none;
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
	color: #fff;
	transform: translateX(6px);
}

/* INFO */
.footer-info {
	color: #ccc;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

/* BACK TO TOP BUTTON */
.back-to-top {
	background: #222;
	border: 1px solid #444;
	color: #eee;
	padding: 12px 20px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 150px;
}

.back-to-top:hover {
	background: #fff;
	color: #111;
	transform: translateY(-4px);
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
	text-align: center;
	margin-top: 40px;
	color: #777;
	font-size: 0.85rem;
	z-index: 2;
	position: relative;
}

/*-------CONTACT-------*/
.connect-section {
	position: relative;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;

	background: url("https://picsum.photos/1600/900?random=88") center/cover
		no-repeat;
	background-attachment: fixed; /* efecto tipo hero */
	overflow: hidden;
}

/* Overlay como en el hero */
.connect-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(2px);
	z-index: 1;
}

/* CONTENIDO QUE SÍ SE ANIMA AL HACER SCROLL */
.connect-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Esta clase ya la maneja tu IntersectionObserver */
.connect-inner.scroll-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.9s ease;
}

.connect-inner.visible {
	opacity: 1;
	transform: translateY(0);
}

.connect-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Texto */
.connect-content h2 {
	font-size: 2.4rem;
	font-weight: 600;
	text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
	margin: 0;
}

.connect-icon {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	color: #111;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.connect-icon:hover {
	background-color: #111;
	color: white;
}
