:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --accent-color: #FF69B4;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --shadow-light: rgba(255, 255, 255, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Página de Verificação de Idade */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
    padding: 20px;
    background: var(--bg-primary);
    box-shadow: 0 8px 32px var(--shadow-dark);
    border-radius: var(--border-radius);
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

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

.logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px var(--shadow-dark));
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px var(--shadow-dark));
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px var(--shadow-dark);
}

.description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    max-width: 350px;
    line-height: 1.7;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8fc7 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.btn-secondary:hover {
    background: var(--bg-primary);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

/* Página VSL */
.vsl-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: var(--bg-primary);
    min-height: 100vh;
}

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

.vsl-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.next-button {
    display: none;
    margin: 30px auto 0;
    padding: 16px 32px;
    background: linear-gradient(135deg, #42d342 0%, #2ea043 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(66, 211, 66, 0.3);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-button:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8fc7 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.5);
}

.image {
    position: relative;
    align-items: center;
    margin: auto;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: var(--border-radius);
    background: var(--bg-primary);
}

.img {
    position: relative;
    align-items: center;
    margin: auto;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px var(--shadow-dark);
    background: var(--bg-primary);
}

.comments {
    max-width: 600px;
    margin: 50px auto 0;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px var(--shadow-dark);
}

.comment-input-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-input {
    flex: 1;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.comment-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.comment {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
}

.comment-details {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    flex: 1;
}

.comment-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
    color: #333;
}

.comment-text {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.comments-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.facebook-logo {
    width: 40px;
    height: auto;
}

.login-btn {
    width: 60px;
    height: 35px;
    border: none;
    background-color: #1877f2;
    color: white;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.login-btn:hover {
    background-color: #166fe5;
    transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        max-width: 90%;
        padding: 15px;
    }
    
    .title {
        font-size: 1.6rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .vsl-title {
        font-size: 1.2rem;
    }
    
    .comments {
        margin: 30px 15px 0;
        padding: 15px;
    }
    
    .comment-input-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .comment-input {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        height: auto;
        min-height: 100vh;
        justify-content: center;
    }
    
    .title {
        font-size: 1.4rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .vsl-container {
        padding: 15px;
    }
    
    .play-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        border-left: 18px solid white;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

