/*
Theme Name: Prof-Safe24 Premium
Description: Tema OnePage customizado, leve e escalável. Desenvolvido com ACF Pro.
Version: 1.0.0
Text Domain: prof-safe24
*/

/* ==============================================
   1. RESET & BASE
=============================================== */
:root {
    /* Defina suas cores aqui depois */
    --color-primary: #ff6600; /* Laranja do botão */
    --color-dark: #0a0e17;    /* Fundo escuro */
    --color-text: #e0e0e0;
    --font-main: 'Inter', sans-serif; /* Exemplo */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-dark);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==============================================
   2. LAYOUT & GRID SYSTEM
=============================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0; /* Espaçamento padrão entre seções */
}

/* Grids Responsivos (Mobile First) */
[class^="grid-"] {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2-cols { grid-template-columns: repeat(2, 1fr); }
    .grid-3-cols { grid-template-columns: repeat(3, 1fr); }
    .grid-4-cols { grid-template-columns: repeat(4, 1fr); }
}

/* ==============================================
   3. TYPOGRAPHY & INTELLIGENCE
=============================================== */
h1, h2, h3, h4 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* A Mágica do Degradê em SPANS dentro de Títulos */
h1 span, h2 span, .text-gradient {
    background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%); /* Exemplo Azul */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Utilities */
.text-center { text-align: center; }
.section-header { margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ==============================================
   4. COMPONENTS (Basic)
=============================================== */
/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Cards (Placeholder visual) */
.card-feature-box, 
.card-feature-main,
.profile-card,
.plan-card {
    background: rgba(255,255,255, 0.05); /* Leve transparência */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255, 0.1);
}