/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background: #f8f8f2 url("../images/bg.png") repeat;
}

/* ESTILO DO HEADER */
header {
  padding: 40px 0;
  .container {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
  }
  .logo img {
    max-width: 100%;
    height: auto;
  }
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
}

/* Telefone fixo fora do menu */
.telephone {
  text-align: right;
  color: red;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: sans-serif;
  position: absolute;
  top: -20px;
  right: 20px;
}

.telephone span {
  font-size: 14px;
  color: #ff0000;
}

.telephone strong,
a {
  padding-top: 4px;
  color: #d10202;
  font-weight: bold;
  display: block;
  font-size: 16px;
  text-decoration: none !important;
}

.telephone strong,
a :hover {
  color: #ff0000;
  transition: 0.5s;
  text-decoration: underline;
}

.nav-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 30px;

  .menu ul {
    display: flex;
    justify-content: end;
    gap: 24px;
    padding: 0;
    list-style: none;
    li a {
      text-decoration: none;
      color: #000;
      font-family: sans-serif;
      font-weight: 500;
      font-size: 18px;
      text-transform: uppercase;
      transition: 0.3s;
    }
    li a:hover {
      color: #ff0000;
      transition: 0.5s;
    }
  }
}

/* BOTÃO HAMBÚRGUER - Sempre oculto no desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #000;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Overlay escuro */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
  display: none;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ESTILO DO MAIN */
/* ESTILO DO CARROSSEL */
.slider {
  position: relative;
  /* max-width: 900px; */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

/* Slides empilhados com fade */
.slider .container {
  position: relative;
  width: 100%;
  box-shadow: 0px 7px 8px 2px rgba(0, 0, 0, 0.25); /* sombra suave ao redor */
}

.item-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out; /* transição suave */
}

.item-slider.active {
  position: relative; /* o slide ativo define a altura do slider */
  opacity: 1;
}

.item-slider img {
  width: 100%;
  display: block;
}

/* Botões */
.slider-btn {
  position: absolute;
  bottom: 20px; /* distância do fundo */
  top: auto; /* cancela o top: 50% */
  transform: none; /* remove o translateY */
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 20px;
  width: 47px;
  height: 43px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* botão da esquerda (voltar) */
.slider-btn.prev {
  right: 120px; /* fica à esquerda do "próximo" */
}

/* botão da direita (próximo) */
.slider-btn.next {
  right: 64px; /* encostado no canto direito */
}

.slider-btn:hover {
  background: #ff0000;
}

/* ESTILO DOS TEXTOS ABAIXO DO CARROSSEL */
.description {
  .container {
    gap: 10px;
    background-color: #f8f8f2;
    padding: 40px 0;
    box-shadow: 0px 7px 8px 2px rgba(0, 0, 0, 0.25); /* sombra suave ao redor */
  }
  .box-description {
    padding-left: 30px;
    h2 {
      color: #ff0000;
      font-family: sans-serif;
      font-size: 26px;
    }
    p {
      color: #000000;
      font-family: sans-serif;
      font-size: 13px;
      margin: 10px 0 10px 0;
      line-height: 22px;
      padding-right: 16px;
    }
    a {
      color: #ff0000;
      font-family: sans-serif;
      font-size: 14px;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
      transition: 0.5s;
    }
  }
}

/* ESTILO DA PAGINA DE EMPRESA */

.empresa,
.dicas,
.localizacao,
.contato,
.dicas_enxoval {
  .container {
    background-color: #f8f8f2;
    display: block;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.25);
  }
  .container > .container {
    display: flex;
    padding: 0 50px;
  }
  .title {
    display: block;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ece5;
    margin-bottom: 50px;
    h1 {
      margin: 0;
      color: #383936;
      font-family: sans-serif;
      font-size: 35px;
      text-transform: uppercase;
      width: auto;
      height: auto;
      display: inline-block;
      word-wrap: break-word;
      padding: 0 40px;
      position: relative;
    }
    h1::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -40px;
      transform: translateX(-84%);
      width: 0;
      height: 0;
      border-left: 25px solid transparent;
      border-right: 25px solid transparent;
      border-top: 25px solid #ffffff;
    }
  }
  .content {
    box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 25px 20px 60px 25px;
    margin-bottom: 50px;
    width: 621px;
    background-color: #ffffff;
    margin-right: 15px;
    p {
      color: #4b4b4b;
      font-family: sans-serif;
      font-size: 14px;
      line-height: 22px;
      margin-bottom: 15px;
      strong {
        font-weight: 600;
      }
    }
  }
  .tips {
    width: 345px;
    line-height: 30px;
    h2 {
      color: #e20c0c;
      font-family: sans-serif;
      font-size: 22px;
      margin-bottom: 20px;
      font-weight: 600;
    }
    span {
      display: block;

      &:not(::first-child) {
        border-top: 1px solid #fff;
      }
      &:not(:last-child) {
        border-bottom: 1px solid #e6e6e6;
      }

      &:first-child {
        border-top: 0 !important;
      }

      a {
        text-decoration: none;
        font-family: sans-serif;
        font-size: 14px;
        color: #9b9b9b;
      }
      a:hover {
        color: #696969;
        transition: 0.5s;
      }
    }
  }
}

