/*****************************************************************************/
/***                                                                       ***/
/***          INDUSTECK ENGENHARIA E AUTOMAÇÃO INDUSTRIAL                  ***/
/***        ARQUIVO COM ESTILOS PADRÕES DE TODAS AS PÁGINAS                ***/
/*** VERSÃO: 01                                                            ***/
/*** JUL - 2026                                                            ***/
/***                                                                       ***/
/*****************************************************************************/

/*****************************************************************************/
/***                                                                       ***/
/***                             1 - INDICE                                ***/
/***                                                                       ***/
/*****************************************************************************/

/*
1 - INDICE
2 - IMPORTAÇÃO DE ARQUIVOS
3 - ESTILOS GLOBAIS
4 - CABEÇALHO 
5 - FAIXA DE TITULOS
6 - BARRA DE MENU
7 - RODAPÉ
*/

/*****************************************************************************/
/***                           FINAL INDICE                                ***/
/*****************************************************************************/

/*****************************************************************************/
/***                                                                       ***/
/***                      2 - IMPORTAÇÃO DE ARQUIVOS                       ***/
/***                                                                       ***/
/*****************************************************************************/
@import url(root.css);


/*****************************************************************************/
/***                   FINAL IMPORTAÇÃO DE ARQUIVOS                        ***/
/*****************************************************************************/

/*****************************************************************************/
/***                                                                       ***/
/***                         3 - ESTILOS GLOBAIS                           ***/
/***                                                                       ***/
/*****************************************************************************/

html {

    /* Reserva o espaço da barra de rolagem mesmo sem utilização */
    scrollbar-gutter: stable;

}

*{
    /* Reseta os valores padrões de todos os elementos html */
    margin: 0px;
    padding: 0px;
    border: 0px;
}

body {

    /* Caso o elemento não tenha formatação definições padrão */
    font-family: var(--fonte-padrao);
    font-size: var(--fonte-tamanho);
    line-height: var(--altura-linha);
}

body.menu-fixa{
    /* --------------------------------------------- */
    padding-top:70px;
}

img{
    /* define que qualquer tag img será sempre 100% de seu elemento pai*/
    max-width: 100%;
}

a,
a:hover,
a:focus {
    /* Remove o sublinhado dos links */
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    
    font-family: var(--fonte-padrao);
}

/*****************************************************************************/
/***                       FINAL ESTILOS GLOBAIS                           ***/
/*****************************************************************************/

/*****************************************************************************/
/***                                                                       ***/
/***                           4 - CABEÇALHO                               ***/
/***                                                                       ***/
/*****************************************************************************/

.faixa-cabecalho{
    height: 50px;
    background-color: var(--cinza);
    margin-bottom: var(--dist_vertical);
}

