

@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');

:root {
    --vermelho: #CD3525;
    --amarelo: #EE8F1B;
    --texto: #333;
    --azul: #4da3ff;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333; /* tua cor padrão de texto */
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #005aeb; /* vermelho da identidade visual */
}

h2 span {
    color: #EE8F1B; /* amarelo para destaque */
}
a {
    color: var(--vermelho);
}
a:hover {
    color: var(--amarelo);
}
nav.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 700;
    letter-spacing: -0.0px;
    font-size: 14px;
}

.nav-link:hover {
    color: #005aeb;
}

.nav-icon {
    margin-left: 20px;
}

.nav-icon a {
    color: #005aeb;
    font-size: 20px;
    margin: 0px 8px;
}

.nav-icon a:hover {
    color: #333;
}

.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dropdown-item {
    font-weight: 500;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f1f5ff;
    color: #005aeb;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

section {
    padding: 80px 0;
}

.section-internas {
    padding: 110px 0 80px 0px;
}

.versao-desktop {
    display: block;
}

.versao-mobile {
    display: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 700px; /* altura total no desktop */
    overflow: hidden;
    color: #fff;
    text-align: left;
}

.hero .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100vh; /* acompanha a altura total */
    min-height: 550px;
    filter: brightness(40%);
}

.hero-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
}

.hero-content p {
    font-size: 24px;
    color: #f0f0f0;
}

.btn-azul { 
    background: var(--azul);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 15px 30px;
    font-weight: 700;
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
} 
.btn-azul:hover {
    background: #fff;
    color: #4da3ff;
    transition: 0.4s;
}

/* PRODUTOS */

.produtos {
    padding: 80px 0px;
    background-color: #f1f1f1;
}

.produtos-sidebar {
    background-size: cover;
    background-position: center center;
    height: 100vh;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    background-color: #fff;
    margin-bottom: 30px;
}


.produto-item {
    background-size: cover;
    background-position: center center;
    height: 435px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    padding: 20px 20px;
    background-color: #fff;
    margin-bottom: 30px;
}

.produto-item-foto {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.produto-item h4 {
    font-size: 18px;
    color: black;
}

.produto-item h5 {
    font-size: 14px;
    text-transform: uppercase;
}

.produto-item p {
    font-size: 12px;
    color: #666;
}

.btn-bazar {
    background-color: #005aeb;
    color: #fff;
    border: 1px solid #005aeb;
}

.btn-bazar:hover {
    background-color: #0a4e9b;
    color: #fff;
    border: 1px solid #0a4e9b;
}

/* PRODUTO DETALHE */

.produto-detalhe {
  background-size: cover;
  background-position: center center;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  padding: 25px 25px;
  background-color: #fff;
}

.produto-detalhe a {
    text-decoration: none;
    margin-right: 10px;
}

.produto-detalhe .btn-2 {
    background-color: #005aeb;
    border: 1px solid #005aeb;
    color: #fff;
}

.produto-detalhe .btn-2:hover {
    background-color: #0a4e9b;
    border: 1px solid #0a4e9b;
    color: #fff;
}

.produto-detalhe .btn-3 {
    background-color: #666;
    border: 1px solid #666;
    color: #fff;
}

.produto-detalhe .btn-3:hover {
    background-color: #555;
    border: 1px solid #555;
    color: #fff;
}

.produto-detalhe h2 {
  font-size: 36px;
  color: #0a4e9b;
  font-weight: 800;
}

.produto-detalhe h3 {
  font-size: 32px;
  color: #0b3b70;
  font-weight: 600;
}

.produto-detalhe h6 {
  font-size: 17px;
  color: #666;
  font-weight: 400;
}

.produto-detalhe p {
  font-size: 14px;
  color: #444;
  text-align: justify;
}

.produto-detalhe-thumbnail {
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 80px;/*
  border: 3px solid #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.17);*/
  margin-bottom: 20px;
}

.produto-item-outros {
  background-size: cover;
    background-position: center center;
    height: 435px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    padding: 20px 20px;
    background-color: #fff;
    margin-bottom: 30px;
    width: 250px;
}

/* exibeProduto */

.produto {
    width: 100%;
    height: 600px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produtoFoto {
    padding: 50px;
    max-width: 100%;
    max-height: 100%;
}



.produtoSobre {
    padding-top: 75px;
    padding-right: 50px;
    padding-left: 20px;
}
  

.produtoSobre h3 {
    padding: 15px 0px;
    font-size: 24px;
}

.produtoSobre h5 {
    padding: 10px 0px;
    font-size: 14px;
    font-weight: lighter;
    color: #666;
}

.produtoSobre h4 {
    font-size: 16px;
    font-weight: normal;
    padding: 10px 0px;
}
  


/*OUTROS PRODUTOS*/

.outrosProdutos {
    padding-top: 50px;
    background-color: #E7E7E7;
}

/*TERMO DOAÇÃO*/

.termo-doacao {
    padding: 120px 0px 80px 0px;
    background-color: #f1f1f1;
}

.termo-doacao form {
    background-color: #ddd;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/*HISTÓRIA*/

.historia-foto {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    height: 300px;
    border: 2px solid #ddd;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    margin: 0px 5px;
}

/*DIRETORIA*/

.diretoria-item {
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.diretoria-item h5 {
    margin: 0;
    padding: 0;
}

.diretoria-item p {
    margin: 0;
    padding: 0;
}

/*SERVIÇOS*/

.servicos-foto {
    background-image: url(https://efivi.org.br/imagens/historia/historia-2.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 270px;
    border: 4px solid #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    margin: 0px 5px;
}

.servicos-item {
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.servicos-item h6 {
    margin: 0;
    padding: 0;
    color: #003c9c;
}

.servicos-item-2 {
    background-color: #003c9c;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    text-align: left;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.servicos-item-2 h6 {
    margin: 0;
    padding: 0;
    color: #fff;
}

.servicos-item-2 i {
    font-size: 36px;
    margin-right: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero {
    height: 70vh;
    }
    .hero .carousel-item img {
    height: 70vh;
    }
    .hero-content h1 {
    font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
    height: 60vh; /* ocupa 60% da altura da tela no mobile */
    }
    .hero .carousel-item img {
    height: 60vh;
    }
    .hero-content {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    }
    .hero-content h1 {
    font-size: 1.7rem;
    }
    .hero-content p {
    font-size: 1rem;
    }

    .versao-desktop {
    display: none;
    }

    .versao-mobile {
    display: block;
    }
}


/* FLOATING BUTTONS */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #fff;
    color: #25d366;
}
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: #4da3ff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

footer .logo-footer {
    max-width: 180px;
    height: auto;
}

footer h6 {t: 1.6;
    color: #ddd;
}

footer a.links-hover {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

footer a.links-hover:hover {
    color: #4da3ff;
}

.footer-link-menu {
    margin-bottom: 6px;
}

.footer-link-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-link-menu a:hover {
    color: #4da3ff;
}

@media (max-width: 768px) {
    footer {
    text-align: center;
    }
    .footer-align-left, .footer-align-right {
    text-align: center !important;
    }
    .logo-footer {
    margin-bottom: 15px;
    }
}