/*
Theme Name: Ragnarok IPTV Final
Theme URI: https://ragnarokiptv.com
Author: AI Assistant
Description: Tema Premium com Design de Aurora e Logo Ragnarok. Inclui Planos, Galeria, Diferenças e Contacto.
Version: 4.0
Text Domain: ragnarok-iptv
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #02050a;
    --gold: #e5a93d;
    --gold-glow: rgba(229, 169, 61, 0.4);
    --text-white: #ffffff;
    --text-muted: #a0aabf;
    --card-bg: rgba(11, 18, 33, 0.9);
    --accent-red: #d32f2f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--bg-dark); 
    color: var(--text-white);
    overflow-x: hidden;
}

/* Fundo com imagem da Aurora */
.site-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(2, 5, 10, 0.7), rgba(2, 5, 10, 0.95)), 
                url('https://images.unsplash.com/photo-1531306728370-e2ebd9d7bb99?q=80&w=2000') no-repeat center center/cover;
    z-index: -1;
}

/* Header */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: rgba(0, 0, 0, 0.85);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--gold-glow);
    backdrop-filter: blur(10px);
}
.logo-text { font-family: 'Cinzel', serif; font-size: 22px; color: var(--gold); font-weight: 900; text-decoration: none; }
nav ul { display: flex; list-style: none; gap: 20px; }
nav a { text-decoration: none; color: #fff; font-size: 13px; font-weight: 700; transition: 0.3s; text-transform: uppercase; }
nav a:hover { color: var(--gold); }

/* Hero Section */
.hero {
    height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 0 10%;
}
.hero-logo { width: 300px; max-width: 80%; margin-bottom: 20px; filter: drop-shadow(0 0 15px var(--gold-glow)); }
.hero h1 { font-family: 'Cinzel', serif; font-size: 3.5rem; margin-bottom: 10px; line-height: 1; }
.hero p { color: var(--gold); font-weight: 600; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 30px; }

/* Botões */
.btn { 
    padding: 15px 40px; border-radius: 5px; font-weight: 700; cursor: pointer; 
    text-decoration: none; display: inline-block; transition: 0.3s; text-transform: uppercase;
}
.btn-gold { background: var(--gold); color: #000; border: none; box-shadow: 0 0 20px var(--gold-glow); }
.btn-gold:hover { transform: scale(1.05); background: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; margin-left: 15px; }

/* Secções Gerais */
section { padding: 100px 5%; text-align: center; }
h2 { font-family: 'Cinzel', serif; font-size: 2.5rem; color: var(--gold); margin-bottom: 50px; }

/* Planos */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.plan-card { 
    background: var(--card-bg); padding: 40px 25px; border-radius: 12px; 
    border: 1px solid rgba(255,255,255,0.1); transition: 0.4s; position: relative;
}
.plan-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.plan-card.featured { border: 2px solid var(--gold); box-shadow: 0 0 30px var(--gold-glow); }
.featured-label { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; padding: 5px 20px; font-weight: 900; border-radius: 20px; font-size: 12px; }
.price { font-size: 36px; font-weight: 900; margin: 20px 0; color: #fff; }
.price span { font-size: 16px; color: var(--gold); }
.features { list-style: none; margin-bottom: 30px; text-align: left; color: var(--text-muted); font-size: 14px; }
.features li { margin-bottom: 10px; }
.features li::before { content: "✓ "; color: var(--gold); font-weight: bold; }

/* Galeria */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
.movie-item { height: 230px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.movie-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.movie-item:hover img { transform: scale(1.1); filter: brightness(0.7); }

/* Diferenças */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.diff-box { padding: 30px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.diff-box i { font-size: 40px; color: var(--gold); margin-bottom: 20px; }

/* Contacto */
.contact-container { max-width: 600px; margin: 0 auto; background: var(--card-bg); padding: 40px; border-radius: 15px; }
.contact-container input, .contact-container textarea { 
    width: 100%; padding: 15px; margin-bottom: 15px; background: #050814; border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 5px;
}

/* WhatsApp */
.wa-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 32px; z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