/* ESTILO DA PAGINA DE DICAS */

.dicas {
  .content {
    h2 {
      color: #4b4b4b;
      font-family: sans-serif;
      font-size: 14px;
      line-height: 22px;
      margin-bottom: 15px;
    }
    ul li {
      color: #4b4b4b;
      font-family: sans-serif;
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 10px;
    }
    ul li:before {
      content: "– "; /* Adiciona um marcador de lista */
      color: #000000; /* Cor do marcador */
    }
  }
}

/* ESTILO DA PAGINA DE LOCALIZAÇÃO */

.localizacao {
  .content {
    h2 {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 4px;
      color: #f92521;
      font-family: sans-serif;
      font-weight: 400;
      em {
        font-style: italic;
      }
    }
    .address {
      padding-bottom: 46px;
      p {
        margin-bottom: 0px !important;
      }
      .tell {
        margin: 14px 0;
        h3 {
          font-family: sans-serif;
          font-size: 1.3rem;
          font-weight: 540;
          color: #333;
        }
      }
    }
  }
}

/* ESTILO DA PAGINA DE CONTATO */

.contato {
  .content {
    h2 {
      font-size: 22px;
      line-height: 30px;
      margin-bottom: 4px;
      color: #f92521;
      font-family: sans-serif;
      font-weight: 400;
      em {
        font-style: italic;
      }
    }
    .address {
      padding-bottom: 12px;
      p {
        margin-bottom: 0px !important;
        a {
          color: #000;
        }
      }
      .tell {
        margin: 14px 0;
        h3 {
          font-family: sans-serif;
          font-size: 1.3rem;
          font-weight: 540;
          color: #333;
        }
      }
    }
    .form {
      h2 {
        color: #c60018;
      }
      input {
        width: 100%;
        padding: 15px 10px;
        margin-bottom: 18px;
        border: 1px solid #ccc;
        box-sizing: border-box;
      }
      textarea {
        width: 100%;
        height: 100px;
        padding: 15px 10px;
        margin-bottom: 18px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        resize: vertical;
      }
      button {
        background-color: #ff0000;
        color: #fff;
        padding: 12px 20px;
        border: none;
        cursor: pointer;
        font-size: 16px;
      }
      button:hover {
        background-color: #d10202;
        transition: 0.5s;
      }
    }
  }
}

/* CONTINUAÇÃO DA PAGINA DE CONTATO, ESSE É O ESTILO DOS CAMPOS DO FOMULARIO */

