@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", system-ui, sans-serif;
}
body{
background:#111;
color:#fff;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("/image/logo/icon.png") no-repeat center;
  background-size: 500px;

  opacity: .20;

  filter: grayscale(100%) brightness(0.4);
  
  pointer-events: none;
  z-index: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background:#848063;
  border-radius: 10px;
}

.topo{
  position: relative;

display:flex;

justify-content:center;

align-items:center;

gap:70px;

padding:20px 40px;

margin:0;

background:#46453f;



}



/* LOGO */
.topo .links img{

height:60px;

width:auto;

display:block;

max-height:60px;

}



/* MENU */
nav .links{

display:flex;

align-items:center;

gap:40px;

}



/* LINKS */
nav .links a{

color:rgba(255, 255, 255, 0.829);

text-decoration:none;

font-size:28px;

font-weight:500;

margin:0;

transition: 0.5s ease-in-out;


}


nav .links a:hover{
 border-bottom: solid 2px #f1db5f;
 color: #f1db5f;


}
.hamburger{
  display: none;
  font-size: 30px;
  cursor: pointer;
  margin-left: auto;
  transition: transform 0.5s ease;
  user-select: none;
}

.hamburger.rotate{
  transform: rotate(180deg);
}

.theme-toggle {
  display: block;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);

  font-size: 22px;
  cursor: pointer;

  padding: 8px 12px;
  border-radius: 10px;

  transition: 0.3s ease;
}

.theme-toggle:hover {
  background: var(--card);
  transform: scale(1.05);
}

.lamp {
  width: 26px;
  height: 26px;
  color: #888; /* apagada padrão */
  transition: 0.4s ease;
}

  .theme-toggleMobile{
    display: none;
    
  }
/* 🌙 DARK = apagada */
body:not(.light) .lamp {
  color: #888;
}

/* ☀️ LIGHT = acesa */
body.light .lamp {
  color: #f1db5f;
  filter: drop-shadow(0 0 10px #f1db5f);
  transform: scale(1.1);
}
/* HERO */
.hero{
padding:100px 8%;
text-align:center;
}

.hero-title{
font-size:50px;
margin-bottom:20px;
}

.hero-sub{
font-size:22px;
opacity:.8;
}

/* GRID */
.servicos-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding:80px 8%;
cursor: none;
}

.card{
background:#1a1a1a;
padding:30px;
border-radius:20px;
transition:.4s;
text-align:center;
}

.card:hover{
transform:translateY(-10px);
border:1px solid #f1db5f;
}

.card i{
font-size:35px;
color:#f1db5f;
margin-bottom:15px;
}

.img-box{
position:relative;
max-width:500px;
margin:auto;
}

.img{
width:100%;
border-radius:20px;
}.beforeandafter{
  margin:200px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:solid #fff2a3;
  border-radius:20px;
  padding:20px;
}

.beforeandafter .title{
  padding:10px;
}

.beforeandafter span{
  color:#f1db5f;
}


/* SLIDER */
.before-after-container{
  position:relative;
  width:min(90vw,420px);
  aspect-ratio:9/16;
  overflow:hidden;
  border-radius:22px;
  margin-bottom:40px; /* importante pra vários sliders */
}

/* imagens */
.image{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
}

/* 🔥 NÃO definir imagem aqui mais */
/* .image1{} */

/* imagem de cima (depois) */
.image2{
  clip-path: inset(0 0 0 50%);
}


/* linha divisória */
.divider{
  position:absolute;
  top:0;
  left:50%;
  width:2px;
  height:100%;
  background:#ffffffc0;
  transform:translateX(-50%);
  z-index:5;
  pointer-events:none; /* evita bug de drag */
}


/* botão */
.handle{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#ffffffb7;
  padding:8px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:ew-resize;
  box-shadow:0 0 10px rgba(0,0,0,.3);
  z-index:6;
  pointer-events:auto;
}

.handle svg{
  display:block;
}

