/* style.css */
:root {
    --primary-color: #2563eb; /* Azul confiável */
    --hover-color: #1d4ed8;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, sans-serif; }

body { background-color: var(--bg-color); color: var(--text-main); display: flex; flex-direction: column; min-height: 100vh; }

/* Header Minimalista */
header { background: var(--card-bg); padding: 1rem 5%; box-shadow: 0 1px 3px rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.5rem; color: var(--primary-color); text-decoration: none; }

/* Container Principal */
main { flex: 1; padding: 2rem 5%; max-width: 1200px; margin: 0 auto; width: 100%; }

/* Hero Section */
.hero { text-align: center; margin-bottom: 3rem; }
.hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero p { color: var(--text-muted); font-size: 1.1rem; }

/* Grid de Plataformas (Home) */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.platform-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}
.platform-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); border-color: var(--primary-color); }
.icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* Estilos para Página Interna (Download) */
.downloader-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
}
.input-group { display: flex; gap: 10px; flex-wrap: wrap; }
input[type="text"] {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}
input[type="text"]:focus { border-color: var(--primary-color); }
button.btn-download {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}
button.btn-download:hover { background: var(--hover-color); }

/* Área de SEO / Texto para AdSense */
.seo-content { max-width: 800px; margin: 0 auto; line-height: 1.6; }
.seo-content h2 { margin-top: 2rem; margin-bottom: 1rem; }

/* Espaço para Ads */
.ad-slot {
    background: #e2e8f0;
    width: 100%;
    height: 100px; /* Ajustável */
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Footer */
footer { text-align: center; padding: 2rem; color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid #e2e8f0; margin-top: auto;}
footer a { color: var(--text-muted); text-decoration: none; margin: 0 10px; }