/* ============================================= */
/* === ESTILOS GERAIS E RESET === */
/* ============================================= */

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333;
    /* Correção Google Translate */
    top: 0 !important;
}

/* ============================================= */
/* === CABEÇALHO PRINCIPAL (HEADER) === */
/* ============================================= */

/* Estrutura Principal do Header */
.site-header {
    width: 100%;
    background: linear-gradient(90deg, #800080, #FF4500);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: translateZ(0); 
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Camada Superior: Logo e Conta */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.header-logo img {
    height: 55px;
    display: block;
}

.header-account {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-account a {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.header-account a:hover {
    color: #FFD700;
}

.translator-container {
    line-height: 1;
}

/* Camada Inferior: Navegação e Busca */
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navegação Principal (Menu) */
.header-nav {
    flex-grow: 1;
}
.header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-nav ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    display: block;
    position: relative;
}

.header-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.header-nav ul li:hover > a:after {
    width: 100%;
}
.header-nav ul li a .fa-chevron-down {
    font-size: 0.8em;
    margin-left: 5px;
}

/* Dropdowns do Menu */
.header-nav .dropdown {
    position: relative;
    display: inline-block; /* Isso ajuda a conter o dropdown */
}
.header-nav .dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Garante que comece imediatamente abaixo */
    left: -15px;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1031;
    border-radius: 6px;
    padding: 8px 0;
    margin-top: 2px; /* Uma pequena margem pode ser útil, mas excessiva causa problemas */
    border: 1px solid #ddd;
}
.header-nav .dropdown:hover .dropdown-content {
    display: block;
}
.header-nav .dropdown .dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: normal;
}
.header-nav .dropdown .dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #800080;
}
.header-nav .dropdown .dropdown-content a:after {
    display: none;
}
.header-nav .dropdown .dropdown-content i {
    width: 16px;
    text-align: center;
}

/* Barra de Busca */
.header-search {
    max-width: 380px;
    width: 100%;
}
.header-search form {
    display: flex;
    width: 100%;
}
.header-search input {
    flex-grow: 1;
    border: none;
    border-radius: 20px 0 0 20px;
    padding: 9px 18px;
    font-size: 14px;
    height: 40px;
    color: #333;
}
.header-search input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #FFD700;
}

.header-search button {
    border: none;
    background-color: #E63E00;
    color: white;
    border-radius: 0 20px 20px 0;
    padding: 0 18px;
    cursor: pointer;
    transition: background-color 0.2s;
    height: 40px;
}
.header-search button:hover {
    background-color: #c0392b;
}

/* ============================================= */
/* === MENU MOBILE E COMPONENTES RESPONSIVOS === */
/* ============================================= */

/* Ícones do Cabeçalho Mobile */
.mobile-header-icons {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-search-toggle, .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 5px;
    cursor: pointer;
}

/* Overlay de Busca Mobile */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1050;
    display: flex;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.search-overlay form {
    display: flex;
    width: 90%;
    max-width: 500px;
    height: 50px;
}
.search-overlay input {
    flex-grow: 1;
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 0 20px;
    font-size: 16px;
}
.search-overlay button {
    border: none;
    background-color: #FF4500;
    color: white;
    padding: 0 20px;
    border-radius: 0 25px 25px 0;
    font-size: 18px;
}

.close-search-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #800080, #FF4500);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    background: white;
    border: none;
    color: #FF4500;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    line-height: 1;
}

.mobile-menu .close-menu:hover {
    background: #FFD700;
    color: #800080;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
    width: 100%;
    margin-top: 40px;
}

.mobile-menu ul li {
    margin: 15px 0;
    position: relative;
}

.mobile-menu ul li a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a:focus {
    color: #FFD700;
    outline: none;
}

/* Dropdowns no menu mobile */
.mobile-menu ul .dropdown {
    cursor: pointer;
    position: relative;
    width: 100%;
    text-align: center;
}

.mobile-menu ul .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
}

.mobile-menu ul .dropdown > a i {
    margin-left: 8px;
    transition: transform 0.3s ease-in-out;
}

.mobile-menu ul .dropdown-menu {
    display: none;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 5px;
    padding: 10px 0;
    text-align: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, max-height 0.4s ease-in-out;
}

.mobile-menu ul .dropdown-menu a {
    display: block;
    font-size: 16px;
    padding: 8px 0;
    color: white;
    font-weight: normal;
    transition: color 0.3s;
}

.mobile-menu ul .dropdown-menu a:hover {
    color: #FFD700;
}

.mobile-menu ul .dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    max-height: 500px;
}

.mobile-menu ul .dropdown.active > a i {
    transform: rotate(180deg);
}