/* setas */
.handle .arrow {
  font-size:16px;
  color:#333;
  font-weight:bold;
  
}

/* efeito hover */
.handle:hover {
  transform:translate(-50%,-50%) scale(1.1);
}
.servicos{
position:sticky;
top:0;
height:100vh;
}

#slideImage{
width:50%;
position:absolute;
right:10%;
top:50%;
transform:translateY(-50%);
border-radius:20px;
}

.content{
position:absolute;
left:8%;
top:50%;
transform:translateY(-50%);
}

/* CONTATO */
.contato{
padding:100px;
text-align:center;
background:#222;
}
/* ================= CORTE EM VOO ================= */

.coorteemvoo{
  margin:120px 8%;
  display:flex;
  flex-direction:column;
  gap:60px;
}
.coorteemvoo span{
   font-size:26px;
  margin-bottom:15px;
   animation:textColor ease-in-out 6s infinite;
}
/* grid das máquinas */
.coorteemvoo{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:40px;
}

/* card */
.maquinascorte{
  background:#1a1a1a;
  border-radius:20px;
  padding:25px;
  transition:.4s;
}

.maquinascorte:hover{
  transform:translateY(-8px);
  border:1px solid #f1db5f;
}

/* título */
.maquinascorte .title{
  font-size:26px;
  margin-bottom:15px;
}

.maquinascorte .paragrafo{
  max-width:700px;   /* mais estreito = leitura melhor */
  margin:0 auto;
  
  font-size:18px;
  line-height:1.9;

  text-align:left;   /* melhor para textos longos */
  
  opacity:.92;

  background:rgba(255,255,255,0.03);
  padding:30px;
  border-radius:18px;

  border-left:4px solid #f1db5f;
}

/* imagem */
.painel{
  width:100%;
  border-radius:15px;
  margin-bottom:15px;
}

/* texto */
.paragrafo{
  font-size:15px;
  opacity:.8;
  line-height:1.5;
}


/* ================= MESA ================= */

.mesa{
  grid-column:1 / -1; /* ocupa linha inteira */
  background:#1a1a1a;
  border-radius:20px;
  padding:30px;
  text-align:center;
}

.mesa .title{
  margin-bottom:20px;
}
.mesa .title span{
   font-size:26px;
   animation:textColor ease-in-out 6s infinite;

}

@keyframes textColor {
  0% {
    color: #fff2a3;
  }
  50% {
    color: #362f04;
  }
  100% {
    color: #fff2a3;
  }
}
.mesa img{
  width:100%;
  max-width:600px;
  border-radius:20px;
  margin-bottom:20px;
}

.mesa .paragrafo{
  max-width:800px;
  margin:0 auto;
  opacity:.85;
  max-width:700px;   /* mais estreito = leitura melhor */
  margin:0 auto;
  
  font-size:18px;
  line-height:1.9;

  text-align:left;   /* melhor para textos longos */
  
  opacity:.92;

  background:rgba(255,255,255,0.03);
  padding:30px;
  border-radius:18px;

  border-left:4px solid #f1db5f;
}


.thermatool{
  position:relative;
  padding:100px 20px;
  overflow:hidden;
}

.thermatool-container{
  max-width:1100px;
  margin:auto;

  background:#1a1a1a;

  border-radius:24px;

  padding:30px;

  border:1px solid rgba(255,255,255,.08);

  overflow:hidden;
}

/* TITULO */

.thermatool .title-area{
  text-align:center;
  margin-bottom:30px;
}

.thermatool .title{
  font-size:48px;
  line-height:1.2;
  margin-bottom:15px;
}

.thermatool .title span{
  color:#f1db5f;
  animation:textColor 6s ease-in-out infinite;
}

.thermatool .sub{
  font-size:18px;
  line-height:1.7;
  opacity:.85;

  max-width:800px;
  margin:auto;
}

/* =========================
   SLIDER
========================= */

