/*
Theme Name: Kelen Silva - Reprogramação da Consciência
Theme URI: https://essenciapenabranca.com
Author: Kelen Silva
Author URI: https://essenciapenabranca.com
Description: Tema completo com painel de edição visual - 100% gratuito. Edite tudo pelo WordPress sem precisar de código!
Version: 2.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kelen-silva
Tags: one-page, custom-colors, custom-logo, featured-images, full-width-template, editor-style

Tema criado especialmente para a Kelen Silva - Guia da Alma
100% editável pelo painel do WordPress - Sem necessidade de código!
Paleta de cores oficial: #a066b1, #00a896, #fab178, #fafafa, #654170
*/

/* ========================================
   RESET E CONFIGURAÇÕES BÁSICAS
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* ========================================
   VARIÁVEIS DE CORES
======================================== */

:root {
    --brand-purple: #a066b1;
    --brand-teal: #00a896;
    --brand-peach: #fab178;
    --brand-light: #fafafa;
    --brand-dark: #654170;
}

/* ========================================
   TIPOGRAFIA
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ========================================
   LINKS
======================================== */

a {
    color: var(--brand-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--brand-dark);
}

/* ========================================
   CONTAINERS
======================================== */

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

.section {
    padding: 80px 20px;
}

/* ========================================
   BOTÕES
======================================== */

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-peach));
    color: white;
    box-shadow: 0 10px 30px rgba(160, 102, 177, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(160, 102, 177, 0.4);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--brand-purple);
    border: 2px solid var(--brand-purple);
}

.btn-secondary:hover {
    background: var(--brand-purple);
    color: white;
}

/* ========================================
   WHATSAPP FLUTUANTE
======================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-logo {
    max-width: 250px;
    margin: 0 auto 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-badge {
    display: inline-block;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(160, 102, 177, 0.2);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

/* ========================================
   SEÇÃO CHAMADO DA ALMA
======================================== */

.chamado-section {
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-dark) 100%);
    color: white;
    text-align: center;
}

.chamado-content {
    max-width: 900px;
    margin: 0 auto;
}

.chamado-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.9;
}

.chamado-destaque {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ========================================
   CARDS
======================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(160, 102, 177, 0.15);
    transition: all 0.3s ease;
    border-left: 4px solid var(--brand-purple);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(160, 102, 177, 0.25);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-purple);
}

.card-text {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   WARNING BOX
======================================== */

.warning-box {
    background: linear-gradient(to right, rgba(250, 177, 120, 0.3), rgba(250, 177, 120, 0.5));
    border: 4px solid var(--brand-peach);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 50px auto;
    max-width: 900px;
}

/* ========================================
   SEÇÃO SOBRE
======================================== */

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 50px auto;
}

.sobre-image {
    text-align: center;
}

.sobre-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(160, 102, 177, 0.3);
}

.badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.badge {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================
   DEPOIMENTOS
======================================== */

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.depoimento {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(160, 102, 177, 0.15);
}

.depoimento-text {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoimento-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-peach));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.depoimento-name {
    font-weight: 700;
    color: var(--brand-dark);
}

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

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

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(160, 102, 177, 0.1);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 15px;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
}

/* ========================================
   PREÇO
======================================== */

.pricing-section {
    background: linear-gradient(135deg, #1F2937, #374151);
    color: white;
}

.pricing-card {
    background: white;
    max-width: 600px;
    margin: 50px auto;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: var(--brand-dark);
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #9CA3AF;
    margin-bottom: 10px;
}

.price-new {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.price-installment {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 30px;
}

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

.site-footer {
    background: var(--brand-dark);
    color: white;
    padding: 60px 20px 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-link {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--brand-peach);
    transform: scale(1.1);
}

.footer-logo {
    max-width: 200px;
    margin: 30px auto;
}

.disclaimer {
    max-width: 900px;
    margin: 40px auto 20px;
    font-size: 0.9rem;
    color: #9CA3AF;
    line-height: 1.6;
    text-align: center;
}

/* ========================================
   ANIMAÇÕES
======================================== */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    .section { padding: 60px 20px; }
    
    .sobre-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .price-new { font-size: 3rem; }
}

/* ========================================
   UTILITÁRIOS
======================================== */

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mt-50 { margin-top: 50px; }

.bg-light { background-color: var(--brand-light); }
.bg-white { background-color: white; }

.container-small {
    max-width: 900px;
    margin: 0 auto;
}
