/* Base styling */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    text-wrap: balance;
}

.h1, .h2, .h3 {
    margin: 0 0 10px;
}

.h2{
    font-size: 1.5rem;
    font-weight: 700;
}

.h3{
    font-size: 1.2rem;
    font-weight: bold;
}


.p {
    margin: 0 0 20px;
    font-size: 0.9rem;
    line-height: 1.3rem;
}

/* Header styling */
.header-section {
    position: relative;
    height: 160vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    overflow: hidden;
    padding-top: 0;
    margin-bottom: -10px;
}

.header-section .h1 {
    color: #fff;
    font-size: 5rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Exemplo de sombra */
padding-left: 20%;
padding-right: 20%;
}



.segunda-section .linha-fina {
    color: #232323;
    font-size: 1.8rem;
    padding-left: 10%;
    padding-right: 10%;
    line-height: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
}

.introducao {
    color: #232323;
    font-size: 1.1rem;
    max-width: 800px;
    width: 800px;
    text-align: left;
    margin: 0 auto;
    line-height: 2rem;
}

.header-section .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    
    z-index: -1;
}

.header-section .content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 25%;
}

/* Mostrar apenas o vÃ­deo de desktop por padrÃ£o */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

/* Segunda Section styling */
.segunda-section {
    padding: 20px;
    text-align: center;
    padding-top: 20px;
}


