/* Diseño de la página, hecho con <3 por Toño ● junio de 2025 */

:root {
	--bg-primary: #0a0a0a;
	--bg-secondary: #111111;
	--bg-tertiary: #1a1a1a;
	--text-primary: #ffffff;
	--text-secondary: #a0a0a0;
	--accent-primary: #4f46e5;
	--accent-secondary: #6366f1;
	--border-color: #333333;
	--success: #10b981;
	--danger: #ef4444;
	--warning: #f59e0b;
	--nothing-dot: #0fff1b;
	--nothing-glow: rgba(255, 255, 255, 0.6);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	background-color: var(--bg-primary);
	color: var(--text-primary);
	min-height: 100vh;
	line-height: 1.6;
	overflow-y: visible;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #b7b7b7; 
}
 
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
	max-width: 1200px;
	margin: 0 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Header */
header {
	background-color: black;
	border-bottom: 1px solid var(--border-color);
	position: absolute;
	width: 100%;
	height: 60px;
	visibility: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.header-content {
	width: 90svw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-logo {
	height: 30px;
	width: auto;
}

.loguito {
	height: 30px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: 600;
}

.logo-dot {
	width: 12px;
	height: 12px;
	background-color: var(--nothing-dot);
	border-radius: 50%;
	box-shadow: 0 0 120px 20px var(--nothing-glow);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { opacity: 0.8; }
	50% { opacity: 1; box-shadow: 0 0 15px 4px var(--nothing-glow); }
	100% { opacity: 0.8; }
}

nav ul {
	display: flex;
	gap: 30px;
	list-style: none;
}

nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
}

nav a:hover {
	color: var(--text-primary);
}

nav a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-primary);
	transition: width 0.3s;
}

nav a:hover::after {
	width: 100%;
}

.nav-span {
	font-size: 15px;
	font-weight: bold;
}

/* Hero Section */
.hero {
	padding: 100px 0;
	text-align: center;
	position: relative;
	height: 100dvh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero h1 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(90deg, #ffffff, #a0a0a0);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	font-size: 12px;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 20px;
}

.hero-logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 0;
}

.hero-logo {
	height: 200px;
	width: auto;
}

#typewriter {
	white-space: wrap;
	overflow: hidden;
	color: rgb(195, 195, 195);
	padding: 0 20px 40px 20px;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* Animación de burbujas */

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bg-primary);
	z-index: -2;
}

.hero::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150%;
	height: 150%;
	background: radial-gradient(circle at center, 
	rgba(79, 70, 229, 0.25) 0%, 
	transparent 70%);
	transform: translate(-50%, -50%);
	z-index: -1;
	animation: lavaPulse 20s infinite alternate ease-in-out;
}

.lava-bubble {
	position: absolute;
	border-radius: 50%;
	background: rgba(79, 70, 229, 0.15);
	filter: blur(3px);
	animation: floatBubble 15s infinite ease-in-out;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes lavaPulse {
	0% {
	transform: translate(-50%, -50%) scale(1) rotate(0deg);
	opacity: 0.8;
	}
	50% {
	transform: translate(-50%, -50%) scale(1.3) rotate(5deg);
	opacity: 1;
	background: radial-gradient(circle at center, 
		rgba(79, 70, 229, 0.35) 0%, 
		transparent 70%);
	}
	100% {
	transform: translate(-50%, -50%) scale(1.1) rotate(-3deg);
	opacity: 0.9;
	}
}

@keyframes floatBubble {
	0% {
	transform: translate(-50%, -50%) scale(0.8);
	opacity: 0.3;
	}
	50% {
	transform: translate(-50%, -60%) scale(1.2);
	opacity: 0.5;
	}
	100% {
	transform: translate(-50%, -50%) scale(0.8);
	opacity: 0.3;
	}
}

/* ===================== */

.cta-button {
	display: inline-block;
	padding: 14px 32px;
	background-color: var(--accent-primary);
	color: white;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: 1px solid transparent;
	margin: 0;
}

.cta-button:hover {
	background-color: transparent;
	border-color: var(--accent-primary);
	transform: translateY(-2px);
}

/* Features */
.features {
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-title {
	text-align: center;
	font-size: 36px;
	margin-bottom: 60px;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--accent-primary);
	margin: 15px auto 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.feature-card {
	background-color: var(--bg-secondary);
	border-radius: 12px;
	padding: 60px;
	transition: transform 0.3s;
	border: 1px solid var(--border-color);
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-primary);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background-color: var(--bg-tertiary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.feature-complement {
	width: 100%;
	height: 1px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.feature-complement-image {
	opacity: 0;
	height: 400px;
	width: auto;
	filter: brightness(40%);
	transform: translateX(-100px);
	transition: opacity 1s ease, transform 1s ease;
	overflow: hidden;
}

.feature-complement-image.visible {
	opacity: 1;
	transform: translateX(0);
	overflow: hidden;
}

.feature-text {
	position: relative;
	z-index: 1;
}

.feature-icon svg {
	width: 30px;
	height: 30px;
	color: var(--accent-primary);
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.feature-card p {
	color: var(--text-secondary);
}

/* Request Section */
.request-section {
	padding: 80px 0;
	background-color: var(--bg-secondary);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.request-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, transparent 100%);
	z-index: 0;
}

.request-container {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	background-color: var(--bg-tertiary);
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-color);
}

.request-container h2 {
	text-align: center;
	margin-bottom: 30px;
}

.request-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-weight: 500;
	color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	background-color: var(--bg-secondary);
	color: var(--text-primary);
	font-size: 16px;
	transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	padding: 14px;
	background-color: var(--accent-primary);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 800;
font-size: 20px;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 10px;
}

.submit-btn:hover {
	background-color: var(--accent-secondary);
	transform: translateY(-2px);
}

/* Footer */
footer {
	padding: 40px 0;
	background: linear-gradient(
	135deg,
	#060609 0%,
	#16161d 25%,
	#1b182b 50%,
	#1b142a 75%,
	#180d24 100%);
	text-align: center;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.footer-logo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-logos-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	margin: 0 0 30px 0;
	padding: 70px 0 0 0;
}

.footer-copyright-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
}

.footer-logo {
	height: 100px;
	width: auto;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.footer-logos {
	height: 60px;
	width: auto;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.footer-data {
	margin: 0;
	padding: 0;
}

.footer-links {
	display: flex;
	gap: 20px;
	}

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--text-primary);
}

.copyright {
	color: var(--text-secondary);
	font-size: 8px;
	font-weight: 600;
	text-transform: uppercase;
}

/* Modal de éxito */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background-color: var(--bg-secondary);
	border-radius: 12px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border: 1px solid var(--border-color);
}

.modal-icon {
	width: 80px;
	height: 80px;
	background-color: var(--success);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.modal-icon svg {
	width: 40px;
	height: 40px;
	color: white;
}

.modal h2 {
	margin-bottom: 15px;
}

.modal p {
	color: var(--text-secondary);
	margin-bottom: 25px;
}

.modal-close {
	padding: 10px 20px;
	background-color: var(--accent-primary);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
	header {
		padding: 0;
		visibility: hidden;
		position: absolute;
	}

	.hero-logo {
		height: 150px;
	}

	nav ul {
		gap: 15px;
	}

	.hero h1 {
		font-size: 36px;
	}

	.hero p {
		font-size: 14px;
	}

	.feature-card {
		padding: 30px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.feature-complement {
		top: -60px;
	}

	.feature-complement-image {
		height: 150px;
	}

	.request-container {
		padding: 30px 20px;
	}

	.copyright {
		font-size: 5px;
	}
}