/* Reset y estilos base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-background: #f5f5f0;
    --color-foreground: #1a1a1a;
    --color-muted: #6b6b6b;
    --color-accent: #2d2d2d;
    --color-border: #e0e0dc;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-foreground);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-foreground);
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 4rem 0;
    position: relative;
}

.content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
}

.description {
    font-size: 1.125rem;
    color: var(--color-muted);
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background-color: var(--color-border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background-color: var(--color-foreground);
    border-radius: 2px;
    animation: progressAnimation 2s ease-out;
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

.progress-text {
    font-size: 0.875rem;
    color: var(--color-muted);
    font-weight: 500;
}

/* Contact Section */
.contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-text {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.contact-link:hover .arrow-icon {
    transform: translate(2px, -2px);
}

/* Decorative Elements */
.decoration {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--color-border);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 40px;
    animation: pulse 4s ease-in-out infinite 0.5s;
}

.circle-3 {
    width: 140px;
    height: 140px;
    top: 80px;
    left: 80px;
    background-color: var(--color-foreground);
    animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-color: var(--color-foreground);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .main {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description {
        text-align: center;
    }

    .progress-bar {
        margin-left: auto;
        margin-right: auto;
    }

    .contact {
        align-items: center;
    }

    .decoration {
        width: 200px;
        height: 200px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 140px;
        height: 140px;
        top: 30px;
        left: 30px;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
        top: 60px;
        left: 60px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .decoration {
        width: 150px;
        height: 150px;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-2 {
        width: 100px;
        height: 100px;
        top: 25px;
        left: 25px;
    }

    .circle-3 {
        width: 50px;
        height: 50px;
        top: 50px;
        left: 50px;
    }
}
