@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, Helvetica, sans-serif, monospace;
}


:root {
    --green: rgb(63, 197, 58);
    --yellow: rgb(246, 246, 4);
    --red:rgb(235, 71, 49);
    --azul: rgb(41, 110, 239);
}


#logo {
    width: 70px;
    height: 70px;
}

.navbar-nav {
    padding-top: -10px;
    padding-bottom: -10px;
}


.hero-carrossel {
    position: relative;
    height: 80vh;          /* altura que você quiser */
    min-height: 500px;
    overflow: hidden;
    color: white;
}

/* Camada das imagens */
.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slides .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slides .slide.ativo {
    opacity: 0.6;
}

/* Texto fixo por cima */
.hero-conteudo {
    position: relative;     /* fica acima das imagens */
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.45); /* escurece um pouco pra o texto ficar legível */
}

.hero-conteudo h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-conteudo p {
    font-size: 1.25rem;
    max-width: 600px;
}

/* Botões */
.btn-hero {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-hero:hover {
    background: rgba(0, 0, 0, 0.8);
}

.btn-hero.prev {
    left: 20px;
}

.btn-hero.next {
    right: 20px;
}


.intro {
    text-align: justify;
}



.viss {
    border: 1px solid black;
    box-shadow: 0.5px 0.5px 0.6px rgba(0, 0, 0, 0.528);
    border-radius: 20px;
    background-color:  rgba(251, 251, 112, 0.165);
    margin-right: 20px;
    text-align: justify;
}

.miss {

    border: 1px solid black;
    box-shadow: 0.5px 0.5px 0.6px rgba(0, 0, 0, 0.528);
    border-radius: 20px;
    background-color:rgba(251, 141, 141, 0.395);
    text-align: justify;
    margin-right: 20px;
    
}

.val {
    padding: 5px;
    border: 1px solid black;
    box-shadow: 0.5px 0.5px 0.6px rgba(0, 0, 0, 0.528);
    border-radius: 20px;
    background-color:rgba(4, 255, 0, 0.18);
    text-align: justify;

}


.impacto {
    
    color: white;
    background-color: rgba(111, 199, 250, 0.264);
    padding: 30px;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.486);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.413);
    margin-right: 20px;
    border-radius: 20px;
}



.parceiro-logo {
    object-fit: contain;
    margin-top: 20px;
    border-radius: 20px;
}

.ninho-logo {
    width: 200px;
    height: 200px;
}

.camara-logo {
    width: 100%;
    max-width: 400px;
    height: 200px;
}

.parceiro-descricao {
    width: 70%;
    margin-top: 20px;
    padding: 8px;
    text-align: center;
    color: red;
    background-color: rgb(253, 199, 199);
    border-radius: 15px;
}




.contato-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-card {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 105px;

    padding: 24px;

    background-color: #fff;

    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

/* Ícone */

.contato-icone {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 23px;

    margin-right: 20px;
}

/* Cores dos ícones */

.contato-icone.email {
    color: #168bd0;
    background-color: #e8f5ff;
}

.contato-icone.whatsapp {
    color: #22bda9;
    background-color: #e6f8f5;
}

.contato-icone.endereco {
    color: #168bd0;
    background-color: #e8f1fc;
}

.contato-icone.funcionamento {
    color: #9670df;
    background-color: #f0eaff;
}


/* Texto */

.contato-info {
    min-width: 0;
}

.contato-info span {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #718096;
}

.contato-info p {
    margin: 0;

    font-size: 17px;
    color: #0b2341;
}



footer {
    background-color: rgb(99, 149, 255);
}


.CT {
    display: flex; 
    align-items: center; 
    flex-shrink: 0;
}

.CT > div > i 
{
    font-size: 1.5em;
}


.CT > div > small {
    font-size: 1em;
}






/* Tablet - 2 fotos */
@media (max-width: 991.98px) {

    #cont {
       text-align: center;
       width: 40%; 
    }
  }


/* Celular - 1 foto */
@media (max-width: 575.98px) {

        
    #logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-conteudo h1 {
        
        font-size: 2rem;
    }

    
    .hero-conteudo p {

        font-size: 0.8em;
        
    }

    #caracteristicas {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #caracteristicas > div > h5 {
        font-size: 1em;
    }

     .contato-card {
        padding: 20px;
        min-height: 95px;
    }

    .contato-icone {
        width: 50px;
        height: 50px;

        margin-right: 15px;

        font-size: 21px;
    }

      .contato-info span {
        font-size: 12px;
    }

    .contato-info p {
        font-size: 15px;
    }

}