.thermatool-slider{
  position:relative;

  width:100%;

  aspect-ratio:16/9;

  overflow:hidden;

  border-radius:22px;

  background:#111;
}

/* TRACK */

.thermatool-track{
  width:100%;
  height:100%;
  position:relative;
}

/* SLIDES */

.thermatool-slide{
  position:absolute;
  inset:0;

  opacity:0;

  transition:opacity .8s ease;

  z-index:1;
}

.thermatool-slide.active{
  opacity:1;
  z-index:2;
}

/* IMG */

.thermatool-slide img{
  width:100%;
  height:100%;

  object-fit:contain;

  background:#000;

  display:block;
}

/* OVERLAY */

.slide-overlay{
  position:absolute;

  left:20px;
  bottom:20px;

  width:min(420px,85%);

  padding:16px;

  border-radius:16px;

  background:rgba(0,0,0,.55);

  backdrop-filter:blur(8px);

  z-index:5;
}

.slide-overlay span{
  display:block;

  color:#f1db5f;

  font-size:20px;
  font-weight:700;

  margin-bottom:8px;
}

.slide-overlay p{
  font-size:14px;
  line-height:1.6;

  color:#fff;
}

/* BOTÕES */

.slider-btn{
  position:absolute;

  top:50%;
  transform:translateY(-50%);

  width:50px;
  height:50px;

  border-radius:50%;
  border:none;

  background:rgba(0,0,0,.45);

  color:#fff;

  font-size:22px;

  cursor:pointer;

  z-index:10;

  transition:.3s;
}

.slider-btn:hover{
  background:rgba(241,219,95,.35);
}

.slider-btn.prev{
  left:15px;
}

.slider-btn.next{
  right:15px;
}

/* DOTS */

.thermatool-dots{
  position:absolute;

  left:50%;
  bottom:16px;

  transform:translateX(-50%);

  display:flex;
  gap:10px;

  z-index:10;
}

.thermatool-dots .dot{
  width:10px;
  height:10px;

  border-radius:50%;
  border:none;

  background:rgba(255,255,255,.45);

  cursor:pointer;

  transition:.3s;
}

.thermatool-dots .dot.active{
  width:28px;
  border-radius:999px;
  background:#f1db5f;
}



.Ponte{
  grid-column:1 / -1; /* ocupa linha inteira */
  background:#1a1a1a;
  border-radius:20px;
  padding:30px;
  text-align:center;
  margin-top: 20px;
}

.Ponte .title{
  margin-bottom:20px;
}
.Ponte .title span{
   font-size:26px;
   animation:textColor ease-in-out 6s infinite;
}

.Ponte img{
  width:100%;
  max-width:600px;
  border-radius:20px;
  margin-bottom:20px;
}

.Ponte .paragrafo{
  max-width:700px;   /* mais estreito = leitura melhor */
  margin:0 auto;
  
  font-size:18px;
  line-height:1.9;

  text-align:left;   /* melhor para textos longos */
  
  opacity:.92;

  background:rgba(255,255,255,0.03);
  padding:30px;
  border-radius:18px;

  border-left:4px solid #f1db5f;
}

.organizacao {
  padding: 80px 20px;
}