/* Botões de Destaque no Menu Mobile */
.mobile-menu-actions {
    padding: 20px 15px 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-mobile-menu-action {
    display: block;
    padding: 12px;
    border-radius: 25px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-mobile-menu-action:active {
    transform: scale(0.98);
}

/* Botão de Login em destaque */
.btn-mobile-menu-action.btn-login {
    background-color: white;
    color: #FF4500;
}

/* Botão de Cadastro com borda */
.btn-mobile-menu-action.btn-signup {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

/* ============================================= */
/* === LISTAGEM DE EBOOKS === */
/* ============================================= */

.ebook-container {
    display: grid;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Card de Ebook */
.ebook-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.ebook-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Container da Imagem */
.ebook-image-container {
    position: relative;
    display: block;
    line-height: 0;
}

/* Imagem da Capa */
.ebook-cover {
    width: 100%;
    height: auto;
    display: block;
}

/* Selo "EM BREVE" */
.coming-soon-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    display: inline-block;
    padding: 8px;
    border-radius: 4px;
    background-color: #E63E00;
    background-image: linear-gradient(to bottom, #FF5722, #E63E00);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    outline: 1px solid rgba(255, 255, 255, 0.7);
    outline-offset: -1px;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: default;
}

/* Conteúdo do Card */
.ebook-content {
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 120px;
    flex-grow: 1;
}

.ebook-title {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
    color: #2c3e50;
    word-wrap: break-word;
    padding: 0 5px;
}

.ebook-subtitle {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 10px;
    flex-grow: 1;
    padding: 0 5px;
}

/* Rodapé do Card */
.ebook-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    padding: 10px;
    margin-top: auto;
}

.saiba-mais {
    margin-bottom: 15px;
}

.ebook-author {
    font-size: 12px;
    color: #555;
}

/* ============================================= */
/* === BOTÕES E COMPONENTES === */
/* ============================================= */

/* Botão "Saiba mais" */
.btn-saiba-mais {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(45deg, #d42a80, #ff5722);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-saiba-mais:hover {
    background: linear-gradient(45deg, #ff5722, #d42a80);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-saiba-mais:focus,
.btn-saiba-mais:active,
.btn-saiba-mais:visited {
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Botões customizados (Ex: PDF, EPUB) */
.custom-button-container {
    display: flex;
    gap: 5px;
}

.custom-btn {
    width: 62px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.custom-btn i {
    margin-right: 5px;
}

.custom-btn-pdf {
    background-color: #ff5722;
}

.custom-btn-epub {
    background-color: #4caf50;
}

.custom-btn-pageflip {
    background-color: #2196f3;
}
.btn-custom-gradient {
  /* Fonte e Texto */
  color: #ffffff !important; /* Garante que o texto seja branco */
  font-weight: 700; /* Negrito para destaque */
  font-size: 1rem;
  text-transform: uppercase; /* Estilo mais formal */
  letter-spacing: 0.5px;
  text-decoration: none !important; /* Remove qualquer sublinhado */
  text-align: center;

  /* Fundo e Borda */
  background: linear-gradient(45deg, #82017e, #f64009);
  border: none;
  border-radius: 8px; /* Cantos arredondados */

  /* Espaçamento e Sombra */
  padding: 12px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  /* Animação e Usabilidade */
  cursor: pointer;
  display: inline-block; /* Garante que o padding seja aplicado corretamente */
  transition: all 0.3s ease;
}

/*
 * Efeito Hover: O botão "levanta" e o gradiente se intensifica.
 */
.btn-custom-gradient:hover,
.btn-custom-gradient:focus {
  transform: translateY(-3px); /* Efeito de elevação */
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* Botão de logout */
.btn-logout {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
    font-size: 14px;
}

.btn-logout i {
    font-size: 16px;
    margin-right: 8px;
}

.btn-logout:hover {
    background: #c0392b;
    color: white;
}

/* Container para a avaliação (Estrelas) */
.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 8px 0;
    font-size: 16px;
    height: 24px;
}

.rating-container a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

.rating-container a:hover {
    color: #FF4500;
}

.rating-stars {
    font-size: 18px;
    color: #FFD700;
    line-height: 1;
}

.rating-count {
    font-size: 13px;
    color: #555;
    font-weight: bold;
}

/* Wrapper para estrelas */
.rating-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5px 0;
    margin: 0 auto;
    background: #f9f9f9;
}

/* ============================================= */
/* === MODAIS E COMPONENTES ESPECIAIS === */
/* ============================================= */

/* Estilos do Modal (Footer) */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.social-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: auto;
    margin-bottom: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.social-link i {
    margin-right: 8px;
    font-size: 20px;
    width: 20px;
    text-align: center;
}
.social-link i.fa-instagram { color: #E1306C; }
.social-link i.fa-facebook-square { color: #1877F2; }

.social-link:hover {
    color: #FF4500;
}
.social-link:hover i {
    color: inherit;
}

/* Estilos Itens Diário (Exemplo) */
.diario-item {
    cursor: pointer;
    padding: 8px 8px 8px 35px;
    margin-bottom: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
    position: relative;
    display: block;
}

.diario-item:hover {
    background-color: #f0f0f0;
}

.diario-checkbox {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    cursor: pointer;
    height: 18px;
    width: 18px;
}

.form-check-label {
    cursor: pointer;
    display: block;
}

/* Modal de Escolha */
.modal-user-choice .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.modal-user-choice .modal-header {
    background: linear-gradient(90deg, #800080, #FF4500);
    color: white;
    border-bottom: none;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
}
.modal-user-choice .modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.modal-user-choice .modal-header .close {
    color: white;
    opacity: 0.9;
    font-size: 1.8rem;
    text-shadow: none;
}
.modal-user-choice .modal-body {
    padding: 30px 35px;
    text-align: center;
}
.modal-user-choice .modal-body p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}
.modal-user-choice .choice-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.modal-user-choice .btn-choice {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #eee;
    color: #444;
    transition: all 0.3s ease;
}
.modal-user-choice .btn-choice:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #FF4500;
    color: #FF4500;
}
.modal-user-choice .btn-choice i {
    font-size: 1.8rem;
    margin-right: 15px;
    width: 30px; 
    text-align: center;
}

/* ============================================= */
/* === RESPONSIVIDADE === */
/* ============================================= */

/* Responsividade dos eBooks (Grid) */
@media (max-width: 576px) {
    .ebook-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .ebook-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 993px) {
    .ebook-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Media Query para Mobile */
@media (max-width: 991.98px) {
    .site-header {
        padding: 5px 0;
    }
    .header-main {
        display: none;
    }
    .header-account {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .header-top {
        margin-bottom: 0;
    }
    .header-logo img {
        height: 50px;
    }
    .mobile-header-icons {
        display: flex;
    }
}

/* Ajuste fino para selo "Em Breve" em telas pequenas */
@media (max-width: 480px) {
    .coming-soon-badge {
        padding: 6px;
        font-size: 10px;
    }
}

/* ========================================================== */
/* === CSS COMPLETO PARA A PÁGINA EBOOKBOX (SOBRE) === */
/* ========================================================== */

/* --- 1. CORREÇÃO DE LAYOUT E ESTILOS GERAIS --- */
/* Corrige a sobreposição do menu sticky */


/* Título padrão para as seções da página */
.page-ebookbox .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px !important;
}

/* Linha decorativa abaixo do título */
.page-ebookbox .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #82017e, #f64009);
    border-radius: 2px;
}

/* Variação de título alinhado à esquerda */
#para-escritores .section-title,
#para-leitores .section-title {
    text-align: left;
}
#para-escritores .section-title::after,
#para-leitores .section-title::after {
    left: 0;
    transform: translateX(0);
}

/* Estilo para pequenas frases de apoio (microcopy) */
.microcopy {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}
.microcopy-dark {
    font-style: italic;
    color: #6c757d;
}

/* --- 2. HERO SECTION (COM VÍDEO DE FUNDO) --- */
/* --- 2. HERO SECTION (COM VÍDEO DE FUNDO) --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    /* Fallback background color in case video fails */
    background-color: #333;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    /* Ensures the video scales correctly and covers the entire container */
    object-fit: cover;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Estava 0.6, aumentei para 0.7 */
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 300;
}

.hero-section .btn-outline-light {
    border-width: 2px;
    padding: 10px 28px;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background-color: #fff;
    color: #800080 !important;
}

/* --- 3. SEÇÃO "COMO FUNCIONA" --- */
#como-funciona .step-card {
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#como-funciona .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

#como-funciona .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #82017e, #f64009);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

/* --- 4. SEÇÃO "DIFERENCIAIS" --- */
.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #800080;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
}

.feature-text p {
    color: #6c757d;
}

/* --- 5. SEÇÕES DE BENEFÍCIOS (ESCRITORES E LEITORES) --- */
.benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.benefit-list li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefit-list .fa-check-circle {
    color: #f64009;
    margin-right: 12px;
    font-size: 1.4rem;
}

/* --- 6. SEÇÃO "PROVA SOCIAL (DEPOIMENTOS)" --- */
.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #FF4500;
    height: 100%;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #800080;
    text-align: right;
}

/* --- 7. SEÇÃO "DÚVIDAS FREQUENTES (FAQ)" --- */
#faq .faq-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px !important;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

#faq .faq-card .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 0;
}

#faq .faq-card .btn-link {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s ease;
}

#faq .faq-card .btn-link:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

#faq .faq-card .btn-link::after {
    content: '\f078'; /* Ícone de seta para baixo (Font Awesome) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: #800080;
}

#faq .faq-card .btn-link[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg); /* Gira o ícone quando aberto */
}

#faq .faq-card .card-body {
    padding: 0 25px 25px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
}

