:root {
    --primary-color: #f15a24; /* Naranja Interacto */
    --secondary-color: #ffffff;
    --bg-dark: #0a0a0b;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent-glow: rgba(241, 90, 36, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    z-index: 1;
}

.container {
    padding: 2rem;
    text-align: center;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    animation: float 4s ease-in-out infinite;
}

.logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

.title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.title span {
    color: var(--primary-color);
}

.description {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 0 rgba(241, 90, 36, 0.4);
    animation: pulse 1.5s infinite;
}

.contact-section {
    margin-bottom: 3rem;
}

.contact-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 90, 36, 0.5);
    background-color: #ff6a3a;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    z-index: 2;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(241, 90, 36, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(241, 90, 36, 0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    .footer {
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
}