.flex-container-cabecalho{    
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.top-info{
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cinza_texto);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

.top-info i{
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.top-info .ordem{
    color: var(--amarelo_01);
}

.social ul{
    display: inline-block;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.social ul li{
    margin-left: 6px;
}

.social ul li a{
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: var(--branco);
    font-size: 16px;
    color: var(--azul);
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.social ul li a:hover{
    background: var(--azul);
    color: var(--verde);
}

.custom-tooltip {
    --bs-tooltip-font-size: 12px;
    --bs-tooltip-bg: var(--vermelho);      /* Cor de fundo */
    --bs-tooltip-color: var(--branco);   /* Cor do texto */
}

/*****************************************************************************/
/***                          FINAL CABEÇALHO                              ***/
/*****************************************************************************/

/*****************************************************************************/
/***                                                                       ***/
/***                      5 - FAIXA DE TÍTULOS                             ***/
/***                                                                       ***/
/*****************************************************************************/

.faixa-titulo{
    margin-bottom: var(--dist_vertical);
}

.faixa-titulo-flex{
    min-height: 100px; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo{    
    flex: 0 0 220px;
    height: 80px; /*Define uma altura para a div para o fundo aparecer*/

    background-image: var(--endlogo);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

.flex-box-titulo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.texto-titulo{
    font-family: var(--fonte-padrao);
    font-size: 16px;
    color: var(--cinza_texto_destaque);
    font-weight: 500;
}

.box-titulo{
    margin-right: 15px;
    font-size: 36px;
    color: var(--cinza_texto_destaque);
    font-weight: 500;
}

.btn-group-custom{
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background: var(--branco);
    border: 1px solid var(--cinza_borda);
    border-radius: 6px;
    color: var(--azul);
    font-size: 36px;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
}

.icon-btn:hover{
    background: var(--azul);          /* amarelo */
    color: var(--verde);       /* azul escuro */
    border-color: var(--azul);
    transform: translateY(-3px);
}

.thm-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 65px;
    padding: 0 33px;    
    background: var(--branco);
    border: 1px solid var(--cinza_borda);
    color: var(--azul);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--fonte-padrao);
    border-radius: 6px;
    cursor: pointer;
    transition: all .5s ease;
}

.thm-btn:hover{
    background: var(--azul);
    color: var(--verde);
    transform: translateY(-3px);
}

/*****************************************************************************/
/***                      FINAL FAIXA DE TÍTULOS                           ***/
/*****************************************************************************/

/*****************************************************************************/
/***                                                                       ***/
/***                        6 - BARRA DE MENU                              ***/
/***                                                                       ***/
/*****************************************************************************/

/* ==========================
   MENU
========================== */

.faixa-menu{
    width: 100%;
    background-color: var(--azul);
    transition: box-shadow .3s ease;
}

/* Lista do menu */
.faixa-menu .navbar-nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Itens */
.faixa-menu .nav-link{
    display: block;

    background-color: var(--azul);
    color: var(--branco) !important;

    font-family: var(--fonte-padrao);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;

    padding: 10px 26px;

    box-sizing: border-box;

    transition:
        background-color .3s ease,
        color .3s ease;
}

/* Hover */
.faixa-menu .nav-link:hover{
    color: var(--verde) !important;
}

/* Menu ativo  */
.faixa-menu .nav-link.active{
    background-color: var(--vermelho);
    color: var(--verde) !important;
    border-radius: 6px;
}

/* ==========================
   MENU FIXO
========================== */

.faixa-menu.menu-fixa{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;

    animation: menuDesce .7s cubic-bezier(.22,.61,.36,1);

    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

body.menu-fixa{
    padding-top: 65px;
}

/* ==========================
   Drop Down
========================== */

/* Itens do dropdown */
.dropdown-item{
    font-family: var(--fonte-padrao);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--azul);

    padding: 12px 25px;

    transition: all .3s ease;
}


/* Efeito ao passar o mouse */
.dropdown-item:hover{
    background-color: var(--azul);
    color: var(--verde);
    padding-left: 35px;
}


@keyframes menuDesce{

    from{
        transform: translateY(-100%);
        opacity: 0;
        filter: blur(6px);
    }

    to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }

}

/* ==========================
   DROPDOWN
========================== */

@media (min-width: 992px){

    .navbar .dropdown:hover > .dropdown-menu{
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-toggle::after{
        transition: transform .2s;
    }

    .navbar .dropdown:hover .dropdown-toggle::after{
        transform: rotate(180deg);
    }

}

/*****************************************************************************/
/***                        FINAL BARRA DE MENU                            ***/
/*****************************************************************************/

/*****************************************************************************/
/***                                                                       ***/
/***                            7 - RODAPÉ                                 ***/
/***                                                                       ***/
/*****************************************************************************/

/*****************************************************************************/
/*                     CONTAINER PRINCIPAL DO RODAPÉ                         */
/*****************************************************************************/

.footer-site {
    background: linear-gradient(rgba(15, 23, 36, 0.92), rgba(15, 23, 36, 0.95)), 
                url('/img/padrao/fundorodape.png') center/cover no-repeat;
    color: var(--cinza_texto);
    width: 100%;
}

.footer-content-row {
    padding-top: 3rem;
    padding-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/*****************************************************************************/
/*                    TÍTULOS PADRÃO (COLUNAS 2, 3 E 4)                      */
/*****************************************************************************/

.footer-title {
    /* Fundo escuro com listras diagonais a 45 graus */
    background: repeating-linear-gradient(
          -45deg,
        #111722,
        #111722 2px,
        #1a2230 2px,
        #1a2230 4px
    );
    color: var(--branco);
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0.6rem 1rem;
    margin-bottom: var(--dist_vertical_footer);
    border-left: 3px solid var(--verde);
    text-transform: uppercase;
    line-height: 1.2;    
}

/*****************************************************************************/
/*                              PRIMEIRA COLUNA                              */
/*****************************************************************************/

.footer-col-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-col-about .footer-logo {
    max-width: 170px;
    height: auto;
    display: block;
    margin: 0; /* Alinha perfeitamente com o topo dos títulos ao lado */
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--cinza_texto_branco);
    line-height: 1.5;
    margin: 1rem 0;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--verde);
    font-size: 0.78rem;
    color: var(--cinza_texto_branco);
    margin: 0; /* Trava na linha de base */
}

.footer-badge i {
    color: var(--verde);
    font-size: 1rem;
}

/*****************************************************************************/
/*                              COLUNA NAVEGAÇÃO                             */
/*****************************************************************************/

.nav-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.nav-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-columns ul li {
    margin-bottom: 0.5rem;
}

.nav-columns ul li a {
    color: var(--cinza_texto_branco);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.nav-columns ul li a:hover {
    color: var(--verde);
    padding-left: 4px;
}

/*****************************************************************************/
/*                               COLUNA NOTÍCIAS                             */
/*****************************************************************************/
.footer-news-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-item:last-child {
    border-bottom: none;
}

.news-thumb {
    flex: 0 0 55px;
    height: 55px;
    border-radius: 3px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Centraliza o foco da foto */
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.news-title {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.3;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-title:hover {
    color: var(--verde);
}

.news-date {
    font-size: 0.75rem;
    color: var(--verde);
}

/*****************************************************************************/
/*                                  CONTATO                                  */
/*****************************************************************************/
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-list li:last-child {
  border-bottom: none;
}

.contact-icon { 
  flex: 0 0 25px;       /* Largura fixa para os ícones ficarem alinhados entre si */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--verde);
}

.contact-text {
  display: flex;
  flex-direction: column; /* Organiza as várias linhas de texto uma abaixo da outra */
  font-size: 0.85rem;
  color: var(--cinza_texto_branco);
  line-height: 1.3;
}

.contact-text a {
  color: var(--cinza_texto_branco);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--verde);
}

/*****************************************************************************/
/*              BARRA INFERIOR DE DIREITOS E REDES SOCIAIS                   */
/*****************************************************************************/

.footer-bottom {
    background-color: var(--azul_marinho);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--cinza_texto);
}

.footer-bottom-content p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--branco);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--verde);
    border-color: var(--verde);
    color: var(--azul);
}

/*****************************************************************************/
/*                     BOTÃO VOLTAR AO TOPO (FLUTUANTE)                      */
/*****************************************************************************/

.scroll-top-btn {
    
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
  
    background: transparent;
    border: 3px solid var(--amarelo_01); /* Borda bem fina e discreta */
    color: var(--amarelo_01);
  
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Faz o formato circular */
  
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top-btn {
    opacity: 0;
    visibility: hidden;  
}

.scroll-top-btn i {
  font-size: 1.5rem;      /* Aumenta o tamanho da seta (ajuste como preferir) */
  font-weight: 900;       /* Deixa a seta mais encorpada/grossa */
  -webkit-text-stroke: 2px; /* O SEGREDO: adiciona um contorno para deixar mais grossa */
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--amarelo_01); /* Preenche o círculo no hover */
    color: var(--azul);      /* Ícone fica escuro para dar contraste */
    transform: translateY(-3px);
}
















/*****************************************************************************/
/***                              FINAL RODAPÉ                             ***/
/*****************************************************************************/

