strong, b {
    font-weight: 700 !important;
    color: #474747; 
}

.conteudo-fundo {
    background-image: url('../img/home/text-background.png');
    background-size: 80% 100%; 
    background-position: right center; 
    background-repeat: no-repeat;
    background-color: #ffffff; 
    padding-bottom: 20px; 
}

.conteudo-text p {
    line-height: 1.8;
    margin: 0;
}

.citacao-centro { 
    text-align: center; 
    margin: 40px 0; 
}

.citacao-centro h2 { 
    margin-bottom: 5px; 
}

.cog-banner-destaque {
    background: linear-gradient(rgba(65, 98, 19, 0.85), rgba(232, 235, 135, 0.82)), 
                url('https://orthocognitivus.org/campanha-minipeca/wp-content/uploads/2026/08/2026_04_28-QUEBRA-CABECA-IMAGEM-scaled-1.png') center/cover no-repeat;
    border-radius: 16px;
    padding: 70px 40px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 90%;
}

.cog-banner-conteudo h2 {
    color: #ffffff !important;
    margin-bottom: 15px;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cog-banner-conteudo p {
    color: white;
    font-size: 18px; /* Aqui mantemos fixo por causa do banner */
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cog-btn-banner {
    display: inline-block;
    background-color: #ffffff;
    color: var(--cog-verde) !important;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cog-btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background-color: #f4f7f6;
}

.cog-cta {
    width: 90%;
}

/* =======================================================
   TIMELINE
   ======================================================= */
.cog-mobile-year {
    display: none; 
}

.cog-timeline-container {
    margin: 60px 0;
    font-family: 'Montserrat', sans-serif;
}

.cog-timeline-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 35px auto;
    padding: 0 20px;
}

.cog-timeline-line {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e6ecf0;
    z-index: 1;
    border-radius: 2px;
}

.cog-timeline-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 0;
    outline: none;
}

.cog-timeline-dot {
    position: relative; 
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 4px solid #ccd6dd;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    box-sizing: border-box; 
}

.cog-timeline-year {
    font-size: 14px;
    font-weight: bold;
    color: #66757f;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cog-timeline-btn:hover .cog-timeline-dot {
    border-color: var(--cog-verde);
    transform: scale(1.1);
}

.cog-timeline-btn.active .cog-timeline-dot {
    background-color: #ffffff;
    border-color: var(--cog-verde);
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(117, 154, 75, 0.3);
}

.cog-timeline-btn.active .cog-timeline-year {
    color: var(--cog-verde);
    font-weight: 800;
}

.cog-timeline-btn.cog-star-year .cog-timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #ccd6dd;
    border-radius: 50%;
}

.cog-timeline-btn.active .cog-timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: var(--cog-verde);
    border-radius: 50%;
}

.cog-timeline-slides {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef2f5;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.2);
}

.cog-timeline-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.cog-timeline-slide.active {
    display: block;
    opacity: 1;
}

.cog-timeline-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.cog-timeline-col-img {
    flex: 1 1 45%;
    max-width: 45%;
    overflow: hidden;
    position: relative;
    background-color: #f4f7f6;
    box-shadow: 12px 0 25px rgba(0,0,0,0.2);
    z-index: 2;
}

.cog-timeline-col-img img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.cog-timeline-col-text {
    flex: 1 1 55%;
    max-width: 55%;
    padding: 40px;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cog-timeline-col-text h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.cog-timeline-col-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.cog-timeline-arrow {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--cog-verde);
    cursor: pointer;
    padding: 10px 20px;
    outline: none;
    transition: transform 0.2s;
}

.cog-timeline-arrow:active {
    transform: scale(0.8);
}
/* ===================================================== */
.cog-video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 900px; 
    margin: 40px auto; 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    background-color: #000000; 
}

.cog-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-info,
.cog-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
    flex-wrap: wrap; 
    margin: 30px 0;
}

.cog-btn-info {
    background: var(--cog-verde, #759a4b);
    color: #ffffff !important;
    padding: 12px 58px;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    border-radius: 50px; 
    box-shadow: 0 4px 12px rgba(117, 154, 75, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cog-btn-info:hover {
    background: #5d7e3a; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 18px rgba(117, 154, 75, 0.35);
    color: #ffffff !important;
}

.cog-btn-info:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(117, 154, 75, 0.2);
}

.cog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; 
}

.cog-icone-btn {
    width: 20px; 
    height: auto;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 768px) {

    .conteudo-fundo {
        background: transparent;
    }
    
    .quebra-desktop {
        display: none;
    }

    .conteudo {
        padding: 0 20px !important; 
    }

     .cog-timeline-slides p {
        font-size: 14px !important;
    }

    .cog-campanha-apresentacao p,
    .cog-campanha-apresentacao li,
    .cog-fase-card h4 {
        font-size: 14px !important;
    }

    .citacao-centro h2 { 
        font-size: 20px; 
    }

    .cog-banner-destaque {
        padding: 40px 20px;
        margin: 40px 0;
        border-radius: 12px;
    }
    
    .cog-banner-conteudo h2 {
        font-size: 24px;
    }
    
    .cog-banner-conteudo p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .cog-btn-banner {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
        font-size: 16px;
    }

    .cog-btn {
        width: auto; 
        display: inline-block;
        padding: 10px 30px; 
        font-size: 16px; 
        border-radius: 50px; 
        text-align: center;
    }

    .cog-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px; 
        align-items: center;
    }

    .cog-timeline-dot {
        display: none;
    }
    
    .cog-mobile-year {
        display: block;
        color: var(--cog-verde);
        font-size: clamp(18px, 1.8vw, 24px) !important;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .cog-timeline-container {
        display: flex;
        flex-direction: column;
    }

    .cog-timeline-slides {
        order: 1;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

    .cog-timeline-nav {
        order: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-bottom: 0;
    }

    .cog-timeline-btn,
    .cog-timeline-line {
        display: none !important; 
    }

    .cog-timeline-arrow {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 20px;
        color: var(--cog-verde);
    }
    
    .cog-timeline-row {
        flex-direction: column;
    }
    
    .cog-timeline-col-img, 
    .cog-timeline-col-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .cog-timeline-col-img img {
        min-height: 300px;
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        z-index: 2;
    }
    
    .cog-timeline-col-text {
        padding: 25px 20px;
    }

    .cog-timeline-col-text p {
        font-size: 16px;
    }
   

    .cog-titulo-campanha {
        font-size: 22px;
    }
    
    .cog-fases-grid {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        left: 0;
        transform: none;
    }
    
    .cog-dinamica-lista > li {
        padding-left: 50px;
    }

    .cog-meta-box strong {
        font-size: 24px;
    }
    
    .cog-btn-regras {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .btn-info,
    .cog-btn-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .cog-btn-info {
        width: 190px;
		display: inline-block;
		padding: 10px 30px;
		font-size: 16px;
		border-radius: 50px;
		text-align: center;
    }
}