/* ========================================
   EBOOK SINGLE PAGE - ESTILO QUE CUIDA
   Mobile-first, clean, editorial
   ======================================== */

/* Hero Section */
.ebook-single-hero {
    background: linear-gradient(135deg, #606c38 0%, #4a5428 100%);
    padding: 140px 20px 60px;
    color: white;
}

.ebook-single-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.ebook-single-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.ebook-single-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.ebook-single-hero .breadcrumb a:hover {
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
    }
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 48px;
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
}

.hero-positioning {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.hero-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Para Quem É */
.ebook-for-who {
    padding: 60px 20px;
    background: white;
}

.ebook-for-who .container {
    max-width: 1000px;
    margin: 0 auto;
}

.ebook-for-who h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .ebook-for-who h2 {
        font-size: 40px;
    }
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.situations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.situation-item {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid #606c38;
}

.situation-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.situation-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* O Que Você Vai Entender */
.ebook-what-you-learn {
    padding: 60px 20px;
    background: #fafbfc;
}

.ebook-what-you-learn .container {
    max-width: 1100px;
    margin: 0 auto;
}

.ebook-what-you-learn h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .ebook-what-you-learn h2 {
        font-size: 40px;
    }
}

.section-intro {
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.learn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .learn-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.learn-item {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.learn-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.learn-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #606c38;
}

.learn-icon svg {
    width: 100%;
    height: 100%;
}

.learn-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.learn-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Estrutura do Guia */
.ebook-structure {
    padding: 60px 20px;
    background: white;
}

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

.ebook-structure h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .ebook-structure h2 {
        font-size: 40px;
    }
}

.structure-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.structure-list {
    list-style: none;
    padding: 0;
}

.structure-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.structure-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #606c38;
    font-weight: 600;
}

.structure-list strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* Como Usar */
.ebook-how-to-use {
    padding: 60px 20px;
    background: #f8f9fa;
}

.ebook-how-to-use .container {
    max-width: 1000px;
    margin: 0 auto;
}

.ebook-how-to-use h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .ebook-how-to-use h2 {
        font-size: 40px;
    }
}

.how-to-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .how-to-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.how-to-item {
    background: white;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.how-to-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.how-to-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* Conexão Blog */
.ebook-blog-connection {
    padding: 60px 20px;
    background: white;
}

.ebook-blog-connection .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ebook-blog-connection h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .ebook-blog-connection h2 {
        font-size: 36px;
    }
}

.connection-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Sobre */
.ebook-about {
    padding: 60px 20px;
    background: #fafbfc;
}

.ebook-about .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ebook-about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .ebook-about h2 {
        font-size: 36px;
    }
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* CTA Final */
.ebook-cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #606c38 0%, #4a5428 100%);
    color: white;
    text-align: center;
}

.ebook-cta-final .container {
    max-width: 700px;
    margin: 0 auto;
}

.ebook-cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

@media (min-width: 768px) {
    .ebook-cta-final h2 {
        font-size: 42px;
    }
}

.cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: #606c38;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.cta-secondary:hover {
    background: white;
    color: #606c38;
}

.cta-disclaimer {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Onde este guia se encaixa - Estilo Refinado (Design Update) */
.ebook-journey-context {
    padding: 60px 20px;
    background-color: #f3f6f1; /* Tom verde muito suave */
    border-top: 1px solid rgba(96, 108, 56, 0.1);
    border-bottom: 1px solid rgba(96, 108, 56, 0.1);
    margin: 40px 0;
}

.ebook-journey-context .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(96, 108, 56, 0.08);
}

.ebook-journey-context h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #606c38; /* Accent color */
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.ebook-journey-context h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #dceec2; /* Accent soft */
    margin: 16px auto 0;
    border-radius: 2px;
}

.ebook-journey-context .journey-text {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
}

/* Destaque forte para o link conforme solicitado */
.ebook-journey-context .journey-text a {
    display: inline-block;
    background-color: #606c38;
    color: white;
    padding: 6px 16px;
    border-radius: 100px; /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(96, 108, 56, 0.2);
    margin: 0 6px;
    transform-origin: center;
    white-space: nowrap;
}

.ebook-journey-context .journey-text a:hover {
    background-color: #4a5428;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 15px rgba(96, 108, 56, 0.3);
}

@media (max-width: 768px) {
    .ebook-journey-context {
        padding: 40px 16px;
    }
    .ebook-journey-context .container {
        padding: 24px;
    }
    .ebook-journey-context h2 {
        font-size: 26px;
    }
    .ebook-journey-context .journey-text {
        font-size: 17px;
    }
    
    .ebook-journey-context .journey-text a {
        display: inline-flex; /* Ajuste mobile */
        margin-top: 8px;
    }
}
