@charset "UTF-8";
/**
 * InfoActive — base CSS (substitui Materialize)
 * Grid, utilitários e componentes estruturais.
 */

:root {
  --ia-container-max: 1280px;
  --ia-gutter: 0.75rem;
  --ia-color-primary: #e5440b;
  --ia-color-text: #333333;
  --ia-color-border: #9e9e9e;
  --ia-color-error: #f44336;
  --ia-radius: 2px;
  --ia-shadow-1: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  --ia-z-nav: 997;
  --ia-z-overlay: 998;
  --ia-z-sidenav: 999;
  --ia-z-modal: 1003;
  --ia-bp-m: 601px;
  --ia-bp-l: 993px;
  --ia-bp-xl: 1201px;
}

/* Reset básico herdado do Materialize */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  border-style: none;
}

/* ---- Grid (float — compatível com colunas aninhadas em .bloco-produtos) ---- */
.container {
  width: 100%;
  max-width: var(--ia-container-max);
  margin: 0 auto;
  padding: 0 var(--ia-gutter);
}

.row {
  margin-left: calc(var(--ia-gutter) * -1);
  margin-right: calc(var(--ia-gutter) * -1);
  margin-bottom: 20px;
}
/*
.row::after,
.row::before {
  content: "";
  display: table;
}*/

.row::before,
.row::after {
    content: "";
    display: table;
}

.row::after {
    clear: both;
}
.row:last-child {
  margin-bottom: 0;
}

.col {
  float: left;
  box-sizing: border-box;
  padding: 0 var(--ia-gutter);
  min-height: 1px;
  width: 100%;
}

.col.s1  { width: 8.333333%; }
.col.s2  { width: 16.666667%; }
.col.s3  { width: 25%; }
.col.s4  { width: 33.333333%; }
.col.s5  { width: 41.666667%; }
.col.s6  { width: 50%; }
.col.s7  { width: 58.333333%; }
.col.s8  { width: 66.666667%; }
.col.s9  { width: 75%; }
.col.s10 { width: 83.333333%; }
.col.s11 { width: 91.666667%; }
.col.s12 { width: 100%; }

@media (min-width: 601px) {
  .col.m1  { width: 8.333333%; }
  .col.m2  { width: 16.666667%; }
  .col.m3  { width: 25%; }
  .col.m4  { width: 33.333333%; }
  .col.m5  { width: 41.666667%; }
  .col.m6  { width: 50%; }
  .col.m7  { width: 58.333333%; }
  .col.m8  { width: 66.666667%; }
  .col.m9  { width: 75%; }
  .col.m10 { width: 83.333333%; }
  .col.m11 { width: 91.666667%; }
  .col.m12 { width: 100%; }
}

@media (min-width: 993px) {
  .col.l1  { width: 8.333333%; }
  .col.l2  { width: 16.666667%; }
  .col.l3  { width: 25%; }
  .col.l4  { width: 33.333333%; }
  .col.l5  { width: 41.666667%; }
  .col.l6  { width: 50%; }
  .col.l7  { width: 58.333333%; }
  .col.l8  { width: 66.666667%; }
  .col.l9  { width: 75%; }
  .col.l10 { width: 83.333333%; }
  .col.l11 { width: 91.666667%; }
  .col.l12 { width: 100%; }
}

@media (min-width: 1201px) {
  .col.xl1  { width: 8.333333%; }
  .col.xl2  { width: 16.666667%; }
  .col.xl3  { width: 25%; }
  .col.xl4  { width: 33.333333%; }
  .col.xl5  { width: 41.666667%; }
  .col.xl6  { width: 50%; }
  .col.xl7  { width: 58.333333%; }
  .col.xl8  { width: 66.666667%; }
  .col.xl9  { width: 75%; }
  .col.xl10 { width: 83.333333%; }
  .col.xl11 { width: 91.666667%; }
  .col.xl12 { width: 100%; }
}

/* Wrappers de produtos (colunas não são filhas diretas de .row) */
.bloco-produtos,
.bloco-produtos #verMais {
  width: 100%;
/*  margin-left: calc(var(--ia-gutter) * -1);
  margin-right: calc(var(--ia-gutter) * -1);*/
}

.bloco-produtos::after,
.bloco-produtos #verMais::after {
  content: "";
  display: table;
  clear: both;
}

/* ---- Utilitários ---- */
.left   { float: left !important; }
.right  { float: right !important; }
.center { text-align: center; }
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.valign-wrapper {
  display: flex;
  align-items: center;
}

.responsive-img,
video.responsive-video {
  max-width: 100%;
  height: auto;
}

.hide-on-med-and-down {
  display: none !important;
}

@media (min-width: 993px) {
  .hide-on-med-and-down {
    display: block !important;
  }
  ul.hide-on-med-and-down {
    display: flex !important;
  }
}

.hide-on-large-only { display: block !important; }

@media (min-width: 993px) {
  .hide-on-large-only { display: none !important; }
}

@media only screen and (min-width: 993px) {
    .container {
        width: 70%;
    }
}
*, *:before, *:after {
    box-sizing: inherit;
}
/* ---- Nav ---- */
nav {
  background-color: #fff;
  width: 100%;
  height: 56px;
  line-height: 56px;
}
a{
  text-decoration: none;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  float: none;
  padding: 0;
  list-style:none;
}
ul,
ol{
    list-style:none;
}
nav a {
  color: inherit;
}

/* ---- Cards ---- */
.card {
  position: relative;
  margin: 0.5rem 0 1rem;
  background-color: #fff;
  border-radius: var(--ia-radius);
  overflow: hidden;
  box-shadow: var(--ia-shadow-1);
}

.card .card-title {
  font-size: 24px;
  font-weight: 300;
  display: block;
  line-height: 32px;
}

