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

:root {
    --primary-blue: #1E90FF;
    --primary-purple: #8A2BE2;
    --accent-blue: #4169E1;
    --accent-purple: #9932CC;
    --text-color: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    max-height: 120px;
    max-width: 350px;
    width: auto;
    height: auto;
    
    /* Suavização do fundo */
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Bordas arredondadas */
    border-radius: 25px;
    padding: 20px 30px;
    
    /* Sombra suave */
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Borda sutil */
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    /* Filtros para suavizar */
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    
    /* Transição suave */
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.main-content {
    max-width: 800px;
    width: 100%;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(30, 144, 255, 0.8),
        0 0 60px rgba(138, 43, 226, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #00D4FF 0%, #FF00FF 100%);
    margin: 0 auto 30px;
    border-radius: 2px;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(255, 0, 255, 0.6);
    animation: expandWidth 1s ease-out 0.3s both;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.clock {
    margin: 60px 0 80px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.time-display {
    margin-bottom: 20px;
}

.time {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(255, 0, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.date-display {
    margin-bottom: 40px;
}

.date {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.app-stores {
    margin: 40px 0 60px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stores-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 1px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.store-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(255, 0, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.8);
}

.store-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.store-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

.notify-section {
    animation: fadeInUp 1s ease-out 1.1s both;
}

.notify-text {
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 450px;
    margin: 0 auto 60px;
}

.email-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-form input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.email-form button {
    padding: 15px 30px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.3s both;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    border-color: transparent;
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
    
    .content {
        padding: 160px 15px 20px;
        justify-content: flex-start;
        min-height: 100vh;
    }
    
    .logo {
        max-height: 100px;
        max-width: 280px;
        padding: 15px 25px;
        border-radius: 18px;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .main-content {
        max-width: 100%;
        padding: 0 5px;
        width: 100%;
    }
    
    .coming-soon {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
        line-height: 1.1;
        word-break: keep-all;
    }
    
    .tagline {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 15px;
        line-height: 1.4;
    }
    
    .divider {
        width: 60px;
        margin: 0 auto 25px;
    }
    
    .clock {
        margin: 25px 0 35px;
    }
    
    .time {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .date {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .app-stores {
        margin: 25px 0 35px;
    }
    
    .stores-title {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .store-item {
        padding: 15px 10px;
        border-radius: 10px;
    }
    
    .store-item i {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .store-item span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .social-links {
        margin-top: 25px;
        gap: 12px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .email-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .email-form button {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
    }
}

/* Modal Newsletter */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newsletter-modal.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.newsletter-content {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 144, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    margin: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #00D4FF;
    transform: scale(1.1);
}

.newsletter-header {
    text-align: center;
    margin-bottom: 30px;
}

.newsletter-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.newsletter-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.newsletter-form input {
    padding: 15px 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    border-color: #00D4FF;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.newsletter-submit {
    padding: 15px 30px;
    background: linear-gradient(135deg, #00D4FF 0%, #FF00FF 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.newsletter-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 30px 25px;
        margin: 15px;
    }
    
    .newsletter-header h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-form input,
    .newsletter-submit {
        padding: 12px 18px;
    }
}

/* Cache buster: 1752078310 */
