body {
    margin: 0;
    font-family: Arial, sans-serif;
}

h3{
    margin-left: 10px;
}
.content {
            flex: 1;
            padding: 20px;
        }
.footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 8px 0;
            position: fixed;
            width: 100%;
            bottom: 0px;
            left: 0;
            font-size: 14px;
        }

        .logout-modal {
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

.logout-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.logout-header p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.logout-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.logout-buttons .button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.logout-buttons .button.primary {
    background-color: #4285F4;
    color: #fff;
}

.logout-buttons .button.primary:hover {
    background-color: #357ae8;
}

.logout-buttons .button.secondary {
    background-color: #f4f4f4;
    color: #333;
}

.logout-buttons .button.secondary:hover {
    background-color: #e0e0e0;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Fim modal de Logout */


/*Lado direito para logout */ 

/* Estilo geral do menu */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
}

.user-menu .menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 20px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.user-menu .menu-toggle:hover {
    background-color: #e0e0e0;
}

.user-menu i {
    font-size: 1.5rem;
    color: #666;
}

.user-menu span {
    color: #333;
    font-weight: 500;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f4f4f4;
    color: #000;
}

.user-menu:hover .dropdown-menu {
    display: block;
}

/* Responsividade para garantir usabilidade em dispositivos menores */
@media (max-width: 768px) {
    .user-menu span {
        display: none;
    }
    .user-menu i {
        margin-right: 0;
    }
}



/*Fim logout  */

  /* Estilização do modal */
  .modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% da parte superior e centraliza */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Largura do modal */
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}


.button-hover-reveal-wrapper {
  overflow: hidden;
  border: 2px solid #1779ba;
  border-radius: 5000px;
  text-align: center;
  width: 100%;
  background: #fefefe;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button-hover-reveal-wrapper:hover {
  border: none;
  background-color: #1779ba;
  transition: background-color 0.5s ease;
}

.button-hover-reveal-wrapper:hover .button-hover-reveal {
  display: block;
  font-size: 16px;
  padding: 22px;
}

.button-hover-reveal-wrapper:hover .button-hover-reveal:hover {
  transition: background-color 0.5s ease;
  background-color: rgba(0, 0, 0, 0.1);
}

.button-hover-reveal-wrapper:hover label {
  display: none;
}

.button-hover-reveal-wrapper .button-hover-reveal {
  display: none;
  color: #fefefe;
  width: 50%;
  z-index: 1;
}

.button-hover-reveal-wrapper label {
  padding: 16px;
  color: #1779ba;
  font-size: 16px;
  font-weight: bold;
}

.button-add-cart {
  position: relative;
  overflow: hidden;
}

.button-add-cart.is-adding {
  border-radius: 25px;
  max-width: 50px;
  max-height: 50px;
  cursor: default;
}

.button-add-cart.is-adding::after {
  -webkit-animation: fadeIn 0.3s ease-in, spin 1.3s infinite ease-in-out;
          animation: fadeIn 0.3s ease-in, spin 1.3s infinite ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.button-add-cart.is-adding span {
  opacity: 0;
}

.button-add-cart::after {
  content: " ";
  border-top: solid 4px #17cae6;
  border-right: solid 4px #17cae6;
  border-bottom: solid 4px #17cae6;
  border-left: solid 4px transparent;
  border-radius: 50px;
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  margin: auto;
  max-width: 30px;
  max-height: 30px;
  opacity: 0;
  z-index: 1;
}

@-webkit-keyframes spin {
  0%, 5% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  95%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0%, 5% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  95%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.switch input:checked ~ .switch-paddle, .switch.primary input:checked ~ .switch-paddle {
  background: #1779ba;
}

.switch.secondary input:checked ~ .switch-paddle {
  background: #767676;
}

.switch.success input:checked ~ .switch-paddle {
  background: #3adb76;
}

.switch.alert input:checked ~ .switch-paddle {
  background: #cc4b37;
}

.switch.warning input:checked ~ .switch-paddle {
  background: #ffae00;
}


.translucent-form-overlay {
    max-width: 400px; /* Diminui a largura máxima */
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Fundo mais claro com transparência */
    padding: 20px; /* Ajusta o espaçamento interno */
    color: #333; /* Cor do texto mais escura */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 100px auto; /* Margem superior e centralização horizontal */
    border-radius: 8px; /* Bordas arredondadas para dar suavidade */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leve sombra para dar profundidade */
}

/* Para dispositivos móveis */
@media screen and (max-width: 768px) {
    .translucent-form-overlay {
        max-width: 90%; /* Para reduzir a largura em telas menores */
    }
}


.translucent-form-overlay .columns.row {
  display: block;
}

.translucent-form-overlay h3, .translucent-form-overlay label {
  color: #fefefe;
}

.translucent-form-overlay input, .translucent-form-overlay select {
  color: #8a8a8a;
}

.translucent-form-overlay input::-webkit-input-placeholder {
  color: #8a8a8a;
}

.translucent-form-overlay input:-ms-input-placeholder {
  color: #8a8a8a;
}

.translucent-form-overlay input::placeholder {
  color: #8a8a8a;
}

.pagination ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #ccc;
    color: #333;
}

.pagination li.active a {
    font-weight: bold;
    background-color: #007bff;
    color: #fff;
}

.callout_{
  display: none;

}


/* Estilo para o spinner */
        #loading {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex; /* Adicionado para centralizar o conteúdo */
    flex-direction: column; /* Adicionado para empilhar o spinner e texto verticalmente */
}

        /* CSS para o spinner */
        .spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(195, 195, 195, 0.6);
    border-radius: 50%;
    border-top-color: #636767;
    animation: spin 1s infinite linear;
    margin-bottom: 10px; /* Espaçamento entre o spinner e o texto */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            z-index: 9999;
            display: none;
        }
        .loader {
            border: 16px solid #f3f3f3;
            border-radius: 50%;
            border-top: 16px solid #3498db;
            width: 120px;
            height: 120px;
            animation: spin 2s linear infinite;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        


#loading-text-long {
    display: block;
    font-size: 3em;
    color: #00CED1;
}



