* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #2B3031;
}

body {
    background-color: #F9F9F9;
}

.side-space {
    width: 1280px;
    margin: 0 auto;

    padding: 0 30px 0 30px;
}
 
.banner {
   height: 600px;
   background-image: url("img10 - Questões Relativas à Rede Credenciada.jpg");
   background-position: 100% 0;
   background-repeat: no-repeat;
   background-size: cover;

   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 20px;

   margin-bottom: 80px;
   position: relative; /* Necessário para posicionar o pseudo-elemento */
   overflow: hidden; /* Garante que o filtro não ultrapasse os limites */
}

.banner::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5); /* Cor cinza com transparência */
   z-index: 1; /* Coloca o filtro atrás do conteúdo do banner */
}

.banner > * {
   position: relative; /* Garante que o conteúdo do banner esteja acima do filtro */
   z-index: 2;
}

.text-banner {
    width: 1280px;
}

.text-banner h1 {
    width: 847px;
    font-size: 56px;
    color: white;
    font-family: "IBM Plex Serif", serif;
    font-weight: 400;
}

.text-banner div {
    width: 120px;
    height: 8px;
    background-color: white;
    border-radius: 100px;
}

/* ----- section -----  */

h2 {
    width: 780px;
    font-size: 40px;
    font-family: "IBM Plex Serif", serif;
    font-weight: 500;
    margin-bottom: 30px;
}

p {
    width: 850px;
    font-family: "IBM Plex Sans", serif;
    font-size: 18px;
    text-align: justify;
    margin-bottom: 26px;
}

/* linha cinza */

.line-grey {
    width: 120px;
    height: 8px;
    background-color: #959595;
    border-radius: 100px;

    margin: 36px 0 29px 0;
}

/* chamada de ação CONTATO */

.contato-01 {
    background-color: #0A2F37;
    margin: 100px 0;
}

.contato-01 div {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 310px;
}

.contato-01 h2, .contato-01 p, .contato-01 a {
    color: white;
    width: auto;
    margin: 0;
    font-family: "IBM Plex Serif", serif;
}

.contato-01 a {
    text-decoration: none;
    font-size: 16px;
    background-color: white;
    color: #2B3031;
    padding: 15px 21px;
    border-radius: 3px;
    font-weight: 600;
}

/* chamada de ação WHATSAPP */

.area-whatsapp {
    background-color: white;
    width: 850px;
    padding: 50px;
    margin: 60px 0;
}

.area-whatsapp p:first-child {
    width: 750px;
}

.area-whatsapp p:nth-child(2) {
    font-family: "IBM Plex Serif", serif;

}

.area-whatsapp a {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    width: 200px;
    padding: 10px 20px;
    margin-top: 35px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.whatsapp-1 {
    margin-bottom: 8px;
}

.whatsapp-2 {
    margin-bottom: -15px;
}

/* section com lista */

.list-01 {
    margin-left: 20px;
    width: 850px;
    text-align: justify;
}

.list-01 li{
    font-family: "IBM Plex Sans", serif;
    font-size: 18px;
    margin-bottom: 10px;
    list-style: disc;
}

.list-02 li {
    margin-bottom: 30px;
}




/* footer */

footer {
    margin-top: 100px;
    background-color: white;
}



.whatsapp-2 {
    width: auto;
}

/* Excessoes */



@media(max-width: 1290px) {

    .side-space {
        width: auto;
    }

    .contato-01 div {
        flex-direction: column;
        width: none;
    }

    .text-sm {
        width: auto;
    }

    .text-lg {
        width: auto;
    }

    header .navbar ul {
        gap: 30px;
    }

    .contato-01 div {
        justify-content: center;
        gap: 20px;
    }

    .area-whatsapp p {
        text-align: start;
    }

}


@media(max-width: 910px) {


    .text-banner h1{
        width: auto;
        font-size: 40px;
    }

    p, h2 {
        width: auto;
    }

    .list-01 {
        width: auto;
    }

    .area-whatsapp {
        width: auto;
    }

    .area-whatsapp p {
        width: auto;
    }

    .whatsapp-1 p {
        width: 400px;
    }

    .area-whatsapp p:first-child {
        width: auto;
    }

}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;

    p {
        width: 100%;
        text-align: center;
        display: block;
        color: #fff;
        margin: 0px;
        font-size: 12pt;
    }
}

.cookie-banner a {
    color: #4caf50;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 16px;
}

.cookie-banner button:hover {
    background-color: #45a049;
}