#retorno-form {
  margin-top: 20px;
  border-radius: 5px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mensagem de Sucesso */
#retorno-form.sucesso .mensagem-sucesso {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.6;
}

#retorno-form.sucesso .mensagem-sucesso strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

/* Mensagem de Erro */
#retorno-form.erro .mensagem-erro {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-left: 4px solid #dc3545;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.6;
}

#retorno-form.erro .mensagem-erro strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

#retorno-form.erro .mensagem-erro ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

#retorno-form.erro .mensagem-erro li {
  margin: 5px 0;
}

/* Botão desabilitado durante envio */
.form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Estilo do campo de telefone */
input[name="telefone"] {
  font-family: monospace;
}

/* Campos obrigatórios com destaque visual */
.form input:required,
.form textarea:required {
  border-left: 3px solid #dc3545;
}

.form input:required:valid,
.form textarea:required:valid {
  border-left: 3px solid #28a745;
}

/* ESTILO DA PAGINA DE DICAS DE ENXOVAL */

.dicas_enxoval {
  .content {
    .date_fev {
      padding: 10px 0 0 0;
      text-align: center;
      background-color: #ee4e1d;
      width: 54px;
      height: 48px;
      margin-right: 16px;
      float: left;
      font-family: "Helvetica", Arial, sans-serif;
      font-size: 18px;
      font-weight: bold;
      color: #ffffff;
      text-shadow: 0 1px rgba(0, 0, 0, 0.4);

      .date_fev:nth-child(1) {
        font-size: 15px;
      }
      .date_fev:nth-child(2) {
        font-size: 22px;
      }
    }
    h2 {
      color: #4b4b4b;
      font-family: sans-serif;
      font-size: 20px;
      line-height: 22px;
      margin-bottom: 38px;
    }
    p {
      text-align: justify;
    }
    .link {
      font-family: sans-serif;
      font-size: 12px;
      color: #4b4b4b;
      a {
        color: #ee4e1d;
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
        transition: 0.5s;
      }
    }
  }
}

/* Produtos - Estilos */
.produtos {
  .container {
    background-color: #f8f8f2;
    display: block;
    box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.25);
  }

  .title {
    display: block;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ece5;
    margin-bottom: 50px;
  }

  .title h1 {
    margin: 0;
    color: #383936;
    font-family: sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    width: auto;
    height: auto;
    display: inline-block;
    word-wrap: break-word;
    padding: 0 40px;
    position: relative;
  }

  .title h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-84%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #ffffff;
  }

  .produtos-wrapper {
    padding: 0 50px;
    padding-bottom: 50px;
    position: relative;
  }

  .produtos-categorias {
    margin-bottom: 30px;
  }

  .produtos-categorias h2 {
    color: #9b9b9b;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
  }

  .produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .produto-card {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .produto-card:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
  }

  .produto-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f5f5f5;
  }

  .produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .produto-card:hover .produto-image img {
    transform: scale(1.05);
  }

  .produto-nome {
    padding: 15px;
    margin: 0;
    color: #4b4b4b;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-top: 1px solid #e6e6e6;
  }

  .produtos-ordenar {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
  }

  .produtos-ordenar select {
    padding: 10px 15px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    color: #4b4b4b;
    font-family: sans-serif;
    font-size: 14px;
    cursor: pointer;
    outline: none;
  }

  .produtos-busca {
    position: absolute;
    top: 0;
    right: 50px;
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
  }

  .produtos-busca input {
    padding: 10px 15px;
    border: none;
    background-color: transparent;
    font-family: sans-serif;
    font-size: 14px;
    outline: none;
    width: 200px;
  }

  .produtos-busca button {
    padding: 10px 12px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b9b9b;
    transition: color 0.3s ease;
  }

  .produtos-busca button:hover {
    color: #4b4b4b;
  }
}

/* Modal Galeria */
.galeria-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.galeria-modal.active {
  display: block;
}