/* --- 8. SEÇÃO "CHAMADA FINAL (FINAL CTA)" --- */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #800080, #FF4500);
}

.final-cta-section .text-purple {
    color: #800080 !important;
}

.final-cta-section .btn-light {
    transition: transform 0.2s ease-in-out;
    background: none;
    border: none;
}


.final-cta-section .btn {
    font-family: 'Montserrat', sans-serif; /* Mantendo a consistência */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 15px 25px;
    border-radius: 12px;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.15); /* Fundo sutil transparente */
    color: #fff !important;
    backdrop-filter: blur(5px); /* Efeito de vidro (ultra premium) */
    -webkit-backdrop-filter: blur(5px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.final-cta-section .btn:hover {
    background-color: #fff;
    color: #800080 !important; /* Cor roxa do gradiente */
    transform: scale(1.03); /* Leve zoom no hover */
}


/* --- 9. AJUSTES DE RESPONSIVIDADE --- */
@media (max-width: 991.98px) {
    .page-ebookbox .section-title {
        font-size: 2rem;
    }
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    #para-escritores .section-title,
    #para-leitores .section-title {
        text-align: center;
    }
    #para-escritores .section-title::after,
    #para-leitores .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-section .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch; /* Botões ocupam a largura total em telas menores */
    }
    .hero-section .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch; /* Botões ocupam a largura total em telas menores */
    }
    hero-section .container,
    .final-cta-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .final-cta-section h2 {
        font-size: 2.8rem; /* Reduz um pouco o tamanho (original era display-4) */
        line-height: 1.2; /* Melhora a altura da linha */
    }

    /* Bônus: Alinhamento e estilo do emoji de fogo */
    .final-cta-section h2::before {
        /*content: '🔥';*/
        display: block;
        font-size: 3rem;
        margin-bottom: 10px;
        filter: drop-shadow(0 0 8px rgba(255,165,0,0.7)); /* Brilho sutil no fogo */
    }
    final-cta-section .cta-buttons {
display: flex;
flex-direction: column;
gap: 15px;
align-items: stretch; /* Faz os botões terem a mesma largura no mobile */
margin-top: 30px;
}
.final-cta-section .btn-light:hover {
    transform: scale(1.05);
}
.final-cta-section .btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 15px 25px;
    border-radius: 12px;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.15); /* Fundo sutil transparente no mobile */
    color: #fff !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.final-cta-section .btn:hover {
    background-color: #fff;
    color: #800080 !important;
    transform: scale(1.03);
}