.organizacao-container {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.organizacao .title{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.organizacao .title span{
  font-size: 26px;
  animation: textColor 6s ease-in-out infinite;
}

.img-ajustada {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}


.organizacao-texto p {
 max-width:700px;   /* mais estreito = leitura melhor */
  margin:0 auto;
  
  font-size:18px;
  line-height:1.9;

  text-align:left;   /* melhor para textos longos */
  
  opacity:.92;

  background:rgba(255,255,255,0.03);
  padding:30px;
  border-radius:18px;

  border-left:4px solid #f1db5f;
}
.seguranca-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
  color: #8ed1c5;
}

.seguranca-final i {
  font-size: 32px;
}

.seguranca-final p {
  font-size: 14px;
  color: #ffffffc9;
}
.icons-final {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  font-size: 28px;
  color: #8ed1c5;
}

.icons-final i {
  transition: 0.3s;
}

.icons-final i:hover {
  transform: translateY(-5px);
  color: #ffffff;
}


.final {
  background: linear-gradient(
    180deg,
    rgb(34,27,27),
    rgb(22,17,17)
  );
  padding: 30px 20px;
  color: #ffffff;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* blocos */
.footer-bloco {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bloco .titulo {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}

/* textos */
.footer-bloco p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* links */
.footer-bloco a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bloco a:hover {
  text-decoration: underline;
}

/* =========================
   ÍCONES
========================= */

.icon {
  display: flex;
  align-items: center;
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* hover ícone */
.footer-bloco p:hover .icon svg {
  transform: scale(1.1);
  opacity: 1;
}

 .footer-bloco a[href^="mailto"] {
  animation: textColor 6s ease-in-out infinite;}

/* =========================
   COPYRIGHT
========================= */

.footer-copy {
  margin-top: 25px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-align: center;
}




.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #01fc48;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;

  /* animações */
  animation: float 2.5s ease-in-out infinite, pulse 1.8s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover (efeito clique) */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* movimento de flutuar */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* efeito de pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 250, 165, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(19, 112, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 250, 250, 0);
  }
}


@media(max-width:900px){

  .coorteemvoo{
    grid-template-columns:1fr;
  }

  .mesa{
    padding:20px;
  }

  .maquinascorte{
    padding:20px;
  }

}
.seguranca-final .btn{
  color: #fff2a3;
  font-size: 15px;
  
}

@media (max-width:768px){
  
body::before {
  content: "";
 
  background-size: 350px;

  opacity: .1;
}

  
.topo{

padding:5px;

margin:5px;

border-radius:50px;

}

.theme-toggle {
  display: none;
  margin-left: auto;
  margin-right: 10px;
}


  .theme-toggleMobile {
    display: flex;

     position: absolute;
    transform: translateY(-50%);
      right: 55px; /* encostado no hamburger */
    top: 50%;
    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: none;

    background: rgba(241, 219, 95, 0.15);
    backdrop-filter: blur(10px);

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;

    z-index: 1;
  }

  .theme-toggleMobile:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(241, 219, 95, 0.25);
  }



  .hamburger{
    display: block;
    font-size: 32px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
  }

  /* MENU */
  .links{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(54, 47, 4, 0.85);
    backdrop-filter: blur(12px);
    padding: 90px 20px;
    gap: 20px;
    transition: 0.5s ease;
    z-index: 1001;
  }

  .links.active{
    left: 0;
  }

  .links a{
    font-size: 22px;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s ease;
  }

  .links.active a{
    opacity: 1;
    transform: translateX(0);
  }

  /* OVERLAY BLUR */
  .overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 1000;
  }

  .overlay.active{
    opacity: 1;
    visibility: visible;
  }
  .hero-title{
    font-size :23.4px;
  }
  

.beforeandafter{
margin:60px 15px;
padding:20px 15px;
border-radius:18px;
}

.beforeandafter .title{
font-size:28px;
text-align:center;
}

/* aumenta o slider no celular */
.before-after-container{
width:100%;
max-width:320px;
height:260px;
}

/* linha continua ocupando toda altura */
.divider{
height:100%;
}

/* botão svg menor no mobile */
.handle{
padding:6px;
}

.handle svg{
width:24px;
height:24px;
}


@keyframes textColor {
  0% {
    color: #fff2a3;
  }
  50% {
    color: #362f04;
  }
  100% {
    color: #fff2a3;
  }
}
/* evita barra lateral */
html,
body {
  overflow-x: hidden;
}



  .thermatool-slider{
    aspect-ratio: unset;
    height: auto;
    overflow: hidden;
  }

  .thermatool-track{
    position: relative;
    min-height: 520px;
  }

  .thermatool-slide{
    position: absolute;
    inset: 0;

    display: flex !important;
    flex-direction: column;

    opacity: 0;
    pointer-events: none;

    transition: opacity .6s ease;
  }

  .thermatool-slide.active{
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }

  .thermatool-slide img{
    width: 100%;
    height: 260px;

    object-fit: contain;

    border-radius: 18px;

    display: block;
  }

  /* 🔥 FORÇA VIRAR BLOCO NORMAL */
  .slide-overlay{
    position: static !important;

    width: 100% !important;
    max-width: 100% !important;

    margin-top: 15px !important;

    left: unset !important;
    right: unset !important;
    bottom: unset !important;

    padding: 18px;

    border-radius: 18px;

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(8px);
  }

  .slide-overlay span{
    font-size: 20px;
  }

  .slide-overlay p{
    font-size: 14px;
    line-height: 1.7;
  }

  .thermatool-dots{
    position: relative;
    margin-top: 20px;
  }

  .slider-btn{
    width:40px;
    height:40px;

    font-size:18px;
  }

  .slider-btn.prev{
    left:8px;
  }

  .slider-btn.next{
    right:8px;
  }

  .thermatool-dots{
    bottom:10px;
  }

.Ponte{
 padding:25px 20px;
 border-radius:16px;
}

.Ponte .title{
 font-size:32px;
}

.Ponte .paragrafo{
 font-size:18px;
}

.Ponte img{
 border-radius:14px;
}

.final{
background:linear-gradient(
180deg,
rgb(34,27,27),
rgb(22,17,17)
);
margin-top: 30px;
padding:10px 20px;
text-align:center;
border-radius: 15px;
}

.footer-copy{
margin-top:4px;
padding-top:5px;

border-top:1px solid rgba(255,255,255,.1);

font-size:14px;
color:rgba(255,255,255,.65);
}

  .organizacao-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .img-ajustada {
    max-width: 100%;
  }
   .organizacao-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seguranca-final {
    justify-content: center;
  }

  .img-ajustada {
    max-width: 100%;
  }
  .icons-final{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .icons-final .frase-final{
    font-size: 20px;
    display: flex;
    text-align: center;
  }
}


/* RESPONSIVO */
@media(max-width:900px){
.servicos-grid{
grid-template-columns:1fr;
}

#slideImage{
width:80%;
position:relative;
right:auto;
top:auto;
transform:none;
}

.content{
position:relative;
top:auto;
left:auto;
transform:none;
text-align:center;
margin-top:20px;
}
}