.galeria-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

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

.galeria-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 50px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  font-weight: 300;
  line-height: 1;
  padding: 0;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s ease;
}

.galeria-close:hover {
  opacity: 0.7;
}

.galeria-prev,
.galeria-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  z-index: 10001;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.galeria-prev:hover,
.galeria-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.galeria-prev {
  left: 20px;
}

.galeria-next {
  right: 20px;
}

.galeria-image-container {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galeria-image-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

.galeria-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: sans-serif;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 3px;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsivo */
@media screen and (max-width: 1024px) {
  .produtos .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .produtos .produtos-wrapper {
    padding: 0 20px;
    padding-bottom: 30px;
  }

  .produtos .produtos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .produtos .produtos-busca {
    position: static;
    margin-bottom: 20px;
    width: 100%;
  }

  .produtos .produtos-busca input {
    width: 100%;
  }

  .galeria-prev {
    left: 10px;
    padding: 10px 15px;
    font-size: 30px;
  }

  .galeria-next {
    right: 10px;
    padding: 10px 15px;
    font-size: 30px;
  }

  .galeria-close {
    top: 10px;
    right: 20px;
    font-size: 40px;
  }
}

/* ESTILO FOOTER */
footer {
  padding-bottom: 5px;

  .container {
    background: #ece0c8;
    padding: 40px 0;
    justify-content: space-between;
    box-shadow: 0px 7px 8px 2px rgba(0, 0, 0, 0.25); /* sombra suave ao redor */

    .menu {
      padding: 0 40px;
      ul a {
        text-decoration: none;
        color: #ff0000;
        font-family: sans-serif;
        font-weight: 500;
        font-size: 18px;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 20px;
      }
      a:hover {
        color: #d10202;
        transition: 0.5s;
      }
    }

    .right-footer {
      padding-right: 40px;
      .info-footer {
        display: flex;
        gap: 20px;
        align-items: center;
      }
      .logo-footer {
        img {
          width: 200px;
        }
      }
      .address,
      a {
        /* text-align: right; */
        line-height: 22px;
        font-size: 14px;
        color: #b1906d;
        text-decoration: none;
        font-family: sans-serif;
      }
      a:hover {
        text-decoration: underline;
        color: #d10202;
        transition: 0.5s;
      }
    }
    .logo-indexnet {
      display: flex;
      justify-content: flex-end;
      padding: 20px 0 0 0;
    }
  }
}

/* ESTILO DO TELEFONE E WHATSAPP NO MOBILE */

.tell-fixo {
  background: linear-gradient(135deg, #00b33c 0%, #00952e 100%);
  padding: 15px;
  border-radius: 8px;
  display: none; /* Escondido por padrão */
}

/* RESPONSIVO PARA MOBILE */

@media (max-width: 575px) {
  /* ESTILO DA PAGINA HOME */

  .logo img {
    width: 210px;
  }

  /* Telefone fixo no mobile - fora do menu */
  header .container {
    flex-wrap: wrap;
  }

  .telephone {
    position: static;
    order: 3;
    width: 100%;
    text-align: center;
    align-items: flex-start;
    margin: 15px 0 0 30px;
  }

  .hamburger {
    order: 2;
  }

  .description .container {
    flex-direction: column;
    padding: 20px;
    gap: 26px;
  }

  .description .box-description {
    font-size: 20px;
  }

  .description .box-description p {
    font-size: 12px;
  }

  .hamburger {
    display: flex !important;
    margin-bottom: 40px;
  }

  .nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    z-index: 1000;
    padding: 125px 15px 30px;
    overflow-y: auto;
    margin-top: 0;
    .menu {
      margin-right: 20px;
    }
  }

  .nav-content.active {
    right: 0;
  }

  .menu ul {
    flex-direction: column;
    /* gap: 20px; */
    padding: 0;
    align-items: end;
  }

  .menu ul li {
    border-bottom: 1px solid #e0e0e0;
  }

  .menu ul li a {
    font-size: 20px;
    display: block;
    padding: 6px;
    font-family: sans-serif !important;
  }

  .menu ul li a:hover {
    color: #ff0000;
    transition: 0.5s;
    border-bottom: 1px solid #ff0000;
  }

  /* Overlay escuro */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 999;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* ESTILO DA PAGINA EMPRESA */

  .empresa,
  .dicas,
  .localizacao,
  .contato,
  .dicas_enxoval {
    .container > .container {
      flex-direction: column;
      padding: 0 4px;
      .tips {
        padding: 20px 0 20px 25px;
      }
      .content {
        width: auto;
        margin: 0;
        text-align: justify;
        ul li {
          line-height: 24px;
        }
      }
    }
  }

  /* ESTILO DA PAGINA LOCALIZAÇÃO */

  .localizacao {
    .content {
      h2 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 4px;
        color: #f92521;
        font-family: sans-serif;
        font-weight: 400;
        em {
          font-style: italic;
        }
      }
      .address {
        padding-bottom: 46px;
        p {
          font-size: 12px;
          margin-bottom: 0px !important;
        }
        .tell {
          margin: 14px 0;
          h3 {
            font-family: sans-serif;
            font-size: 16px;
            font-weight: 540;
            color: #333;
          }
        }
      }
      .map {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* Proporção 16:9 */
        height: 0;
        overflow: hidden;

        iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100% !important;
          height: 100% !important;
        }
      }
    }
  }

  /* ESTILO DA PAGINA CONTATO */

  .contato {
    .content {
      h2 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 4px;
        color: #f92521;
        font-family: sans-serif;
        font-weight: 400;
        em {
          font-style: italic;
        }
      }
      .address {
        padding-bottom: 46px;
        p {
          font-size: 12px;
          margin-bottom: 0px !important;
        }
      }
      .tell {
        margin: 14px 0;
      }
    }
  }

  /* ESTILO DO TELEFONE E WHATSAPP NO MOBILE */

  .tell-fixo {
    display: block; /* Exibe o elemento no mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    right: 0;
    z-index: 1000;
    padding: 10px 0 !important;
    background-color: #fae9c7 !important;
  }

  .buttons-wrapper {
    display: flex;
  }

  .btn {
    flex: 1;
    background-color: #004d1a;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 0 6px;
  }

  .btn:hover {
    background-color: #003d14;
  }

  .btn:active {
    transform: scale(0.98);
  }

  .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Impede que o ícone encolha */
  }

  .icon svg {
    width: 100%;
    height: 100%;
    fill: white;
  }

  .btn-text {
    display: inline; /* Mudado de flex para inline */
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap; /* Mantém o texto em uma linha */
  }

  /* Remove os estilos de label e action separados */
  .btn-label,
  .btn-action {
    display: inline; /* Coloca tudo na mesma linha */
    font-size: 16px;
    font-weight: bold;
    opacity: 1;
  }

  footer .container {
    flex-direction: column;
  }

  .container-footer {
    padding-bottom: 76px !important;
  }

  .right-footer {
    padding: 0 !important;
    .address {
      text-align: center !important;
    }
  }

  .info-footer {
    flex-direction: column-reverse;
    margin-top: 20px;
  }

  .logo-indexnet {
    justify-content: center !important;
    padding-top: 10px;
  }

  .slider {
    max-width: 100%;
  }
}

/* RESPONSIVO PARA TABLET E TELAS MAIORES */

@media screen and (max-width: 768px) {
  #retorno-form.sucesso .mensagem-sucesso,
  #retorno-form.erro .mensagem-erro {
    padding: 12px 15px;
    font-size: 13px;
  }

  #retorno-form.sucesso .mensagem-sucesso strong,
  #retorno-form.erro .mensagem-erro strong {
    font-size: 14px;
  }
}
