/*
Theme Name: IPTV Landing Pro
Description: Tema profissional para landing page de IPTV com alta conversão
Version: 1.0
Author: Seu Nome
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS */
:root {
    --primary: 14 31% 44%;
    --primary-foreground: 355 100% 97%;
    --secondary: 220 14% 96%;
    --secondary-foreground: 220 9% 46%;
    --muted: 220 14% 96%;
    --muted-foreground: 220 9% 46%;
    --accent: 220 14% 96%;
    --accent-foreground: 220 9% 46%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 355 100% 97%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 14 31% 44%;
    --background: 0 0% 100%;
    --foreground: 222 84% 5%;
    --card: 0 0% 100%;
    --card-foreground: 222 84% 5%;
    --popover: 0 0% 100%;
    --popover-foreground: 222 84% 5%;
    --netflix-red: 348 100% 45%;
    --dark-bg: 220 13% 9%;
    --gradient-primary: linear-gradient(135deg, hsl(var(--netflix-red)), hsl(348 100% 35%));
    --gradient-dark: linear-gradient(180deg, hsl(var(--dark-bg)), hsl(220 13% 6%));
}

.dark {
    --background: 220 13% 9%;
    --foreground: 355 100% 97%;
    --card: 220 13% 9%;
    --card-foreground: 355 100% 97%;
    --popover: 220 13% 9%;
    --popover-foreground: 355 100% 97%;
    --primary: 355 100% 97%;
    --primary-foreground: 220 13% 9%;
    --secondary: 220 13% 18%;
    --secondary-foreground: 355 100% 97%;
    --muted: 220 13% 18%;
    --muted-foreground: 220 9% 63%;
    --accent: 220 13% 18%;
    --accent-foreground: 355 100% 97%;
    --destructive: 0 62% 30%;
    --destructive-foreground: 355 100% 97%;
    --border: 220 13% 18%;
    --input: 220 13% 18%;
    --ring: 355 100% 97%;
}

/* Estilos globais */
body {
    font-family: 'Inter', sans-serif;
    background: hsl(var(--dark-bg));
    color: hsl(var(--foreground));
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.6);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Seções */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: hsl(var(--netflix-red));
    margin-bottom: 1rem;
}

/* Logos Grid */
.logos-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0;
}

.logos-category {
    margin-bottom: 3rem;
}

.logos-category h3 {
    color: hsl(var(--netflix-red));
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.logo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pricing */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid hsl(var(--netflix-red));
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: hsl(var(--netflix-red));
    margin: 1rem 0;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp fixo */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}