/* =========================
   LIGHT MODE COMPLETO
========================= */

body.light {
  background: #f4f1e8;
  color: #2a2415;
}

/* marca d'água */
body.light::before {
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.05;
}

/* NAVBAR */
body.light .topo {
  background: #8edfdf;
}

/* LINKS */
body.light nav .links a {
  color: #2a2415;
}

body.light nav .links a:hover {
 color: #ffffff97;
  border-bottom: solid 2px #ffffff97;
}

/* HERO */
body.light .hero {
  color: #2a2415;
}

/* GRID */
body.light .card {
  background: #fffaf0;
  border: 1px solid rgba(212,188,74,0.2);
}

body.light .card:hover {
  border: 1px solid #8edfdf;
}

/* ICON */
body.light .card i {
  color: #3d7777;
}

/* BEFORE/AFTER */
body.light .beforeandafter {
  border: solid #8edfdf;
  background: #fffaf0;
}
body.light .beforeandafter span{
  color: #3d7777;
}
/* slider linha */
body.light .divider {
  background: rgba(0,0,0,0.3);
}

body.light .handle {
  background: #ffffff;
}

/* SERVIÇOS */
body.light .servicos {
  background: #f4f1e8;
}

/* CARDS GRANDES */
body.light .maquinascorte,
body.light .mesa,
body.light .Ponte {
  background: #fffaf0;
  border: 1px solid rgba(212,188,74,0.15);
}