.segunda-section h2 {
    font-size: 2rem;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.itens {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.item {
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    position: relative;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #c4170c;
}

.modal-content h3 {
    margin-top: 0;
}

.sectionsepara {
    background: url('https://s3.glbimg.com/v1/AUTH_8b29beb0cbe247a296f902be2fe084b6/2024/html/politica/golpe-de-estado/img/bgbranco.png') no-repeat bottom/cover;
    height: 30vh;
    background-color: #4e0a06;
}

/* Terceira Section styling */
.terceira-section {
    padding: 40px;
    text-align: center;
    background-color: #4e0a06;
    background: url('https://s3.glbimg.com/v1/AUTH_8b29beb0cbe247a296f902be2fe084b6/2024/html/politica/golpe-de-estado/bgfinal.jpg') no-repeat top/cover;
}

.terceira-section h2 {
    font-size: 2rem;
    color: #fff;
}

.terceira-section .descricao {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

#busca {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Filtros (Carrossel) */
.filtros {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 20px;
}

.filtro {
    padding: 10px 20px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filtro:hover {
    background-color: #e0e0e0;
}

.feedback-container{
    color: #f3cb05;
    padding-bottom: 20px;
    font-size: 1.3rem;
    
}
/* Cards grid */
/* Grid padrÃ£o */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Respeita colunas de tamanho fixo */
    gap: 20px;
    align-items: start; /* Alinha os itens no topo */
}

/* ConfiguraÃ§Ã£o para exibiÃ§Ã£o de busca */
.cards.filtered {
    grid-template-columns: 1fr; /* Mostra os elementos em uma Ãºnica coluna */
}

/* Card Styling */
.card {
    background-color: rgba(255, 255, 255, 1);
    color: #232323;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%; /* MantÃ©m a largura dentro da coluna */
    max-width: 300px; /* Impede que o card fique gigante */
    margin: 0 auto; /* Centraliza o card */
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Card Content */
.card-content {
    padding: 15px;
    text-align: left;
}

.card-content h3 {
    margin: 10px 0;
    color: #232323;
}

.card-content .p {
    margin: 0;
    font-size: 0.9rem;
    color: #232323;
    line-height: 1.2rem;
}

/* Expanded Card */
.card.expanded {
    background-color: rgba(255, 255, 255, 1); /* Fundo consistente */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra leve */
    width: 100%; /* Garante que o card expandido respeite a largura da coluna */
}

.card.expanded .card-content {
    padding: 20px;
}

.details {
    display: none; /* Escondido por padrÃ£o */
    margin-top: 10px;
    font-size: 14px;
    color: #232323;
}

.card.expanded .details {
    display: block; /* Mostra os detalhes apenas quando expandido */
}

/* Snippet fixo no rodapÃ© */
.share{
    display:block;
    width:60px;
    height:60px;
    background:#ff9100;
    position:absolute;
    top:300px;
    left:50%;
    z-index:999;
    text-align:center;
    overflow:hidden;
    line-height:65px;
    font-size:1.5em;
    color:#fff;
    -moz-box-shadow: 0px 3px 9px rgba(0,0,0,.5);
  -webkit-box-shadow: 0px 3px 9px rgba(0,0,0,.5);
  box-shadow: 0px 3px 9px rgba(0,0,0,.5);
    border-radius:50px;
    -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
  }
  
  .share:hover{
    cursor:pointer;
  }
  
  .one, .two, .three{
    position:absolute;
    width:50px;
    height:50px;
    color:#fff;
    border-radius:50px;
    text-align:center;
    line-height:49px;
    font-size:1.5em;
     top:300px;
    left:50%;
     -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    -webkit-box-shadow: 0px 3px 9px rgba(0,0,0,.2);
  box-shadow: 0px 3px 9px rgba(0,0,0,.2);
    -webkit-transition:transform  .3s ease-in-out;
    transition:transform .3s ease-in-out;
  }
  
  .one:hover, 
  .two:hover,
  .three:hover{
    cursor:pointer;
  }
  
  .one i, .two i, .three i{
    display:none;
  }
  
  
  .one{
    background:#2196f3;
  }
  
  .two{
    background:#00e5ff;
  }
  
  .three{
    background:#6a1b9a;
  }
  
  .footer_bf {
    color: #fff;
    /* margin-left: 80px; */
    background-color: #232323;
    padding-top: 20px;
    margin-top: -10px;
}

.footer_bf .h3{
    margin: 0;
    text-align: center;

    line-height: 1.5rem;
    font-weight: 700;
}
.footer_bf .h5{
    margin: 0;
    padding-left: 80px;

    line-height: 1.2rem;
    font-weight: 700;
}
.footer_bf .p {
    margin: 0;
    padding-left: 80px;

    padding-bottom: 10px;
    line-height: 28px;
    margin-bottom: 20px;
}


 

.header-section .linha-fina {
    color: #fff;
    font-size: 2rem;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.6rem;
    padding-bottom: 20px;
    text-shadow: 6px 6px 12px rgba(0, 0, 0, 1), -1px -1px 2px rgba(255, 255, 255, 0.8);
}

    .demo {
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 100px;
        height: 100px;
    }

    .demo__buttons {
        position: absolute;
        top: 60%;
        left: 50%;
        width: 100px;
        height: 100px;
        transform: translate(-100px, -100px);
        filter: url(#goo);
    }



    .modal-content img{
        width: 200px;
    }

    
    .modal-content .p{
        font-size: 0.9rem;
    }
    .sectionsepara {
        height: 50px;
    }

    .terceira-section {
        padding: 40px;
        padding-top: 5px;
        text-align: center;
        background-color: #4e0a06;
        background: url('https://s3.glbimg.com/v1/AUTH_8b29beb0cbe247a296f902be2fe084b6/2024/html/politica/golpe-de-estado/bgfinal.jpg') no-repeat top / cover;
    }
    .terceira-section h2 {
        font-size: 1.5rem;
        color: #fff;
    }

    .terceira-section .descricao {
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 20px;
    }

    .segunda-section {
        padding: 20px;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .card-content .p {
        margin: 0;
        font-size: 0.8rem;
        color: #232323;
        line-height: 1.1rem;
    }
    .footer_bf{
        padding-left: 12px;
        color: #dddddd;
        background-image: #232323;
    }
    
    .footer_bf .h5{
        margin: 0;
        padding: 0;
        line-height: 1.2rem;
        padding-left: 10px;

    }
    .footer_bf .p {
        margin: 0;
        padding: 0;
        padding-bottom: 10px;
        line-height: 28px;
        margin-bottom: 20px;
        padding-left: 10px;
    }
    @media (max-width: 768px) {
        .desktop-video {
            display: none;
        }
    
        .mobile-video {
            display: block;
        }
    
        .introducao {
            color: #232323;
            font-size: 1rem;
            max-width: 300px;
            width: 300px;
            text-align: left;
            margin: 0 auto;
            line-height: 1.5rem;
        }
    
        .header-section {
            position: relative;
            height: 160vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            text-align: center;
            overflow: hidden;
            padding-top: 25%;
            margin-bottom: -530px;
        }

        .header-section .content {
            position: relative;
            z-index: 2;
            color: white;
            padding-top: 0;
        }
    
    
        .header-section .h1 {
            color: #fff;
            font-size: 2.8rem;
            line-height: 3rem;
            text-transform: uppercase;
            text-align: left;
            padding-left: 20px;
            margin: 0;
            font-weight: 900;
            padding-top: 50px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Exemplo de sombra */
        }
        .header-section .linha-fina {
                color: #fff;
                font-size: 2rem;
                padding-left: 20px;
                padding-right: 20px;
                text-align: left;
                font-size: 1.2rem;
                line-height: 1.4rem;
                padding-bottom: 20px;
                text-shadow: 6px 6px 12px rgba(0, 0, 0, 1);
            }

            .footer_bf .h3 {
                margin: 0;
                padding-left: 10px;
                line-height: 1.5rem;
                font-weight: 700;
            }
    }  



@media (max-width: 400px) { /* Estilos para até 400px */
    .header-section {
        position: relative;
        height: 160vh;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        overflow: hidden;
        padding-top: 25%;
        margin-bottom: -330px;
    } 
}


@media (max-width: 2100px) { /* Estilos para até 400px */
.header-section {
    position: relative;
    height: 160vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    overflow: hidden;
    padding-top: 0;
    margin-bottom: -10px;
}
.header-section .content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 25%;
}
}