.card .card-content {
  padding: 24px;
}

.card .card-content:last-child {
  border-radius: 0 0 var(--ia-radius) var(--ia-radius);
}

.card .card-action {
  position: relative;
  padding: 16px 24px;
  border-top: 1px solid rgba(160, 160, 160, 0.2);
}

.card .card-action:last-child {
  border-radius: 0 0 var(--ia-radius) var(--ia-radius);
}

.card .card-action a {
  color: var(--ia-color-primary);
  margin-right: 24px;
  text-transform: uppercase;
}

/* ---- Footer ---- */
.page-footer {
  padding-top: 20px;
  color: #fff;
}

/* ---- Botões base ---- */
.btn,
.btn-flat {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease-out;
  -webkit-tap-highlight-color: transparent;
}

.btn-flat {
  background-color: transparent;
  color: #343434;
  padding: 0 1rem;
}

.btn-flat:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* ---- Formulários ---- */
.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.input-field label {
    color: var(--ia-color-border);
    position: absolute;
    top: 0.5rem;
    left: 12px;
    font-size: 1rem;
    cursor: text;
    transition: transform 0.2s ease-out, color 0.2s ease-out, font-size 0.2s ease-out;
    transform-origin: 0 0;
    pointer-events: none;
}

.input-field label.active {
  transform: translateY(-100%) scale(0.8);
  color: var(--ia-color-primary);
}

.input-field input,
.input-field textarea,
.input-field select {
  width: 100%;
  padding: 0.6rem 0 0.4rem;
  font-size: 1rem;
  color: var(--ia-color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ia-color-border);
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

.input-field input:focus,
.input-field textarea:focus,
.input-field select:focus {
  border-bottom: 1px solid var(--ia-color-primary);
  box-shadow: 0 1px 0 0 var(--ia-color-primary);
}

.input-field input.error,
.input-field textarea.error,
.input-field select.error {
  border-bottom: 1px solid var(--ia-color-error);
  box-shadow: 0 1px 0 0 var(--ia-color-error);
}

.input-field .prefix {
  position: absolute;
  top: 0.75rem;
  width: 3rem;
  font-size: 1.5rem;
  text-align: center;
}

.input-field .prefix ~ input,
.input-field .prefix ~ textarea,
.input-field .prefix ~ label {
  margin-left: 3rem;
  width: calc(100% - 3rem);
}

textarea.materialize-textarea,
.input-field textarea {
  min-height: 6rem;
  resize: vertical;
  line-height: 1.5;
  overflow-y: auto;
  padding-top: 0.8rem;
}

.input-field [type="checkbox"] + span,
.input-field [type="radio"] + span {
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.4;
}

.input-field [type="checkbox"],
.input-field [type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.input-field [type="checkbox"] + span::before,
.input-field [type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ia-color-border);
  border-radius: 2px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.input-field [type="radio"] + span::before {
  border-radius: 50%;
}

.input-field [type="checkbox"]:checked + span::before,
.input-field [type="radio"]:checked + span::before {
  border-color: var(--ia-color-primary);
  background: var(--ia-color-primary);
}

.input-field [type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

select {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid var(--ia-color-border);
  border-radius: var(--ia-radius);
  background: #fff;
}
.side-nav a {
    color: rgba(0,0,0,0.87);
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
}
/* ---- Side nav (menu mobile) ---- */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  z-index: var(--ia-z-sidenav);
  transform: translateX(-105%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.side-nav.open {
  transform: translateX(0);
}

.side-nav li {
  float: none;
  line-height: 48px;
}

.side-nav li > a {
  display: block;
  padding: 0 32px;
  color: var(--ia-color-text);
  font-size: 14px;
  text-decoration: none;
}

.side-nav li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.side-nav .sub-menu {
  display: none;
  padding-left: 1rem;
}

.side-nav .sub-menu.is-open {
  display: block;
}

.side-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--ia-z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.button-collapse {
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: inherit;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

@media (min-width: 993px) {
  .button-collapse {
    display: none;
  }
}

/* ---- Collapsible / Accordion ---- */
.collapsible {
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.collapsible li {
  border-bottom: 1px solid #ddd;
}

.collapsible-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
  user-select: none;
}

.collapsible-header:hover {
  background: #f5f5f5;
}

.collapsible-body {
  display: none;
  padding: 1rem;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.collapsible li.active > .collapsible-body {
  display: block;
}

/* ---- Modal ---- */
.modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  z-index: var(--ia-z-modal);
  border-radius: 2px;
  box-shadow: 0 24px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12);
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--ia-z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  padding: 24px;
}

.modal-footer {
  padding: 8px 16px;
  border-top: 1px solid #e0e0e0;
  text-align: right;
}

.modal-close {
  cursor: pointer;
}

/* ---- Tooltips ---- */
.tooltipped {
  position: relative;
  cursor: pointer;
}

.theme-tooltip {
  position: absolute;
  z-index: 2000;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.2;
  color: #fff;
  background: #323232;
  border-radius: 2px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.theme-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---- Tabelas responsivas ---- */
.responsive-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table.bordered {
  border-collapse: collapse;
}

table.bordered th,
table.bordered td {
  border: 1px solid #d0d0d0;
  padding: 8px 12px;
}

table.highlight tbody tr:hover {
  background-color: #f5f5f5;
}

/* ---- Datepicker nativo ---- */
input.datepicker {
  cursor: pointer;
}

.btn .right,
.btn .fa-solid.right {
  margin-left: 8px;
}


@media (max-width: 992px) {

  #header .topo-info ul li {
      float: left!important;
  }
  .container {
     margin: 0 auto;
    max-width: 1280px;
    width: 90%;
  }

}
