/* 
 * Acteia Landing Page - CSS
 * Design: Idêntico ao site original
 * Tema: Dark mode com cores neon (roxo, ciano, rosa, verde)
 */

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

:root {
    --bg-dark: #0F1419;
    --bg-card: #1A1F2E;
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --accent-purple: #A855F7;
    --accent-cyan: #00D9FF;
    --accent-pink: #FF1493;
    --accent-green: #00FF88;
    --accent-yellow: #FFD700;
    --border-color: #2D3748;
    --glow-purple: rgba(168, 85, 247, 0.5);
    --glow-cyan: rgba(0, 217, 255, 0.5);
}

html, body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, #0F1419 0%, #1a0f2e 100%);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-login {
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--accent-cyan);
    border: 2px dashed var(--accent-cyan);
    border-radius: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-login:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 15px var(--glow-cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 4rem;
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8), rgba(26, 31, 46, 0.6));
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-section {
    background: rgba(26, 31, 46, 0.8);
    border: 2px dashed var(--accent-cyan);
    border-radius: 0.8rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-purple);
    font-weight: 700;
}

.cta-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-cta {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px var(--glow-purple);
}

.btn-cta:hover {
    box-shadow: 0 0 30px var(--glow-purple);
    transform: translateY(-2px);
}

/* ============================================
   STATS GRID
   ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-icon {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* ============================================
   SECTION CONTAINER & HEADER
   ============================================ */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   TOP SECTION (MOVIES)
   ============================================ */

.top-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.05));
}

/* Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tabs {
    display: flex;
    gap: 1rem;
    background: rgba(26, 31, 46, 0.6);
    border: 2px dashed var(--accent-yellow);
    border-radius: 0.5rem;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.tab-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-radius: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--accent-yellow);
    color: var(--bg-dark);
}

.tab-btn:hover {
    color: var(--accent-cyan);
}

/* Movies Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

.movie-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
}

.movie-poster-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.6rem;
    aspect-ratio: 2/3;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.movie-card:hover .movie-poster {
    transform: scale(1.1);
}

.movie-medal {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-size: 1.3rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.6rem;
    border-radius: 0.3rem;
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.btn-watch {
    padding: 0.6rem 1.2rem;
    background: var(--accent-green);
    color: var(--bg-dark);
    border: none;
    border-radius: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-watch:hover {
    box-shadow: 0 0 15px var(--accent-green);
}

.movie-info {
    margin-top: 0.8rem;
}

.movie-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.movie-rating {
    color: var(--accent-green);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px var(--glow-purple);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent-purple);
    font-weight: 700;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */

.platforms-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05), transparent);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: rgba(26, 31, 46, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-available:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 30px var(--accent-green);
}

.platform-current {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.platform-current:hover {
    box-shadow: 0 0 30px var(--glow-cyan);
}

.platform-coming {
    opacity: 0.7;
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.platform-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.platform-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-platform {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-platform:hover {
    background: rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 15px var(--glow-cyan);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 3rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px dashed var(--border-color);
    border-radius: 0.6rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-cyan);
}

.faq-question {
    width: 100%;
    background: rgba(26, 31, 46, 0.6);
    border: none;
    padding: 1.2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 31, 46, 0.9);
}

.faq-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
    font-weight: 700;
}

.faq-answer {
    background: rgba(15, 20, 25, 0.8);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.2rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(15, 20, 25, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-purple);
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero {
        padding: 2.5rem 1rem 2rem;
        margin-top: 3.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta-section {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.1rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-emoji {
        font-size: 1.1rem;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-container {
        padding: 0 0.75rem;
    }

    .navbar-logo {
        gap: 0.5rem;
        font-size: 1.1rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }

    .btn-login {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }

    .hero {
        padding: 1.5rem 0.75rem 1rem;
        margin-top: 3rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-title {
        font-size: 0.95rem;
    }

    .cta-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .stat-card {
        padding: 1rem 0.75rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-icon {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-container {
        padding: 0 0.75rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .movie-title {
        font-size: 0.75rem;
    }

    .movie-meta {
        font-size: 0.65rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.8rem;
    }

    .platform-card {
        padding: 1.5rem;
    }

    .platform-icon {
        font-size: 2rem;
    }

    .platform-title {
        font-size: 0.95rem;
    }

    .platform-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .btn-platform {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 0.8rem;
        font-size: 0.8rem;
        gap: 0.75rem;
    }

    .faq-emoji {
        font-size: 1rem;
    }

    .faq-toggle {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0;
    }

    .faq-answer.active {
        padding: 0.8rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.85rem;
    }

    .footer-section p {
        font-size: 0.75rem;
    }

    .footer-section a {
        font-size: 0.75rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-purple);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-purple);
    }
}

.btn-cta {
    animation: glow 2s ease-in-out infinite;
}

.stat-card {
    animation: slideIn 0.5s ease-out forwards;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}
