/* ============================================
   PÍLULA DO CONHECIMENTO V2 — CARDS STYLE
   Layout inspirado em carrossel de rede social
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&display=swap');

@font-face {
    font-family: 'Bruta Pro Compressed';
    src: url('font/bruta-pro-compressed-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-brown: #3D1210;
    --cream-bg: #EBE9D8;
    --lime-green: #A6D128;
    --white: #FFFFFF;
    --red-circle: #E31E24;
    --green-circle: #4CAF50;
    --text-dark: #3D1210;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius-lg: 40px;
    --radius-md: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bruta Pro Compressed', 'Playfair Display', serif;
}

.page-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.content-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

/* ---------- GEOMETRIC ACCENTS ---------- */
.accent-circle {
    position: absolute;
    border: 2px solid var(--lime-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    display: none;
    /* Oculto por padrão (Desktop) */
}

.accent-line {
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: var(--lime-green);
    transform: rotate(-45deg);
    pointer-events: none;
    z-index: 1;
    display: none;
    /* Oculto por padrão (Desktop) */
}

/* ---------- CARD CONTAINER ---------- */
.card-section {
    position: relative;
    background: var(--cream-bg);
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* ---------- HEADER CARD (CAPA) ---------- */
.card-header {
    background-color: var(--primary-brown);
    width: 100%;
    padding: 80px 30px 100px;
    border-radius: 0;
    /* Remove radius for full bleed */
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.card-header h1 {
    font-family: 'Bruta Pro Compressed', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card-header .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.card-header .source {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 250px;
    margin: 0 auto;
}

/* ---------- CONTENT CARDS ---------- */
.content-card {
    background: var(--white);
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-md);
    padding: 35px 25px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 5;
    margin-top: -30px;
    /* Overlap */
}

.section-title {
    font-family: 'Bruta Pro Compressed', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.section-divider {
    width: 80px;
    height: 6px;
    background: var(--lime-green);
    margin: 0 auto 40px;
    /* Aumentado para dar mais espaço */
    position: relative;
    z-index: 2;
}

.card-body p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.card-body strong {
    color: var(--text-dark);
}

/* ---------- LISTS ---------- */
.icon-list {
    list-style: none;
    margin-bottom: 30px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.icon-list li i {
    font-size: 1.4rem;
}

.fa-times-circle {
    color: var(--red-circle);
}

.fa-check-circle {
    color: var(--green-circle);
}

/* ---------- SUMMARY BOX ---------- */
.summary-box {
    background: var(--lime-green);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
}

.summary-box i {
    font-size: 2rem;
}

.summary-box p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ---------- GRID DATA ---------- */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.data-item {
    background: var(--lime-green);
    border-radius: var(--radius-md);
    padding: 25px 15px;
    text-align: center;
    color: var(--text-dark);
}

.data-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.data-value {
    font-family: 'Bruta Pro Compressed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.data-desc {
    font-size: 0.8rem;
    font-weight: 500;
}

.caption-footer {
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
}

/* ---------- LOGO FOOTER ---------- */
.logo-v2 {
    margin-top: 50px;
    height: 60px;
}

/* ---------- CONVERSATION BOXES ---------- */
.speak-box {
    width: 100%;
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.speak-box.bad {
    background-color: #F8D7DA;
    /* Light red/pinkish */
    color: #4A1010;
}

.speak-box.good {
    background-color: #E2EFD9;
    /* Light green/yellowish */
    color: #385623;
}

.speak-label {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.speak-quote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* ---------- DARK SECTION & BULLET LIST ---------- */
.card-section.dark {
    background-color: var(--primary-brown);
    color: var(--white);
}

.card-section.dark .section-title {
    color: var(--white);
}

.bullet-list {
    list-style: none;
    text-align: left;
    width: 100%;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.4;
}

.bullet-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: var(--primary-brown);
    font-size: 0.8rem;
    top: 3px;
}

.card-section.dark .bullet-list li::before {
    color: var(--white);
}

/* ---------- HORIZONTAL IMPACT CARDS ---------- */
.impact-card-h {
    background: var(--white);
    border-radius: var(--radius-md);
    width: 100%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.impact-card-h i {
    font-size: 2.2rem;
    color: var(--primary-brown);
    width: 50px;
    text-align: center;
}

.impact-card-h p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ---------- MESSAGE FINAL ---------- */
.final-box {
    background-color: var(--primary-brown);
    border-radius: 80px 80px 0 0;
    padding: 80px 30px;
    width: 100%;
    color: var(--white);
    text-align: center;
}

.final-quote-v2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 700;
}

.final-divider {
    width: 80px;
    height: 6px;
    background: var(--lime-green);
    margin: 20px auto;
}

.final-text-v2 {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ---------- FOOTER ---------- */
footer {
    background-color: var(--cream-bg);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

footer p {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ACCENTS ---------- */
@media (max-width: 768px) {

    .accent-circle,
    .accent-line {
        display: block;
        /* Aparece apenas no Mobile */
    }
}