:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #e63946;
    --secondary-color: #a8dadc;
    --faded-text: #888888;
    --font-family: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 100%;
    height: auto;
    width: 600px; /* Ajuste según necesidad */
    margin-bottom: 2rem;
}

nav .logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.highlight {
    color: var(--accent-color);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--faded-text);
}

.contact-us {
    font-size: 1.2rem;
    color: var(--faded-text);
}

.contact-us a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.contact-us a:hover {
    color: #ff4d5a;
    text-decoration: underline;
}

.cta-group {
    display: flex;
    justify-content: center;
    width: 100%;
}

form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

form input[type="email"] {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

form button:hover {
    background: #ff4d5a;
    transform: translateY(-2px);
}

footer {
    margin-top: 5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--faded-text);
}

@media (max-width: 600px) {
    form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    form input[type="email"] {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .container {
        padding: 1rem;
    }
}