.final-cta-section h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.final-cta-section h2::before {
    content: '🔥';
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(255,165,0,0.7));
}
}
    
/* Estilos para o container dos botões na Hero Section */
.hero-section .cta-buttons {
    display: flex;
    justify-content: center; /* Mantém os botões centralizados */
    align-items: center;
    gap: 25px; /* Espaçamento maior entre os botões */
    margin-top: 30px; /* Mais espaço acima dos botões */
}


/* Estilos premium e chamativos para o botão "Quero ser Escritor" */
.hero-section .btn-custom-gradient {
    font-family: 'Montserrat', sans-serif; /* Uma fonte moderna e profissional (certifique-se de ter essa fonte ou substitua por outra premium) */
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 12px; /* Bordas mais arredondadas para um visual moderno */
    background: linear-gradient(135deg, #82017e 0%, #f64009 100%); /* Gradiente mais dinâmico */
    box-shadow: 0 8px 20px rgba(130, 1, 126, 0.4); /* Sombra mais pronunciada e com a cor do gradiente */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    color: #fff !important;
}

.hero-section .btn-custom-gradient:hover,
.hero-section .btn-custom-gradient:focus {
    transform: translateY(-5px); /* Leve efeito de "elevar" ao passar o mouse */
    box-shadow: 0 12px 25px rgba(130, 1, 126, 0.5); /* Sombra mais intensa no hover */
}
/* Estilos premium e chamativos para o botão "Quero ser Leitor" */
.hero-section .btn-outline-light {
    font-family: 'Montserrat', sans-serif; /* Mesma fonte para consistência */
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 12px;
    border: 2px solid #fff; /* Borda branca mais espessa */
    background-color: transparent;
    color: #fff !important;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

.hero-section .btn-outline-light:hover,
.hero-section .btn-outline-light:focus {
    background-color: rgba(255, 255, 255, 0.15); /* Leve fundo branco ao passar o mouse */
    color: #fff !important;
    transform: translateY(-3px); /* Leve efeito de "elevar" ao passar o mouse */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Sombra mais intensa no hover */
}

