/* ============================================================
   VARIÁVEIS E ESTILOS GERAIS
   ============================================================ */
:root {
    --primary-blue: #203362;
    --gold-light: #dfbc67;
    --gold-dark: #997437;
    --white: #ffffff;
    --off-white: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; scroll-behavior: smooth; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   NAVBAR (CABEÇALHO)
   ============================================================ */
.navbar { 
    padding: 15px 0; 
    background: var(--white); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.navbar .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px; 
}

/* Logo */
.logo { height: 60px; background: transparent; display: block; }
.logo-blend { mix-blend-mode: multiply; filter: contrast(1.1); }

/* Esconder checkbox do menu mobile */
.menu-toggle { display: none; }

/* Menu de Navegação Desktop */
nav { margin-left: auto; }

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    align-items: center; 
}

nav a { 
    text-decoration: none; 
    color: var(--primary-blue); 
    font-weight: 600; 
    font-size: 1.1rem; 
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap; 
}

nav a:hover { color: var(--gold-dark); }

/* Linha decorativa no hover */
nav a:not(.btn-nav):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold-light);
    transition: width 0.3s ease;
}

nav a:not(.btn-nav):hover:after { width: 100%; }

.btn-nav { 
    background: var(--gold-light) !important; 
    color: var(--primary-blue) !important; 
    padding: 10px 22px !important; 
    border-radius: 6px; 
    display: inline-block;
}