body.light .mesa span,
body.light .Ponte span,
body.light .maquinascorte span,
body.light .organizacao .title span{

  animation: none;

  background: linear-gradient(90deg, #8edfdf, #3d7777, #8edfdf);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


body.light .maquinascorte:hover {
  border: 1px solid #8edfdf;
}

/* TEXTOS BOX */
body.light .maquinascorte .paragrafo,
body.light .mesa .paragrafo,
body.light .Ponte .paragrafo,
body.light .organizacao-texto p {
  background: rgba(212,188,74,0.08);
  border-left: 4px solid #8edfdf;
  color: #2a2415;
}

body.light .thermatool {
  color: #2a2415;
}

body.light .thermatool::before {
  background: rgba(142, 223, 223, 0.10);
  border-color: rgba(212,188,74,0.15);
}

body.light .thermatool-container {
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(212,188,74,0.15);
  box-shadow: 0 26px 70px rgba(42,36,21,0.14);
}

body.light .thermatool .title span {
  animation: none;

  background: linear-gradient(
    90deg,
    #8edfdf,
    #3d7777,
    #8edfdf
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light .thermatool .sub {
  color: rgba(42,36,21,0.78);
}

body.light .thermatool-slider {
  background: #fffaf0;
  border-color: rgba(212,188,74,0.15);
  box-shadow: 0 22px 60px rgba(42,36,21,0.18);
}

body.light .slide-overlay {
  background: rgba(255,250,240,0.70);
  border-color: rgba(61,119,119,0.20);
}

body.light .slide-overlay span {
  color: #3d7777;
}

body.light .slide-overlay p {
  color: rgba(42,36,21,0.82);
}

body.light .slider-btn {
  background: rgba(255,250,240,0.62);
  border-color: rgba(61,119,119,0.22);
  color: #3d7777;
}

body.light .slider-btn:hover {
  background: rgba(142,223,223,0.28);
  border-color: #8edfdf;
  color: #2a2415;
}

body.light .thermatool-dots {
  background: rgba(255,250,240,0.62);
  border-color: rgba(61,119,119,0.18);
}

body.light .thermatool-dots .dot {
  background: rgba(42,36,21,0.25);
}

body.light .thermatool-dots .dot.active {
  background: #8edfdf;
}

body.light .thermatool-container:hover {
  border-color: rgba(142,223,223,0.55);
}

/* CONTATO */
body.light .contato {
  background: #e6decc;
  color: #2a2415;
}

/* SEGURANÇA */
body.light .seguranca-final {
  color: #3a6b63;
}
body.light .seguranca-final a{
  color: #222;
}
body.light .seguranca-final p {
  color: rgba(0,0,0,0.7);
}

/* ICONS FINAL */
body.light .icons-final {
  color: #3a6b63;
}

body.light .icons-final i:hover {
  color: #2a2415;
}

body.light .final {
  background: linear-gradient(
    180deg,
    #e9e4d4,
    #ddd6c3
  );
  color: #2a2415;
}

/* textos */
body.light .footer-bloco p {
  color: rgba(42, 36, 21, 0.7);
}

/* links */
body.light .footer-bloco a:hover {
  color: #000;
}

/* ícones */
body.light .icon svg {
  fill: #8edfdf;
  opacity: 0.9;
}

/* hover ícones no light */
body.light .footer-bloco p:hover .icon svg {
  fill: #3d7777;
}

body.light .footer-bloco a[href^="mailto"] {
  animation: none;

  background: linear-gradient(90deg, #8edfdf, #3d7777, #8edfdf);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* copyright */
body.light .footer-copy {
  border-top: 1px solid rgba(42, 36, 21, 0.15);
  color: rgba(42, 36, 21, 0.6);
}

/* MENU MOBILE */
body.light .links {
    background: #8edfdf;
}

/* OVERLAY */
body.light .overlay {
  background: rgba(0,0,0,0.2);
}