:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff6b00;
    --accent-color: #ff6b00;
    --text-color: #ffffff;
    --light-bg: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
}

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

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    min-height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    z-index: 10;
    padding-bottom: 6rem;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

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

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    animation: floatLogo 3s ease-in-out infinite;
    background: #ff6b00;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

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

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.features {
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.feature-section {
    margin-bottom: 2rem;
    text-align: left;
}

.feature-section:last-child {
    margin-bottom: 0;
}

.feature-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.coming-soon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    background: rgba(255, 107, 0, 0.1);
}

.location-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 107, 0, 0.2);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.location-icon {
    width: 24px;
    height: 24px;
}

.location-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: rgba(255, 107, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 0, 0.15);
}

.countdown-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

.social-links {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

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

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.whatsapp-cta svg {
    width: 32px;
    height: 32px;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    background: #e65c00;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.whatsapp-cta span {
    white-space: nowrap;
}

.footer {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: var(--white);
    opacity: 0.5;
}

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

    h1 {
        font-size: 2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .feature-section {
        padding: 0 1rem;
    }

    body {
        padding: 1rem 0;
        min-height: 100%;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .whatsapp-cta {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .whatsapp-cta svg {
        width: 24px;
        height: 24px;
    }
} 