form .form-icons {
  text-align: center;
}

form .form-icons h4 {
  margin-bottom: 1rem;
}

form .form-icons .input-group-label {
  background-color: #1779ba;
  border-color: #1779ba;
}

form .form-icons .input-group-field {
  border-color: #1779ba;
}

form .form-icons .fa {
  color: white;
  width: 1rem;
}
/* Estilo para o fieldset */
fieldset {
    margin: 0 auto; /* Centraliza horizontalmente */
    padding: 20px; /* Espaçamento interno */
    width: auto; /* Define uma largura, ajuste conforme necessário */
    max-width: auto; /* Largura máxima para evitar que fique muito grande */
    border: 2px solid #ccc; /* Borda do fieldset */
    border-radius: 10px; /* Cantos arredondados */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra para um efeito visual */
    background-color: #f9f9f9; /* Cor de fundo */
}


.hover-underline-menu {
  width: 100%;
}

.hover-underline-menu .menu {
  background-color: #F5F5F5;
}

.hover-underline-menu .menu a {
  color: #00CED1;
  padding: 1.2rem 1.5rem;
  position:left ;
}

.hover-underline-menu .menu .underline-from-center {
  position: relative;
}

.hover-underline-menu .menu .underline-from-center::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.125rem);
  border-bottom: 0.125rem solid #FFA500;
  left: 50%;
  right: 50%;
  transition: all 0.5s ease;
}

.hover-underline-menu .menu .underline-from-center:hover::after {
  left: 0;
  right: 0;
  transition: all 0.5s ease;
}


/*abaixo cdd do TOP BAR menu suspenso */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Estilos da Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    color: white;
    position: fixed; /* Fixa a barra no topo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Garante que a barra fique sobre outros elementos */
}

.left-section .logo {
    height: 180px;
}

.center-section {
    display: flex;
    gap: 30px;
    position: relative; /* Necessário para o submenu */
}

/* Estilos dos links da navegação */
.center-section .nav-link {
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    font-size: clamp(1rem, 2vw, 2rem); /* Responsivo */
}

.center-section .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: white;
    transition: width 0.3s;
}

.center-section .nav-link:hover::after {
    width: 100%;
}

.right-section {
    display: flex;
    justify-content: flex-end; /* Alinha à direita */
    align-items: center; /* Centraliza verticalmente */
}


.user-icon {
   height: 30px;
    cursor: pointer;
    float: right; /* Move para a direita */
    margin-right: 10px; /* Espaçamento em relação às bordas */
}

.user-icon i {
    font-size: 24px; /* Ajuste o tamanho do ícone conforme necessário */
}


/* Estilo base para a div content */
.content {
  margin-top: 100px; /* Ajuste conforme a altura da barra superior */
  padding: 2rem 4rem;
  color: white; /* Ajusta a cor do texto para branco */
}


.subnav-hero-section {
  text-align: center;
  background: #1779ba;
  background-size: cover;
  position: relative;
  overflow: visible;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 300px;
}

.subnav-hero-section .subnav-hero-headline {
  color: #fefefe;
}

.subnav-hero-subnav {
  float: none;
  position: absolute;
  text-align: center;
  margin: 0 auto;
  bottom: 0;
  width: 100%;
}

.subnav-hero-subnav li {
  float: none;
  display: inline-block;
}

.subnav-hero-subnav li a {
  padding: 0.9rem 1rem;
  font-size: 0.75rem;
  color: #fefefe;
  text-transform: uppercase;
  display: block;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.35s ease-in-out;
}

.subnav-hero-subnav li a.is-active {
  background: rgba(254, 254, 254, 0.15);
}

.subnav-hero-subnav li a:hover {
  background: rgba(254, 254, 254, 0.15);
}


$white: #fefefe;




/* Cor de fundo para diferentes slides */
.orbit-slide:nth-of-type(1) .content {
  background: dodgerblue;
}

.orbit-slide:nth-of-type(2) .content {
  background: rebeccapurple;
}

.orbit-slide:nth-of-type(3) .content {
  background: darkgoldenrod;
}

.orbit-slide:nth-of-type(4) .content {
  background: lightseagreen;
}