.btn-nav:hover {
    background: var(--gold-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { padding: 80px 0; background: #f4f6f9; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tagline { color: var(--gold-dark); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; }
.hero h1 { font-size: 2.8rem; color: var(--primary-blue); line-height: 1.2; margin: 20px 0; }
.highlight { color: var(--gold-dark); }
.hero-img img { width: 100%; border-radius: 15px; box-shadow: 20px 20px 0 var(--primary-blue); }

.cta-button { 
    display: inline-block; background: var(--gold-light); color: var(--primary-blue); 
    padding: 20px 30px; border-radius: 8px; font-weight: 700; text-decoration: none;
    transition: 0.3s; text-align: center; border: none; cursor: pointer;
}
.cta-button:hover { background: var(--gold-dark); color: white; transform: translateY(-3px); }

/* ============================================================
   O QUE É O PROFISSÃO REIKI (DARK SECTION)
   ============================================================ */
.dark-section { background: var(--primary-blue); color: white; padding: 100px 0; text-align: center; }
.subtitle-dark { font-size: 1.2rem; max-width: 850px; margin: 20px auto; opacity: 0.9; font-weight: 300; }
.highlight-dark { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 40px; display: block; }

.gap-topics { gap: 20px !important; margin-top: 30px; }
.gap-topics .deliverable-item-dark { margin-bottom: 10px; }

.final-text-dark {
    margin-top: 60px;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   MÉTODO MRE
   ============================================================ */
.mre-method { padding: 120px 0; background: #f4f6f9; }
.section-title { text-align: center; color: var(--primary-blue); font-size: 2rem; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }

.subtitle-text { 
    text-align: center; max-width: 900px; margin: 0 auto 60px auto; 
    color: #444; font-size: 1.15rem; line-height: 1.8; font-weight: 500;
}

.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step {
    background: white; padding: 45px 30px; border: 1px solid #eee; border-radius: 12px; 
    text-align: center; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.step:hover {
    transform: translateY(-8px); border-color: var(--gold-light);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08); background-color: #ffffff;
}
.step h4 { color: var(--gold-dark); margin-bottom: 15px; font-size: 1.2rem; font-weight: 700; white-space: nowrap; }

/* ============================================================
   PILARES (CARDS)
   ============================================================ */
.pillars-dark { padding: 100px 0; background-color: var(--primary-blue); color: var(--white); }
.subtitle-pillars { text-align: center; max-width: 800px; margin: 0 auto 40px auto; font-size: 1.1rem; opacity: 0.9; }
.light-title { color: var(--gold-light) !important; margin-bottom: 60px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 0; }

.card-pillar {
    background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: 12px;
    border: 1px solid rgba(223, 188, 103, 0.2); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: flex; flex-direction: column; cursor: pointer;
}

.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 10px; }
.card-pillar h3 { color: var(--gold-light); font-size: 1.2rem; flex: 1; line-height: 1.2; }
.card-number { font-size: 2rem; font-weight: 800; color: rgba(223, 188, 103, 0.2); flex-shrink: 0; line-height: 1; }

.card-pillar p { font-size: 0.9rem; line-height: 1.6; color: rgba(255, 255, 255, 0.8); border: none; background: transparent; padding: 0; }

.card-pillar:hover {
    background: rgba(255, 255, 255, 0.12); border-color: var(--gold-light);
    transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.card-pillar:hover .card-number { color: rgba(223, 188, 103, 0.6); }

/* ============================================================
   SOBRE, ENTREGÁVEIS, PREÇO E BÔNUS
   ============================================================ */
.about-denis { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; border-radius: 15px; box-shadow: -15px 15px 0 var(--gold-light); }
.about-content h2 { color: var(--primary-blue); margin-bottom: 20px; font-size: 2.2rem; }
.social-icons { margin-top: 30px; display: flex; gap: 20px; }
.social-icons a { font-size: 1.6rem; color: var(--gold-dark); text-decoration: none; transition: 0.3s; }
.social-icons a:hover { transform: scale(1.1); color: var(--primary-blue); }

.deliverables-section.dark-bg { padding: 100px 0; background-color: var(--primary-blue); text-align: center; }
.subtitle-text-light { color: var(--white); margin: -20px 0 50px 0; opacity: 0.9; font-size: 1.1rem; }
.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; max-width: 1000px; margin: 0 auto; }
.deliverable-item-dark { display: flex; align-items: center; gap: 15px; background: rgba(255, 255, 255, 0.05); padding: 22px; border-radius: 10px; border: 1px solid rgba(223, 188, 103, 0.1); text-align: left; transition: 0.3s ease; }
.deliverable-item-dark i { color: var(--gold-light); font-size: 1.3rem; }
.deliverable-item-dark span { color: var(--white); font-weight: 500; }

.pricing-white { padding: 100px 0; background-color: #ffffff; text-align: center; }
.premium-price-box { max-width: 850px; margin: 0 auto 30px auto; background-color: var(--white); padding: 60px 40px; border-radius: 20px; border: 5px solid var(--gold-light); display: flex; flex-direction: column; align-items: center; box-shadow: 0 15px 40px rgba(0,0,0,0.03); }
.price-title { font-size: 1.8rem; color: var(--primary-blue); font-weight: 800; margin-bottom: 25px; }
.price-description { font-size: 1.1rem; color: #666; max-width: 650px; margin-bottom: 20px; }
.price-cta-text { font-size: 1.15rem; color: #333; font-weight: 600; margin-bottom: 40px; }
.main-price { font-size: 3.5rem; font-weight: 800; color: var(--primary-blue); }
.cash-price { font-size: 2.5rem; font-weight: 800; color: var(--primary-blue); }
.features-list { list-style: none; text-align: left; display: inline-block; margin-bottom: 40px; }
.features-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }

.guarantee-bar { max-width: 850px; margin: 0 auto; background-color: #f0fff4; border: 1px solid #c3e6cb; border-radius: 10px; padding: 15px; display: flex; justify-content: center; align-items: center; }
.guarantee-content { display: flex; align-items: center; gap: 10px; color: #155724; font-weight: 600; }

.special-bonus { padding: 80px 0; background-color: var(--off-white); }
.bonus-box { max-width: 850px; margin: 0 auto; background: var(--white); padding: 60px 40px; border-radius: 20px; border: 3px dashed var(--gold-light); text-align: center; }
.bonus-item { display: flex; align-items: center; gap: 30px; text-align: left; background: #fdfaf3; padding: 40px; border-radius: 15px; margin-bottom: 40px; border-left: 5px solid var(--gold-light); }
.bonus-number { font-size: 5rem; font-weight: 800; color: var(--gold-dark); }
.bonus-tag {color:var(--primary-blue); font-weight: 1000; font-size: 1.2rem}

/* ============================================================
   FAQ, FOOTER E ACCORDION
   ============================================================ */
.faq-section { padding: 80px 0; background-color: #fcfcfc; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; margin-bottom: 15px; border-radius: 8px; border: 1px solid #eee; overflow: hidden; }
.faq-question { width: 100%; padding: 22px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; font-weight: 600; color: var(--primary-blue); cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding: 0 22px; }
.faq-item.active .faq-answer { max-height: 300px; }

footer { background-color: var(--primary-blue); color: var(--white); padding: 80px 0 40px; text-align: center; }
.social-links { display: flex; justify-content: center; gap: 30px; margin: 30px 0; }
.social-links a { color: var(--gold-light); font-size: 2.2rem; transition: 0.3s; }
.copyright { font-size: 0.85rem; opacity: 0.6; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; margin-top: 20px; }

/* ============================================================
   RESPONSIVIDADE GERAL (CENTRALIZADA)
   ============================================================ */
@media (max-width: 1024px) {
    .navbar .container { padding: 0 20px; }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: var(--primary-blue);
        border-radius: 3px;
        transition: 0.3s;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s;
        z-index: 1000;
        padding: 100px 30px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .menu-toggle:checked ~ nav { right: 0; }
    .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }
}

@media (max-width: 768px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .grid-4, .deliverables-grid { grid-template-columns: 1fr; gap: 15px; }
    .step h4 { white-space: normal; font-size: 1.1rem; }
    .main-price { font-size: 2.5rem; }
    .cash-price { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .cta-button { width: 100%; }
}