/* Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Base */
html, body {
	height: 95%;
	background: #000;
	color: #1FFF0D;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wrap {
	min-height: 99%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
}

/* Card */
.card {
	width: 100%;
	max-width: 520px;
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
	border-radius: 14px;
	padding: clamp(20px, 4vw, 36px);
	text-align: center;
	backdrop-filter: blur(6px);
	transition: transform .18s ease, box-shadow .18s ease;
	-webkit-tap-highlight-color: transparent;
	border: 2px solid rgba(31,255,13,0.18);
	box-shadow: 0 8px 30px rgba(31,255,13,0.06);
}

.card:active {
	transform: translateY(2px);
}

/* Brand */
.brand {
	font-family: 'Exo 2', sans-serif;
	font-weight: 800;
	color: #1FFF0D;
	font-size: clamp(48px, 12vw, 120px);
	transform: scaleX(1.32);
	display: inline-block;
	letter-spacing: -0.02em;
	text-shadow:
		0 0 8px rgba(31,255,13,0.45),
		0 0 20px rgba(31,255,13,0.18);
}

.brand span {
	display: inline-block;
}

/* Letras individuales */
.A { transform: scaleX(1.2); }
.l { transform: scaleX(1); transform: scaleY(1.3); margin-left: 0.05em; }
.j { transform: scaleX(1.25) translateY(0.02em); transform: scaleY(1.3); margin-left: -0.02em; }
.a { transform: scaleX(1.2); margin-right: -0.06em; }
.T { transform: scaleX(1.4); transform: scaleY(1.2); margin-right: -0.02em; }
.I { transform: scaleX(1.2); transform: scaleY(1.2); }

/* Separator */
.sep {
	height: 5px;
	width: 80%;
	margin: 0 auto clamp(14px, 3vw, 22px);
	background: linear-gradient(90deg, transparent, rgba(31,255,13,0.14), transparent);
	border-radius: 999px;
}

/* Contacts */
.contacts,
.contacts * {
	font-family: 'Courier Prime', monospace !important;
}

.contacts {
	display: grid;
	gap: clamp(1px, 2.5vw, 1px);
	justify-items: center;
}

.contact-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 10px;
	min-width: 220px;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	color: inherit;
	transition: background .12s ease, transform .12s ease;
}

.contact-item:hover {
	background: rgba(0,255,102,0.03);
	box-shadow: 0 6px 18px rgba(0,255,102,0.03);
}

.contact-item:active {
	transform: translateY(1px);
}

.contact-item:focus {
	outline: 3px solid rgba(0,255,102,0.12);
	outline-offset: 3px;
}

.ico {
	width: 1.05em;
	height: 1.05em;
	display: inline-block;
	vertical-align: middle;
	filter: drop-shadow(0 0 6px rgba(0,255,102,0.18));
	flex-shrink: 0;
}

.contact-text {
	font-size: clamp(15px, 3.2vw, 18px);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.contact-text_site {
	font-size: clamp(12px, 3.2vw, 18px);
	font-weight: 300;
	letter-spacing: 0.01em;
}

.contact-name {
	font-size: clamp(18px, 4.5vw, 24px);
	font-weight: 700;
	font-family: 'Courier Prime', monospace;
	color: #1FFF0D;
}

.sub {
	font-size: clamp(12px, 2.4vw, 14px);
	color: rgba(0,255,102,0.85);
	opacity: 0.92;
}

.descr_servicios {
	margin-top: 16px;
}

/* Media Queries */
@media (max-width:420px) {
	.card {
		border-radius: 12px;
		padding: 18px;
	}
	.contact-item {
		min-width: 180px;
		padding: 12px;
	}
}

/* Cookie popup */
#cookie-popup {
	position: fixed;
	inset: auto 0 0 0;
	width: 100%;
	height: 33vh;
	min-height: 220px;
	background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.92));
	color: #1FFF0D;
	border-top: 2px solid rgba(31,255,13,0.18);
	box-shadow: 0 -12px 40px rgba(31,255,13,0.06);
	display: none;
	padding: clamp(16px, 2.5vw, 28px);
	z-index: 9999;
	font-family: 'Courier Prime', monospace;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#cookie-popup .inner {
	max-width: 1100px;
	margin: 0 auto;
	height: 100%;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 6px clamp(12px, 3vw, 28px);
}

#cookie-popup .msg {
	text-align: left;
}

#cookie-popup .msg h3 {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 3.5vw, 22px);
	color: #1FFF0D;
	margin-bottom: 6px;
	text-shadow: 0 0 6px rgba(31,255,13,0.16);
}

#cookie-popup .msg p {
	font-size: clamp(14px, 2.6vw, 16px);
	color: rgba(31,255,13,0.95);
	line-height: 1.35;
	opacity: 0.95;
}

#cookie-popup .actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

#cookie-popup .actions button {
	font-family: 'Courier Prime', monospace;
	padding: 10px 18px;
	border-radius: 10px;
	border: 2px solid rgba(31,255,13,0.18);
	background: transparent;
	color: #1FFF0D;
	cursor: pointer;
	font-weight: 700;
	min-width: 140px;
	transition: transform .12s ease, background .12s ease;
}

#cookie-popup .actions button.primary {
	background: rgba(0,255,102,0.08);
	border-color: #1FFF0D;
}

#cookie-popup .actions button:hover {
	background: rgba(0,255,102,0.13);
}

#cookie-popup .actions button:active {
	transform: translateY(2px);
}

@media (max-width: 880px) {
	#cookie-popup .inner {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 14px;
	}
	#cookie-popup .actions {
		flex-direction: row;
		justify-content: center;
		width: 100%;
	}
	#cookie-popup .actions button {
		min-width: 120px;
		flex: 1 1 auto;
	}
	#cookie-popup {
		height: 40vh;
	}
}

/* Footer */
footer.site-footer {
	text-align: center;
	padding: 18px;
	font-family: 'Courier Prime', monospace;
	color: rgba(31,255,13,0.55);
	font-size: 14px;
	background: transparent;
}