.top-bar {
  position: relative;
  
  padding: 10px;
  display: flex;
  justify-content: center; /* Centraliza horizontalmente o conteúdo */
}

.top-bar-left, .top-bar-right {
  flex-grow: 0;
  display: flex;
  align-items: center; /* Mantém o conteúdo verticalmente alinhado */
}

.top-bar-left {
  justify-content: center; /* Centraliza os links na esquerda */
}

.logo-container {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 1000;
}

.logo {
  height: 140px;
}


/*logo somente da index */

/* Centraliza a logo abaixo da top-bar */
.logo-container_index {
    position: absolute;
    top: 150px;
    left: 50%; /* Ponto de referência central */
    transform: translateX(-50%); /* Ajusta a logo para ficar realmente no centro */
    z-index: 1000;
    transition: all 0.5s ease; /* Transição suave */
}

/* Quando a logo precisar mover para a esquerda */
.logo-container_index.move-left {
    left: 20px; /* Volta para a posição inicial à esquerda */
    transform: translateX(0); /* Remove a centralização */
}

/* Configura a logo na index */
.logo_index {
    height: 340px;
    transition: all 0,5s ease-in; /* Adiciona transição suave à logo */
     width: auto;           /* Ajusta a largura automaticamente para manter a proporção */
}


/* Estilo da Top-Bar */
.top-bar-right {
    margin-left: auto; /* Garante que o conteúdo da direita fique à direita */
}

.top-bar {
    background-color: #ececec; /* Fundo cinza claro */
    border-bottom: 1px solid #e0e0e0; /* Borda inferior sutil */
    padding: 0.5rem;
}

/* Links do menu (esquerda) */
.top-bar-left .menu a {
    color: #545454; /* Azul claro para links */
    font-weight: 500; /* Negrito moderado */
    text-transform: uppercase;
}


/* Menu na direita */
.top-bar-right .menu {
    margin: 0; /* Remove margem adicional */
    padding: 0; /* Remove padding adicional */
    list-style: none; /* Remove marcadores da lista */
}

.top-bar-right .menu a {
    color: #545454; /* Azul claro para links */
    text-decoration: none; /* Remove sublinhado dos links */
    font-weight: 500; /* Negrito moderado */
}

.top-bar-right .menu a:hover {
    color: #005f99; /* Azul mais escuro ao passar o mouse */
}

/* Ajustando o espaçamento e alinhamento */
.top-bar .menu {
    margin-bottom: 0;
}

.top-bar-right .menu {
    display: flex;
    align-items: center;
}

.top-bar .menu li {
    margin-right: 15px; /* Espaçamento entre os itens */
}

/* Formato do botão de Login e Cadastro */
.top-bar .menu li a {
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.top-bar .menu li a.load-content {
    /*background-color: #007acc;*/
    color: #545454;
    border: none;
}

.top-bar .menu li a.load-content:hover {
    background-color: #3accd4;
    color: #545454;
}
.top-bar .menu li a.load:hover {
    background-color: #3accd4;
    color: #545454;
}


.top-bar-right .submenu {
    display: none;
}

.top-bar-right .has-submenu:hover .submenu {
    display: block;
}



.button-container {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    margin-top: 20px; /* Espaçamento superior, opcional */
}

.button-container .button {
    margin: 0 10px; /* Espaçamento entre os botões */
}

.about-actec {
    max-width: 800px; /* Largura máxima do texto */
    margin: 20px auto; /* Centraliza o conteúdo */
    padding: 20px; /* Espaçamento interno */
    background-color: var(--highlight-color); /* Fundo do texto */
    border-radius: var(--border-radius); /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidade */
    color: #333; /* Cor do texto */
    font-family: Arial, sans-serif; /* Fonte */
    line-height: 1.6; /* Espaçamento entre linhas */
}

.about-actec h2 {
    color: var(--primary-color); /* Cor do título */
    margin-bottom: 10px; /* Espaçamento abaixo do título */
}

.about-actec p {
    margin-bottom: 15px; /* Espaçamento entre parágrafos */
}

/* Estilos básicos para os botões */
.button-simple {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.button-simple:hover {
    background-color: #45a049;
}
.button-danger {
    background-color: #f44336;
}
.button-danger:hover {
    background-color: #e53935;
}


/* Estilo para manter o dropdown alinhado à direita */
.user-menu {
    position: relative;
}

#user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff; /* Cor de fundo */
    border: 1px solid #ddd; /* Borda */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
    padding: 10px;
    min-width: 200px;
    display: none; /* Ocultar inicialmente */
    z-index: 999; /* Garantir sobreposição */
}

#user-dropdown li {
    list-style: none;
    margin: 0;
}

#user-dropdown a {
    display: block;
    color: #333;
    padding: 8px 12px;
    text-decoration: none;
}

#user-dropdown a:hover {
    background-color: #f1f1f1; /* Fundo ao passar o mouse */
}

/* Exibir dropdown quando ativado */
#user-dropdown.show {
    display: block;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    #user-dropdown {
        right: 10px; /* Ajustar alinhamento */
    }
}
