html {
  scroll-behavior: smooth;
  font-size: 16px; /* ↓ de 16px definindo a fonte geral do site*/
}
section {
  scroll-margin-top: 100px; /* ajuste conforme a altura do menu */
}

body{
 font-family: 'Inter', sans-serif;
 line-height: 1.55; /* Definindo cada linha terá 1.55 × o tamanho da fonte*/
 margin:0;
 background:#f8f9fa;
 color:#1a1a1a;
}
:root {
  --primary: #c1121f;
  --primary-dark: #780000;
  --secondary: #e63946;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-sub {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/*.container{
 width:90%;
 max-width:1200px;
 margin:auto;
}*/
/* ===== INICIO AJUSTES GLOBAIS DE TIPOGRAFIA ===== */

/* Base em telas grandes (desktop normal) */
body {
  font-size: 1rem; /* padrão: 16px */
}

/* Tamanhos médios — notebooks e tablets horizontais */
@media (max-width: 1200px) {
  body {
    font-size: 0.95rem; /* 15.2px */
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4, h5, h6 { font-size: 1.1rem; }
}

/* Telas menores — tablets verticais e notebooks compactos */
@media (max-width: 992px) {
  body {
    font-size: 0.9rem; /* 14.4px */
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.25rem; }
  h4, h5, h6 { font-size: 1rem; }
}

/* Telas pequenas — celulares */
@media (max-width: 768px) {
  body {
    font-size: 0.85rem; /* 13.6px */
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}
/* Ajuste automático para texto de botões */
@media (max-width: 1200px) {
  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}

@media (max-width: 992px) {
  .btn {
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
  }
}

@media (max-width: 768px) {
  .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}
/* ===== FIM AJUSTES GLOBAIS DE TIPOGRAFIA ===== */

/* BOTAO GLOBAL */

.btn{

display:inline-flex;
align-items:center;
justify-content:center;

gap:6px;

padding:14px 32px;

border-radius:40px;

font-weight:500;
text-decoration:none;

transition:all .3s ease;

white-space:nowrap;

}
.btn i{
  margin-right:6px;
  font-size:16px;
}

.btn-main{

background:linear-gradient(135deg,#c1121f,#780000);

color:white;

box-shadow:0 10px 25px rgba(193,18,31,0.25);

}

.btn-main:hover{

transform:translateY(-2px);

box-shadow:0 14px 30px rgba(193,18,31,0.35);

}

/* BOTAO WHATSAPP GLOBAL */

.btn-whatsapp{

background:linear-gradient(135deg,#25D366,#1ebe5d);

color:white;

box-shadow:0 10px 25px rgba(37,211,102,0.25);

}

.btn-whatsapp:hover{

transform:translateY(-2px);

box-shadow:0 14px 30px rgba(37,211,102,0.35);

}

.btn-contato{

background:linear-gradient(135deg,#c1121f,#780000);

color:white;

box-shadow:0 10px 25px rgba(193,18,31,0.25);

}

.btn-contato:hover{

transform:translateY(-2px);

box-shadow:0 14px 30px rgba(193,18,31,0.35);

}

/* BOTAO AREA DO CLIENTE */

.btn-area-cliente{
  background:linear-gradient(135deg,#e6e6e6,#bfc3c7);
  color:#1a1a1a;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.btn-area-cliente:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,#f2f2f2,#d4d4d4);
  box-shadow:0 12px 25px rgba(0,0,0,0.2);
}

/*====================Inicio Header==========================*/
/* =============================
HEADER
============================= */

.tm-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  transition:0.3s;
}

.tm-header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
}

/* fundo quando rola */

.tm-header.scrolled{

background:#1a1a1a;
box-shadow:0 5px 20px rgba(0,0,0,0.15);

}
.tm-logo img{
  height:70px;
}
.tm-nav{
  margin-left:25px;
}


.tm-nav > ul{
  display:flex;
  align-items:center;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}
.tm-nav > ul > li{
  position:relative;
}

.tm-nav a{
  color:white;
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  white-space:nowrap;
}

.tm-header.scrolled .tm-nav a{
  color:white;
}
.tm-dropdown{
  position:relative;
}

.tm-submenu{
  position:absolute;
  top:100%;
  left:0;
  border:1px solid rgba(0,0,0,0.08);
  background:#695a5a;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  min-width:200px;
  padding:6px 0;
  margin:0;
  list-style:none;
  /* evita herdar flex */
  display:block;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:all .2s ease;
  z-index:1000;
}

.tm-dropdown:hover > .tm-submenu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.tm-submenu li{
display:block;
margin:0;
}
/*submenu dropdown*/
.tm-submenu a{
  display:block;
  padding:10px 16px;
  font-size:14px;
  color:white;
  text-decoration:none;
  white-space:nowrap;
}

.tm-submenu a:hover{
  border-radius:8px;
  background:#9c6868;
}

/* HOVER DO BOTAO AREA CLIENTE COM SCROLL */
.tm-header.scrolled .btn-area-cliente:hover{
  color:#020202;
  border-color:#020202;
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* BOTÕES DENTRO DO MENU */

.tm-header .btn{
  padding:12px 18px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.tm-header-buttons .btn{
  width:180px;
  justify-content:center;
  gap:8px;
}

/*Botoes*/
.tm-header-buttons{
  display:flex;
  align-items:center;
  gap:8px;
  padding-left:12px;
  margin-left:10px;
  border-left:1px solid rgba(255,255,255,0.2);
}
/* BOTÕES DENTRO DO MENU MOBILE */
.tm-mobile-menu .btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:18px 28px;   /* aumenta altura */
  font-size:16px;      /* aumenta texto */
  border-radius:40px;
  margin-top:8px;
  text-align:center;
  /*max-width:260px;
  margin-left:auto;
  margin-right:auto;*//* se quiser que os botoes fiquem menos largos colocar estes 3*/
}
.tm-mobile-menu .btn + .btn{
  margin-top:8px;
}
.tm-mobile-menu .btn i{
  margin-right:8px;
}

.tm-hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
transition:0.3s;
border:3px solid rgba(255,255,255,0.2);
border-radius:10px;
padding:10px 9px;
background: #c1121f; /*Verificar se vai ficar senao remover*/
transition:0.3s;
}

.tm-hamburger span{

width:25px;
height:3px;
background:white;
transition:0.3s;

}

/* ANIMAÇÃO X */

.tm-hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.tm-hamburger.active span:nth-child(2){
  opacity:0;
}

.tm-hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

.tm-mobile-menu{
  position:fixed;
  top:80px;
  left:0;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  width:100%;
  max-height:calc(100vh - 80px);
  background:#1a1a1a;
  display:none;
  flex-direction:column;
  align-items:center;
  padding:25px 20px;
  gap:16px;
  border-radius:0 0 16px 16px;
  scrollbar-width:none;
  /* scroll automático */
  overflow-y:auto;
}

.tm-mobile-menu::-webkit-scrollbar{
  display:none;
}

.tm-mobile-menu a{
  color:white;
  text-decoration:none;
  font-size:18px;
}

.tm-mobile-menu.active{
  display:flex;
}
.tm-mobile-dropdown{
  width:75%;
  margin:6px auto; /* centraliza */
  text-align:center;
}

.tm-mobile-dropdown button{
  background:none;
  border:none;
  color:white;
  font-size:20px;
  cursor:pointer;
}

.tm-mobile-sub{
  width:100%;
  display:none;
  flex-direction:column;
  gap:10px;
  margin-top:8px;
  border:1px solid rgba(255, 255, 255, 0.1);
  background:#695a5a;
  padding:10px 15px;
  border-radius:8px;
  margin-left:10px;
  margin-right:10px;
}

.tm-mobile-sub a{
  padding:6px 0; /* espaço interno do texto */
  letter-spacing:0.5px; /* leve respiro no texto */
}
.tm-mobile-sub a:hover{
  border-radius:8px;
  background:#9c6868;
}

.tm-mobile-sub a{
  font-size:16px;
  opacity:.9;
}

.tm-mobile-dropdown.active .tm-mobile-sub{
  display:flex;
}
.tm-mobile-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:20px;
  width:100%;
}
.tm-mobile-actions a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:8px;
  font-weight:600;
}

.tm-mobile-actions i{
  font-size:20px; /*tamanho icones botoes contatos mobile*/
  line-height:1;
}

@media(max-width:1200px){

.tm-nav > ul{
gap:14px;
}

.tm-nav a{
font-size:14px;
}

.tm-header .btn{
padding:14px 24px;   /* aumenta altura */
font-size:18px;      /* aumenta texto */
}
.tm-header-buttons .btn{
  width:140px;
}

}

@media (max-width: 1199px) and (min-width: 993px){

  .tm-nav > ul{
    gap: 14px;
  }

  .tm-nav a{
    font-size: 14px;
  }

  .tm-header .btn{
    padding: 12px 22px;   /* altura menor */
    font-size: 12px;      /* fonte menor */
  }

  .tm-header-buttons .btn{
    width: 130px;
  }
  .tm-header .btn i{
    font-size: 14px;
}

}

@media(max-width:992px){

.tm-nav{
  display:none;
}

.tm-header-buttons{
  display:none;
}
/*.tm-mobile-menu .btn{
  padding: 16px 28px;  /* mais alto *
  font-size: 16px;
}*/

.tm-hamburger{
  display:flex;
}

}
/*===================Fim Header==============================*/

/*=================Inicio Barra Flutuante ==========================*/
/* BARRA */

.tm-float-bar{

position:fixed;
overflow:visible;
right:22px;
bottom:30px;

display:flex;
flex-direction:column;
align-items:center;
gap:14px;

padding:18px 12px;

background:
linear-gradient(165deg,#5a0f16 0%, #2a0508 45%, #000000 100%),
radial-gradient(circle at 80% 20%, rgba(255,60,60,0.25), transparent 60%);

backdrop-filter:blur(10px);

border-radius:25px;

border:1px solid rgba(255,255,255,0.08);

box-shadow:
0 18px 45px rgba(0,0,0,0.65),
0 0 22px rgba(210,30,43,0.35),
inset 0 0 18px rgba(255,255,255,0.05);

z-index:999;

}

.tm-float-bar::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:35%;
  border-radius:25px 25px 0 0;
  background:linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
  pointer-events:none;
}


/*-----Inicio esconde a barra---------------*/
.tm-float-bar{

opacity:0;
transform:translateY(30px);

pointer-events:none;

transition:opacity .35s ease, transform .35s ease;

}
.tm-float-bar.show{

opacity:1;
transform:translateY(0);

pointer-events:auto;

}
/*-----Fim esconde a barra---------------*/

/* BOTÕES */

.tm-float-btn{

position:relative;

width:50px;
height:50px;

border-radius:14px;

display:flex;
align-items:center;
justify-content:center;

font-size:20px;
color:white;

text-decoration:none;
transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;


box-shadow:
0 6px 14px rgba(0,0,0,0.45),
inset 0 2px 3px rgba(255,255,255,0.15),
inset 0 -2px 6px rgba(0,0,0,0.35);

backdrop-filter: blur(4px);

}

/* CORES */

.tm-float-btn.cliente{

background:linear-gradient(145deg,#d9d9d9,#9f9f9f);
color:#222;

}

.tm-float-btn.contato{

background:linear-gradient(145deg,#d21e2b,#9e111c);

}

.tm-float-btn.whatsapp{

background:linear-gradient(145deg,#27e16a,#19b955);

}

/* HOVER */

.tm-float-btn:hover{
animation:none;
transform:scale(1.35) translateY(-4px);
opacity:1;
z-index:2;
}

.tm-float-bar:hover .tm-float-btn{
  transform:scale(0.9);
  opacity:.7;
}

.tm-float-bar .tm-float-btn:hover{
  transform:scale(1.35) translateY(-4px);
  opacity:1;
  z-index:2;
}

/* TOOLTIP */

.tm-float-btn::before{

content:attr(data-tooltip);

position:absolute;

right:64px;

background:#111;

color:white;

font-size:12px;

padding:6px 10px;

border-radius:6px;

white-space:nowrap;

opacity:0;

transform:translateX(8px);

pointer-events:none;

transition:all .2s ease;

}

.tm-float-btn:hover::before{

opacity:1;

transform:translateX(0);

}


/* BOTÃO FECHAR */

.tm-float-close{

background:none;
border:none;

color:#aaa;

font-size:14px;

cursor:pointer;

margin-bottom:4px;

transition:.2s;

}

.tm-float-close:hover{

color:white;
transform:scale(1.2);

}

/* ANIMAÇÃO botoes */

.tm-float-btn{

/*animation:tmFloatPulse 2.5s infinite;*/
animation:tmFloatPulse 2.5s infinite;
transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;

}

@keyframes tmFloatPulse{

0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}

}

@media (max-width:1600px){

.tm-float-bar{
padding:16px 10px;
gap:12px;
}

.tm-float-btn{
width:46px;
height:46px;
font-size:18px;
}

}
@media (max-width:1400px){

.tm-float-bar{
padding:14px 9px;
gap:11px;
}

.tm-float-btn{
width:42px;
height:42px;
font-size:17px;
}

}
@media (max-width:992px){

.tm-float-bar{

right:14px;
bottom:24px;

padding:12px 8px;
gap:10px;

}

.tm-float-btn{

width:40px;
height:40px;

font-size:16px;

}

}
@media (max-width:768px){

.tm-float-bar{

right:12px;
bottom:20px;

padding:12px 8px;
gap:10px;
/* fundo mais visível */

background:
linear-gradient(165deg,#5a0f16 0%, #2a0508 45%, #000000 100%),
radial-gradient(circle at 80% 20%, rgba(255,60,60,0.25), transparent 60%);

backdrop-filter:blur(12px);

border-radius:22px;

border:1px solid rgba(255,255,255,0.10);

box-shadow:
0 12px 28px rgba(0,0,0,0.65),
0 0 16px rgba(210,30,43,0.30),
inset 0 0 14px rgba(255,255,255,0.04);

}

.tm-float-btn{

width:40px;
height:40px;

font-size:16px;

}
.tm-float-bar:hover .tm-float-btn{
transform:none;
opacity:1;
}

.tm-float-close{

font-size:13px;

}
.tm-float-btn::before{
display:none; /*desativa o toolip no mobile*/
}


}
/*====================Fim Barra Flutuante ==========================*/

/*====================Inicio Hero==========================*/
.hero{

position:relative;
height:100vh;

background-image:url('../img/hero-bg.jpeg');
background-size:cover;
background-position:center;

display:flex;
align-items:center;
filter:contrast(1.1) saturate(1.1);

}


.hero-overlay{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;

/*background:rgba(0,0,0,0.55);*/
background:linear-gradient(
90deg,
rgba(0,0,0,0.65) 0%,
rgba(0,0,0,0.45) 35%,
rgba(0,0,0,0.20) 70%,
rgba(0,0,0,0.05) 100%
);
}


.hero-content{

position:relative;
display:flex;
align-items:center;
justify-content:space-between;
color:white;

}

.hero-text{

max-width:600px;

}

.hero-text h1{

font-size:48px;
margin-bottom:20px;

}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-top:20px;
  flex-wrap:nowrap;
}

.hero-buttons .btn{
  display:inline-flex;
  align-items:center;
  width:auto;
  white-space:nowrap;
}
.hero-buttons i{
  margin-right:8px;
}
.hero-buttons .btn{
  width:auto !important;
}


/*.btn-whats{
  background:#c1121f;
  padding:14px 28px;
  border-radius:6px;
  color:white;
  text-decoration:none;
  margin-right:15px;
}*/

.btn-orcamento{

background:white;
color:#c1121f;
padding:14px 28px;
border-radius:6px;
text-decoration:none;

}
.hero-phone img{
  width:320px;
}
@media(max-width:768px){

.hero-content{

flex-direction:column;
text-align:center;

}

.hero-buttons{
  flex-direction:column;
  align-items:center;
}

.hero-buttons .btn{
  width:100%;
  max-width:280px;
}

.hero-phone img{

width:220px;
margin-top:40px;

}

.hero-text h1{

font-size:32px;

}

}

/*====================Fim Hero==========================*/

/*===================inicio Servicos====================*/
.servicos{

padding:100px 20px;
background:#f8f9fa;

}

.section-title{

text-align:center;
font-size:36px;
margin-bottom:10px;

}

.section-sub{

text-align:center;
color:#6c757d;
margin-bottom:60px;

}

.servicos-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

align-items:stretch;

}

.servico-card{

background:white;
border-radius:14px;
overflow:hidden;

box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;

display:flex;
flex-direction:column;

}

.servico-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);

}

.servico-img{

width:100%;
aspect-ratio:16/9;
overflow:hidden;

}

.servico-img img{

width:100%;
height:100%;
object-fit:contain;
background:#f8f9fa;

}

.servico-content{

padding:35px 25px 25px 25px;
text-align:center;

display:flex;
flex-direction:column;
flex:1;

}

.servico-content .btn{

margin-top:auto;
}
.servicos .btn{

font-size:13px;
padding:8px 18px;

}
.btn-whatsapp{

display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;

}
.btn-whatsapp i{

margin-right:8px;
font-size:16px;

}

.servico-icon{

width:50px;
height:50px;
background:#c1121f;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
border:4px solid white;
margin:-30px auto 15px;

font-size:20px;

}

.servico-content h3{

margin-bottom:10px;

}

.servico-content p{

font-size:14px;
color:#6c757d;
margin-bottom:20px;

}

.btn-servico{

background:#c1121f;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-size:14px;

}

.btn-servico:hover{

background:#780000;

}
/*==========================Fim Servicos=========================*/

/* =======================SECTION - COMO FUNCIONA======================== */
/* SECTION */

.como-funciona{
  padding:120px 0;
  position: relative;
  background:linear-gradient(
  135deg,
  #fff0f0 0%,
  #f5f7fb 100%
  );
}


/* GRID */

.funciona-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;

margin-top:70px;

position:relative;

}


/* LINHA */

.funciona-grid::before{

content:"";

position:absolute;

top:36px;
left:8%;
right:8%;

height:3px;

background:linear-gradient(
90deg,
transparent,
#ff4d4d,
#ff4d4d,
transparent
);

opacity:.35;

}


/* ITEM */

.funciona-item{

text-align:center;

padding:10px 20px;

position:relative;

}


/* ÍCONE */

.funciona-icon{
  width:70px;
  height:70px;
  /*margin:0 auto 20px auto;*/
  margin: 0 auto 25px auto; /* 🔥 VOLTA ISSO */
  margin-bottom: 25px; /* antes 20 */
  border-radius:50%;
  background:linear-gradient(
  135deg,
  #ff4b4b,
  #ff7a7a
  );
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  box-shadow:0 8px 18px rgba(255,70,70,.35);
}


/* TITULO */

.funciona-item h3{

font-size:18px;
font-weight:600;

margin-bottom: 12px; /* antes 10 */

color:#222;

}


/* TEXTO */

.funciona-item p{
  font-size:15px;
  line-height:1.6;
  color:#555;
  max-width:260px;
  margin:auto;
  margin-top: 5px;
}

.funciona-cta{

font-size:17px;
font-weight:500;

color:#333;

margin-bottom:20px;
margin-top: 70px !important; /* mais destaque pro CTA */
}
/* selo */
.anatel-selo {
  position: absolute;
  bottom: 30px;

  /* alinhado com container */
  right: calc((100% - 1140px)/2 + 20px);

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 18px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);

  border-radius: 14px;

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  
  transition: all 0.3s ease;
}

/* leve efeito premium no hover */
.anatel-selo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

/* imagem */
.anatel-selo img {
  width: 42px;
  height: auto;
  opacity: 0.9;
}

/* texto */
.anatel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.anatel-text strong {
  font-size: 13px;
  color: #111;
  font-weight: 600;
}

.anatel-text span {
  font-size: 11px;
  color: #666;
}

/* MOBILE */

@media(max-width:900px){

  .funciona-grid::before{
  display:none;
  }
 .anatel-selo {
    position: static;
    margin: 40px auto 0;

    justify-content: center;
    text-align: left;
  }

}
/*====================Fim Como Funciona============================*/

/*=========================SECTION APP ============================= */
.app-section{

position:relative;
padding:120px 20px;
background:linear-gradient(180deg, #eaeff5, #dde5f0);
overflow:hidden;

}


.app-grid{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;

}

.app-text h2{

font-size:36px;
margin-bottom:20px;

}

.app-text p{

color:#6c757d;
margin-bottom:30px;

}

.app-features{

list-style:none;
padding:0;
margin-bottom:30px;

}

.app-features li{

margin-bottom:12px;
font-size:16px;

}

.app-features i{

color:#c1121f;
margin-right:10px;

}

.btn-app{

background:#c1121f;
color:white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;

}

.btn-app:hover{

background:#780000;

}

/*Inicio CELULAR MOCKUP*/
.app-phone{

display:flex;
justify-content:center;

}
.app-phone img {
  width: 280px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/*.phone{

width:260px;
height:520px;
background:#111;
border-radius:35px;
padding:12px;
box-shadow:0 20px 50px rgba(0,0,0,0.25);

}*/

/*.phone-screen{

width:100%;
height:100%;
background: #000; /* fundo escuro estilo tela *
border-radius:25px;
overflow:hidden;
display: flex;
align-items: center;
justify-content: center;
}*/

/*.phone-screen img{

width:100%;
height:100%;
object-fit:contain;

}*/

/*Fim CELULAR MOCKUP*/

/*Inicio FUNDO MAPA GPS*/

.app-bg{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background-image:
linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);

background-size:40px 40px;

animation:mapMove 20s linear infinite;

z-index:0;

}

@keyframes mapMove{

0%{

transform:translateY(0);

}

100%{

transform:translateY(40px);

}

}

.app-grid{

position:relative;
z-index:2;

}
/*Fim FUNDO MAPA GPS*/

@media(max-width:768px){

.app-grid{

grid-template-columns:1fr;
text-align:center;

}

.app-phone{

margin-top:40px;

}

.app-text h2{

font-size:28px;

}
.app-features{
  text-align:left;      /* força alinhar à esquerda */
  max-width:300px;      /* opcional: melhora leitura */
  margin:0 auto 30px;   /* mantém centralizado na tela */
}

}
/*=========================Fim SECTION APP ============================= */

/*=======================Inicio dection Area do Cliente==================*/
.area-cliente-destaque {
  background: var(--light);
  padding: 100px 0; /* antes estava apertado */
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 60px; /* aumentamos */
}

.area-text h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.3rem);
  margin-bottom: 25px;
  line-height: 1.2;
}
.area-text {
  text-align: center;
  max-width: 500px;
}
.area-text p {
  color: var(--gray);
  font-size: 17px;
  margin-bottom: 25px; /* cria respiro antes da lista */
  line-height: 1.6;
  max-width: 500px;
}

.area-text ul {
  text-align: left;        /* mantém texto alinhado à esquerda */
  max-width: 350px;        /* controla largura da lista - se tiver texto longo precisa aumentar aqui*/
  margin: 30px auto;       /* antes 25 */       /* centraliza o bloco */
  padding: 0;
  list-style: none;
}

.area-text li {
  margin-bottom: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
}

.area-text li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 14px;
}

.area-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(1.09);
}
.dest-area-botoes {
  display: flex;
  /*margin-top: 30px;*/
  gap: 15px;
  flex-wrap: wrap;
}

.dest-area-botoes .btn {
  flex: 1;              /* faz ambos crescerem iguais */
  margin-top: 20px;
  min-width: 180px;     /* evita ficar pequeno demais */
  text-align: center;
}
@media (max-width: 768px) {

  .area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .area-img img {
    max-width: 100%;
    transform: none; /* evita exagero no mobile */
  }
  .area-text {
    text-align: center;
  }

  .area-text h2 {
    font-size: 2rem;
  }

  .area-text p {
    margin: 0 auto;
  }

  .area-text ul {
    text-align: left;
    max-width: 300px;
    margin: 25px auto;
  }
  .dest-area-botoes {
    flex-direction: column;
  }

  .dest-area-botoes .btn {
    width: 90%;
    margin: 0 auto;
  }

  /*.btn-area-cliente {
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 14px;
  }*/

}
/*========================fim section area do cliente======================*/


/* =======================Inicio HERO TIAMAT =========================== */

.tm-hero {
  position: relative;
  padding: 140px 20px;
  overflow: hidden;

  background: linear-gradient(180deg,#1a1a1a,#2b0f12);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;

  color: white;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* brilho leve */
.tm-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(193,18,31,0.25), transparent 40%);
  z-index: 0;
}

/* conteúdo */
.tm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* título */
.tm-hero h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tm-hero h1 span {
  color: #c1121f;
   text-shadow: 0 0 12px rgba(193,18,31,0.6);
}

/* texto */
.tm-hero p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 35px;
}
.tm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;

  opacity: 0;
  transform: translateY(40px);
  animation: heroFade 1s ease forwards;
}

.tm-hero h1 {
  animation: heroFade 1s ease forwards;
  animation-delay: 0.2s;
}

.tm-hero p {
  animation: heroFade 1s ease forwards;
  animation-delay: 0.4s;
  margin-bottom: 100px; /* 🔥 espaço antes do carrinho */
}

.tm-hero-buttons {
  animation: heroFade 1s ease forwards;
  animation-delay: 0.6s;
  margin-top: 160px; /* 🔥 espaço depois do carrinho */
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tm-route {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1; /* atrás do conteúdo */
  pointer-events: none;
  
  opacity: 0.5; /* mais sutil */
}

.tm-route path {
  opacity: 0.3;
}


/* carro andando */
.tm-car {
  offset-path: path("M50 300 C200 100 400 350 700 150");
  offset-distance: 0%;
  animation: moveCar 16s linear infinite;
}

@keyframes moveCar {
  to {
    offset-distance: 100%;
  }
}
#tmParticles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/*vira carro direita*/
.tm-car {
  display: inline-block;
  transform: scaleX(-1);
}
.tm-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap; /* 🚨 impede quebrar linha */
}
.tm-hero-buttons .btn-whatsapp:first-child {
  flex: 1.2; /* botão principal levemente maior */
}

/* botões */
.tm-hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex:1;

  padding: 14px 20px;
  min-height: 52px;

  font-weight: 600;
  border-radius: 999px; /* 🔥 PILL */
  text-align: center;

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;

  transform: translateY(0);
  box-shadow: 0 6px 0 rgba(0,0,0,0.25);
}

/* brilho passando */
.tm-hero-buttons .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transform: skewX(-25deg);
}

/* ativa o brilho no hover */
.tm-hero-buttons .btn:hover::after {
  animation: shimmer 0.8s ease;
}

@keyframes shimmer {
  100% {
    left: 130%;
  }
}

/* hover 3D */
.tm-hero-buttons .btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* clique */
.tm-hero-buttons .btn:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(0,0,0,0.3);
}

/* MOBILE PERFEITO */
@media(max-width:768px){

 .tm-hero {
    padding: 100px 20px;
    text-align: center;
  }

  .tm-hero h1 {
    font-size: 32px;
  }
  .tm-hero p {
    margin-bottom: 80px; /* 🔥 espaço antes do carrinho */
  }

  .tm-hero-buttons {
    flex-direction: column;
    margin-top: 200px; /* 🔥 espaço antes do carrinho */
    align-items: stretch; /* 🔥 importante */
    width: 100%;
  }

  .tm-hero-buttons .btn {
    width: 100%;          /* 🔥 força todos iguais */
    max-width: 100%;      /* 🔥 remove limite anterior */
    justify-content: center;
  }

}

/*=======================dor do cliente==========*/
.dor-cliente {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  padding: 100px 0; /* antes provavelmente menor */
}
.dor-cliente h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.section-sub {
  text-align: center;
  font-size: 20px;
  max-width: 700px;   /* controla largura */
  margin: 0 auto 50px; /* centraliza + espaço abaixo */
  line-height: 1.6;   /* melhora leitura */
}
.dor-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.dor-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.dor-item {
  background: rgba(255,255,255,0.05);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  min-height: 160px; /* deixa todos alinhados */
}

.dor-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.dor-item p {
  margin-top: 10px;
  font-size: 15px;
  color: #cbd5e1;
}

/*==================== EMPRESA =================*/

.empresa{

padding:120px 20px;

background:linear-gradient(
180deg,
#fff3f4 0%,
#eef2f7 100%
);

}

.empresa-header{

text-align:center;
max-width:700px;
margin:auto;
margin-bottom:70px;

}

.empresa-header h2{

font-size:38px;
margin-bottom:15px;

}

.empresa-header p{

color:#6c757d;
font-size:18px;

}

/* GRID */

.empresa-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;

}

/* CARD */

.empresa-card{

background:white;
border-radius:16px;

padding:35px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:.3s;

}

.empresa-card:hover{

transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);

}

.empresa-card h3{
text-align:center;
margin-bottom:15px;
}

/* LISTA */

.empresa-valores{
text-align: left;
list-style:none;
padding:0;
margin:0;

}

.empresa-valores li{

margin-bottom:10px;
padding-left:18px;
position:relative;

}

.empresa-valores li::before{

content:"●";
color:#c1121f;
position:absolute;
left:0;

}

/* CTA */

.empresa-cta{

margin-top:60px;
text-align:center;

}
.btn-contato{

display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;

}

.btn-contato i{
font-size:15px;
}

/*================ NUMEROS =================*/

.numeros{

padding:120px 20px;

background:linear-gradient(
135deg,
#f3f6fa 0%,
#e9eef5 40%,
#dde5ef 100%
);

position:relative;
overflow:hidden;

}
.numeros::before{

content:"";

position:absolute;

width:600px;
height:600px;

background:radial-gradient(
circle,
rgba(193,18,31,0.12) 0%,
transparent 70%
);

top:-200px;
right:-200px;

pointer-events:none;

}
.numeros::after{

content:"";

position:absolute;

width:500px;
height:500px;

background:radial-gradient(
circle,
rgba(193,18,31,0.08) 0%,
transparent 70%
);

bottom:-200px;
left:-200px;

pointer-events:none;

}

.numeros-header{

text-align:center;
max-width:700px;
margin:auto;
margin-bottom:70px;

}

.numeros-header h2{

font-size:36px;
margin-bottom:15px;

}

.numeros-header p{

color:#6c757d;

}

/* GRID */

.numeros-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

}

/* CARD */

.numero-card{
  background:white;
  border-radius:18px;
  padding:45px 35px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.05);
  transition:.35s;
  position:relative;
  overflow:hidden;
}

.numero-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#c1121f,#780000);
}

.numero-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.numero-icon{
  font-size:32px;
  margin-bottom:15px;
  color:#c1121f;
}


/* VALOR */

.numero-valor{

font-size:48px;

font-weight:800;

color:#c1121f;

letter-spacing:1px;

}

/* TEXTO */

.numero-label{

color:#6c757d;

font-size:15px;

}

/*=============section depoimentos====================*/
.depoimentos {
  background: #020617;
  color: #fff;
  position:relative;
  padding-top:35px; /* espaço pra aspas */
  /*border-left:3px solid #c1121f;*/
}

/*.depoimento::before{
  content:none;
  position:absolute;
  top:10px;
  left:20px;
  font-size:50px;
  color:rgba(255,255,255,0.08);
  font-style:normal;
  line-height:1;
}*/
.depoimentos h2{
  text-align:center;
  margin-bottom:10px;
}
.depoimentos-sub{
  text-align:center;
  color:#94a3b8;
  max-width:600px;
  margin:0 auto 40px;
}
.depoimento strong{
  color:#e2e8f0;
  font-size:14px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.depoimento {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 16px;
  font-style: italic;
  transition: 0.3s;
}

.depoimento:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

.depoimento strong {
  display: block;
  margin-top: 10px;
  font-style: normal;
}
/*================fim section depoimentos======================*/

/*================ EMPRESAS que confiam =================*/

.empresas{
  padding:110px 20px;
  background:#ffffff;
}

.empresas-header{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:60px;
}

.empresas-header h2{
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  /*font-size:36px;*/
  margin-bottom:15px;
}

.empresas-header p{
  color:#6c757d;
}

/* GRID */

.empresas-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  /*grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
  gap:30px;
}
.empresa-card{
  background:#fff;
  border-radius:16px;
  padding:25px;
  min-height: 260px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  justify-content: space-between;
  transition:.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.05);
}
.empresa-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* LOGOS */

.empresa-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:25px;
  background:#f8f9fa;
  border-radius:12px;
  transition:.3s;
  margin-bottom:20px;
}

/*.empresa-logo:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}*/

/* IMAGEM */

.empresa-logo img{
  max-width:100%;
  max-height:250px;
  /*filter:grayscale(100%);*/
  /*opacity:.7;*/
  transition:.3s;
}

/*.empresa-logo:hover img{
  transform: scale(1.05);
  filter:none;
  opacity:1;
}*/
/* INFO */

.empresa-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  height: 100%;
}

.empresa-info h4{
  font-size:18px;
  margin-bottom:10px;
}

.empresa-info p{
  font-size:14px;
  color:#6c757d;
  margin-bottom:15px;
}

/* BOTÕES */

.empresa-actions{
  display:flex;
  gap:10px;
  margin-top: 10px;
  flex-wrap:wrap;
  justify-content:center;
}
.empresa-actions:empty {
  display: none;
}

.btn-empresa{
  background:var(--primary);
  color:#fff;
  padding:8px 14px;
  border-radius:6px;
  text-decoration:none;
  font-size:13px;
  transition:.3s;
}

.btn-empresa:hover{
  background:var(--primary-dark);
}

.btn-empresa-outline{
  background:transparent;
  border:1px solid var(--primary);
  color:var(--primary);
}

.btn-empresa-outline:hover{
  background:var(--primary);
  color:#fff;
}
.btn-empresa-outline i {
  color: #E1306C;
}
@media (max-width: 1400px) {

  .servicos-grid,
  .empresas-grid,
  .dor-grid,
  .funciona-grid {
    gap: 25px; /* antes 35~40 */
  }
  .empresas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* CARDS GERAL */
  .servico-card,
  .empresa-card,
  .dor-item,
  .numero-card {
    padding: 20px;
  }

  /* TÍTULOS DOS CARDS */
  .servico-card h3,
  .empresa-card h4 {
    font-size: 18px;
  }

  /* TEXTOS */
  .servico-card p,
  .empresa-card p {
    font-size: 14px;
  }

  /* ÍCONES */
  .servico-icon,
  .funciona-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

}
@media (max-width: 1100px) {
  .empresas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .empresas-grid {
    grid-template-columns: 1fr;
  }
  .empresa-card {
    padding: 20px;
  }

  .empresa-logo img {
    max-height: 120px;
  }
}

/* ======================================== */
/* MODAL CONTATO */
/* ======================================== */

#contactModal .modal-dialog{
  /*max-width: 800px;*/
  max-height:90vh;
}

#contactModal .modal-content{
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background:#ffffff;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.2);
  transition: all 0.3s;
  /*max-height:90vh;
  display:flex;
  flex-direction:column;*/
}
.modal-content p,
.modal-content label {
    font-size: 0.95rem; /* ou 0.85rem para ficar ainda menor */
}
.modal-content h5 {
    font-size: 1.40rem; /*Para títulos do modal:*/
}
#contactModal textarea[name="mensagem"] {
  min-height: 80px;
  max-height: 120px;
  resize: vertical;
}

/* HEADER */

#contactModal .modal-header{

  background: linear-gradient(135deg,#c1121f,#780000);
  color:#ffffff;
  border-bottom:none;
  padding:18px 25px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
/* barra decorativa abaixo do header */

#contactModal .modal-header::after{

  content:"";
  display:block;
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;

  background:linear-gradient(90deg,#ff4d4d,#c1121f,#780000);

}

#contactModal .modal-title{

  color:#ffffff;
  font-weight:500;
  font-size:1.3rem;
  letter-spacing:.3px;

}

#contactModal .btn-close{

  filter:invert(1);
  opacity:.8;

}

#contactModal .btn-close:hover{
  opacity:1;
}


/* BODY */

/* ========================= */
/* FORMULÁRIO COMPACTO */
/* ========================= */

#contactModal .modal-body{
  padding: 2rem;
  background-color: #ffffff; /* fundo branco para o formulário */
   overflow-y:auto;
}

/*#contactModal .row.g-3{
  row-gap:4px;
}
#contactModal .row.g-3 > *{
  margin-bottom:2px;
}*/

#contactModal .form-label{

  font-size:.85rem;
  margin-bottom:4px;
  font-weight:500;

}
/* Campos de formulário */
#contactModal .modal-body .form-control,
#contactModal .modal-body .form-select,
#contactModal .modal-body textarea {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  transition: all 0.3s;
}
#contactModal .modal-body .form-control:focus,
#contactModal .modal-body .form-select:focus,
#contactModal .modal-body textarea:focus {
  border-color: #c1121f; /* vermelho light */
  box-shadow: 0 0 8px rgba(236,102,59,0.25);
  outline: none;
  transform: scale(1.02); /* leve efeito de destaque */
}

/* FORM */

#contactModal form{
  width:100%;
}


/* LABELS */

/*#contactModal .form-label{
  font-weight:500;
  font-size:.9rem;
  color:#1a1a1a;
  margin-bottom:5px;
}*/


/* INPUTS */

#contactModal .form-control,
#contactModal .form-select{

  /*border-radius:7px;*/
  border:1px solid #dcdcdc;
  padding:8px 11px;
  font-size:.92rem;
  /*transition:all .2s ease;*/
  background:#ffffff;
  color:#1a1a1a;

}

#contactModal .form-control::placeholder{
  color:#6c757d;
}


/* INPUT FOCUS */

/*#contactModal .form-control:focus,
#contactModal .form-select:focus{

  border-color:#c1121f;
  box-shadow:0 0 0 .15rem rgba(193,18,31,.20);

}*/


/* TEXTAREA */

/*#contactModal textarea{
  resize:none;
}*/


/* CAPTCHA */

#contactModal #captchaQuestion{

  display:inline-block;
  background:#f8f9fa;
  padding:6px 10px;
  border-radius:6px;
  font-size:.9rem;
  margin-top:3px;
  color:#1a1a1a;

}


/* ERROS */

#contactModal .text-danger{
  font-size:.75rem;
}


/* Botão enviar - menor */
.modal-body .btn-cta {
  background-color: #c1121f;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.2rem; /* menor que antes */
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.modal-body .btn-cta:hover {
  background-color: #780000;
  color: #fff;
  transform: scale(1.05);
}

#contactModal .btn-cta:active{
  transform:translateY(0);
  box-shadow:none;
}


/* ALERTA */

#contactModal #alerta{
  font-size:.9rem;
}


/* MENSAGEM SUCESSO */

#contactModal #successMessage{

  border-radius:8px;
  font-size:.9rem;

}


/* ESPAÇAMENTO CAMPOS */

/*#contactModal .row.g-3 > *{
  margin-bottom:4px;
}*/


/* RESPONSIVO */

@media (max-width:768px){

  #contactModal .modal-body{
    padding:20px;
  }

  #contactModal .modal-title{
    font-size:1.2rem;
  }

  #contactModal .btn-cta{
    width:100%;
  }

}
/*=============fim contato modal=================================*/
/*=========== Toast Confirmação E-mail (Tiamat) ===========*/
#toastSuccess .toast {
  background: linear-gradient(135deg, #198754, #28a745); /* verde elegante */
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.8rem 1.4rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s ease;
  min-width: 260px;
  max-width: 90vw;
  text-align: center;
}

/* Ícone de check animado */
#toastSuccess .toast-body::before {
  content: "✔";
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 0.5rem;
  background-color: rgba(255,255,255,0.2);
  padding: 0.35rem 0.65rem;
  border-radius: 50%;
  animation: popIcon 0.4s ease;
}

/* Exibir bonito */
#toastSuccess.show .toast {
  opacity: 1;
  transform: scale(1);
}

/* Botão de fechar */
#toastSuccess .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
#toastSuccess .btn-close:hover {
  opacity: 1;
}

/* Animação leve no ícone */
@keyframes popIcon {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
/*=========== Fim Toast Confirmação E-mail ===========*/

/*=================inicio section comparativo====================*/
.comparativo{
  background: linear-gradient(180deg,#f8f5f2,#eee7e1);
  padding:80px 0;
  text-align:center;
}
.comparativo{
  position:relative;
}

.comparativo::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: radial-gradient(circle at top, rgba(193,18,31,0.05), transparent 70%);
  pointer-events:none;
}

.comparativo-title{
  font-size:32px;
  margin-bottom:10px;
}

.comparativo-sub{
  color:#64748b;
  max-width:600px;
  margin:0 auto 50px;
  font-size:16px;
}

/* GRID */

.comparativo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

/* CARD */

.comparativo-card{
  position:relative;
  padding:30px;
  border-radius:18px;
  background:white;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  text-align:left;
  transition:.3s;
}

/*.comparativo-card:hover{
  transform:translateY(-5px);
}*/

/* RUIM */

.comparativo-card.ruim{
  border-top:4px solid #dc2626;
}

/* BOM */

.comparativo-card.bom{
  border-top:4px solid #16a34a;
  transform:scale(1.05);
}

.check{
  color:#16a34a;
  margin-right:8px;
}

/* BADGE */

.comparativo-card .badge{
  position:absolute;
  top:-12px;
  right:20px;
  background:#16a34a;
  color:#fff;
  padding:6px 12px;
  font-size:12px;
  border-radius:20px;
}

/* TITULO */

.comparativo-card h3{
  text-align:center;
  margin-bottom:20px;
}

/* LISTA */

.comparativo-card ul{
  list-style:none;
  padding:0;
}

.comparativo-card li{
  padding:10px 0;
  border-bottom:1px solid #e2e8f0;
  font-size:15px;
}

/* MOBILE */

@media(max-width:768px){
  .comparativo-grid{
    grid-template-columns:1fr;
  }

  .comparativo-card.bom{
    transform:none;
  }

  .comparativo-title{
    font-size:24px;
  }
}
/*=================fim section comparativo=======================*/

/* ====================== Section PLANOS ====================== */

/*.container{
  max-width:1400px;
}*/
.planos{
  background: linear-gradient(180deg,#dfe3e8,#b8bec8);
}

/*.planos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:50px;
}*/
.planos-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
  margin-top:50px;
}

/* CARD */

.plano-card{
  position:relative;
  min-height: 460px; /* controla altura */
  padding:28px 18px;

  border-radius:18px;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(12px);

  border:1px solid rgba(0,0,0,0.05);

  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  transition:all .35s ease;

  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
/*card no card*/
.plano-header{
  background: linear-gradient(135deg,#c1121f,#780000);
  color:#fff;

  padding:16px 14px;

  border-radius:18px 18px 0 14px; /* acompanha o card */

  margin:-28px -18px 20px -18px; 
  /* 👆 ESSENCIAL: anula o padding do card */

  box-shadow:0 8px 20px rgba(193,18,31,0.25);
  
}
.plano-header h3{
  margin:0;
  font-size:20px;
  font-weight:600;
}

.plano-header p{
  margin:2px 0 0;
  font-size:12.5px;
  opacity:.9;
}


/* brilho topo */

/*.plano-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  border-radius:18px 18px 0 0;
  background:linear-gradient(90deg,#c1121f,#780000);
  opacity:.8;
}*/

/* hover */

.plano-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* TITULO */

.plano-card h3{
  /*font-size:17px;*/
  margin-bottom:5px;
}

.plano-desc{
  font-size:13px;
  color:#64748b;
  margin-bottom:20px;
}

/* LISTA */

.plano-card ul{
  list-style:none;
  padding:0;
  margin-bottom:20px;
  margin-top:5px;
  flex:1;
}

.plano-card li{
  margin-bottom:6px;
  font-size:12.5px;
}

/* BADGE */

.badge{
  position:absolute;
  top:15px;
  right:15px;

  background:linear-gradient(135deg,#c1a712,#786200);
  color:white;

  font-size:9px;
  padding:6px 10px;

  border-radius:20px;
  box-shadow:0 6px 15px rgba(193,18,31,0.3);
}

/* DESTAQUE */

.plano-card.destaque{
  transform:scale(1.05);
  border:1px solid rgba(193,18,31,0.25);

  box-shadow:
  0 20px 50px rgba(193,18,31,0.25),
  0 0 25px rgba(193,18,31,0.2);
}

.plano-card.destaque:hover{
  transform:scale(1.07) translateY(-10px);
}

/* BOTÃO */

.plano-card .btn{
  width:100%;
  justify-content:center;
}
.plano-botoes{
  display:flex;
  gap:10px;
  margin-top:auto;
}

.plano-botoes .btn{
  flex:1;
  justify-content:center;
  padding:12px;
  font-size:14px;
}

/* telas até ~18" / notebooks */
@media (max-width: 1600px){
  .planos-grid{
    grid-template-columns:repeat(5, 1fr);
  }
  
}
/*@media (max-width: 1500px){
  .planos-grid{
    grid-template-columns:repeat(5, 1fr);
    gap:12px;
  }

  .plano-card{
    padding:18px 12px;
  }
}*/
@media (max-width: 1350px){
  .planos-grid{
    grid-template-columns:repeat(4,1fr);
  }
}

/* notebooks menores */
@media (max-width: 1200px){
  .planos-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
@media (max-width: 768px){
  .plano-card:hover{
    transform:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
  }

  .plano-card.destaque:hover{
    transform:none;
  }
  .plano-card.destaque{
    transform:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.05);
  }

  .planos{
    padding:60px 15px;
  }
  .plano-header{
    width:calc(100% + 40px); /* 20 + 20 */
    margin-left:-20px;
    margin-right:-20px;
    text-align:center;
    border-radius:18px 18px 0 14px; /* acompanha o card */
    /*margin:-26px -18px 20px -18px; /* volta o encaixe */
    /*width:calc(100% + 36px); /* 18px + 18px */
    /*margin-left:-18px;*/
    /*margin-right:-18px;*/
  }
  .plano-header h3{
    font-size:26px;
  }
  .plano-header p{
    font-size:16px;
  }
  .plano-card li{
    font-size:16px;
    line-height:1.4;
  }
  .plano-card{
    text-align:center;
    align-items:center;
    min-height:480px; /* 👈 aumenta altura */
    padding:26px 20px;
  }
  .planos-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .plano-card ul{
    text-align:left;
    width:100%;
    max-width:280px;
  }
  .plano-botoes{
    flex-direction:column;
    width:100%;
  }

  .plano-botoes .btn{
    width:100%;
    padding:14px;
    font-size:15px;
  }

}

/*===================Fim Section Planos==========================*/

/*===================Inicio FAQ==================================*/
/* =========================
   FAQ SECTION (CLARA)
========================= */
.faq {
  background: linear-gradient(180deg, #fdf2f2, #f9fafb);
  padding: 80px 20px;
}

/* título */
.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

/* subtítulo */
.faq-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
}

/* =========================
   LISTA
========================= */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   ITEM (CARD)
========================= */
.faq-item {
  background: #ffffff;
  /*border-radius: 12px;*/
  margin-bottom: 15px;

  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);

  overflow: hidden;
  /*transition: 0.2s;*/
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 10px 0;
}

/* ITEM ATIVO DESTACADO */
.faq-item.active {
  border: 1px solid #c1121f;
  /*padding: 12px 15px;*/
  margin-bottom: 12px;

  background: #ffffff;

  box-shadow: 0 5px 20px rgba(193, 18, 31, 0.15);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* =========================
   PERGUNTA
========================= */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;

  color: #111827;
  font-size: 17px;
  text-align: left;

  padding: 18px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
}

.faq-question:hover {
  color: #c1121f;
}

/* =========================
   ICON
========================= */
.faq-icon {
  font-size: 22px;
  color: #c1121f;
  transition: 0.3s;
}

/* =========================
   RESPOSTA
========================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;

  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;

  transition: max-height 0.3s ease;
}

/* conteúdo interno */
.faq-answer p {
  padding: 0 20px 20px;
}

/* aberto */
/*.faq-item.active .faq-answer {
  max-height: 300px;
}*/

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  transform-origin: center; /* 🔥 garante rotação no centro */
}
/* BOTÃO WHATS DENTRO DA FAQ */
.faq-answer .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  /*margin: 10px 20px 20px; /* alinha com o texto */
  margin: 5px 20px 15px;
  padding: 8px 14px;

  font-size: 13px;
  border-radius: 20px;

  background: #25d366;
  color: #fff;

  text-decoration: none;
  transition: 0.2s;
}

/* ícone menor */
.faq-answer .btn-whatsapp i {
  font-size: 14px;
}

/* hover suave */
.faq-answer .btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
/*==================Fim FAQ======================================*/

/*=================inicio section cta final======================*/
.cta-final {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-final p {
  margin-bottom: 25px;
}
/*=================fim section cta final============================*/

/*=====================inicio Footer============================*/
.tm-footer{
 /* background:linear-gradient(180deg,#0e0e11,#141417);*/
  background:linear-gradient(
  180deg,
  #0e0e11 0%,
  #121214 40%,
  #18181c 100%
  );
  color:#cfcfcf;
  border-top:3px solid #c1121f;
  padding:90px 0 40px;   /* aumentei */
  font-size:15px;
}
.tm-footer .row{
  row-gap:40px;
  display: flex; /*alinhar as 3 colunas footer*/
  align-items: flex-start; /*alinhar as 3 colunas footer*/
}

.footer-logo{
  height:200px;
  display:block;
  margin:0 auto 18px auto;
}
/*-----footer empresa-----*/
.footer-empresa{
  text-align:center;
}
.footer-text{
  text-align:justify;
  line-height:1.7;
  color:#cfcfcf;
  max-width:360px;
  margin:0 auto 20px auto;
}

.tm-footer h5{

color:white;
margin-bottom:18px;
font-weight:600;

}

.footer-links{

list-style:none;
padding:0;
margin:0;

}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{

color:#cfcfcf;
text-decoration:none;
transition:.3s;

}

.footer-links a:hover{
  color:#c1121f;
}


.footer-links-group{
  text-align:center;
  justify-content:center;
}

.footer-contact{
  margin-top:5px;
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:45px;
}

.footer-contact i{
  margin-right:8px;
  color:#c1121f;
}

.footer-contato{
  text-align:center;
}

.contact-item{
  display:flex;
  align-items:center;
  justify-content:center; /*alinha contatos footer*/
  gap:8px;
  margin-bottom:8px;
  color:#cfcfcf;
}

.contact-item a:hover{
  color:#c1121f;
  text-decoration:underline;
}
.contact-item i{
  color:#c1121f;
  font-size:14px;
}

.contact-item span{
  font-size:14px;
}

.footer-bottom{
  text-align:center;
  font-size:14px;
  opacity:.8;
}

/*ajustes botoes*/
.tm-footer .btn-whatsapp,
.tm-footer .btn-contato{
  color: white;
  padding:10px 20px;
  font-size:14px;
}
.tm-footer .btn-area-cliente{
  color: rgb(148, 107, 107);;
  padding:10px 20px;
  font-size:14px;
}
.tm-footer .btn-whatsapp:hover,
.tm-footer .btn-contato:hover,
.tm-footer .btn-area-cliente:hover{
  color:#0a0a0a;
}

.footer-contato .btn{
  display:flex;
  margin:12px auto 0 auto;
  /*width:fit-content;*/ /*deixa botao tamanho texto*/
  width: 100%;
  max-width:240px;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.tm-footer hr{
  border-color:rgba(255,255,255,0.1);
  margin:40px 0 20px;
}

.footer-contact a{
color:#cfcfcf;
text-decoration:none;
}

.footer-contact a:hover{
color:#c1121f;
}

.social-footer{
  display: flex;
  justify-content: center;        /* centraliza horizontalmente */
  gap: 50px;                      /* espaço entre os ícones */
  margin-top: 20px;               /* distância do conteúdo acima */
  margin-left: 35px;
}
.footer-links-group .social-footer{
  margin-top:auto;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.social-footer a:hover{
  background:#c1121f;
  color:white;
  box-shadow:0 0 12px rgba(193,18,31,0.6);
  transform:translateY(-3px);
}

.footer-social-row{
  display:flex;
  justify-content:center;
  margin-top:5px;
}


.social-footer a{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration: none;          /* remove sublinhado */
  border-radius: 50%;             /* deixa os ícones circulares */
  width:42px;
  height:42px;
  border-top: 3px solid #c1121f;
  border-bottom: 3px solid #c1121f;
  /*border: 1px solid #c1121f;*/
  background:rgba(255,255,255,0.05);
  color:#cfcfcf;
  font-size:18px;
  transition:.3s;
}

.social-footer a:hover{
  background:#c1121f;
  color:white;
  transform:translateY(-3px);
}

.social-icon{
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color:#cfcfcf;
  font-size:20px;
  margin-right:12px;
  transition:.3s;
}

.social-icon:hover{
  transform: scale(1.1);
  opacity: 0.8;
  color:#c1121f;
}

/* =========================
   LINHA LEGAL FOOTER
========================= */

.footer-divider{
border:none;
height:1px;
background:rgba(255,255,255,0.08);
margin:50px 0 20px;
}

.footer-legal-content{

display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:10px;

font-size:12px;
color:#9a9a9a;

}

.footer-policies a{

color:#9a9a9a;
text-decoration:none;
transition:.3s;

}

.footer-policies a:hover{
  color:#c1121f;
}

.footer-policies span{
  margin:0 8px;
  opacity:.6;
  }
@media (max-width:992px){

.footer-links-group{
  margin-top:20px;
}
.social-footer{
  margin-left: 0;
}

.footer-contato{
  margin-top:20px;
}

.footer-legal-content{
  flex-direction:column;
  text-align:center;
}

.footer-policies{
  margin-top:5px;
}

}
/*=====================Fim footer===============================*/

/*=====================inicio politicas========================*/
.politica-wrapper{

  background:#1a1a1a;
  min-height:100vh;
  padding:60px 20px;

  display:flex;
  flex-direction:column;
  align-items:center;
}

/* logo central */

.politica-logo{
  text-align:center;
  margin-bottom:30px;
}

.politica-logo img{
  height:120px;
}

/* card */

.politica{
  background:#ffffff;
  padding:50px;
  border-radius:14px;
  box-shadow:0 12px 35px rgba(0,0,0,0.35);
  max-width:900px;
  width:100%;
  line-height:1.7;
  position:relative;
}
/* linha premium no topo */

.politica::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(
  90deg,
  #780000,
  #c1121f,
  #780000
  );
  border-radius:14px 14px 0 0;
}

/* header do card */
.politica-header{
  display:flex;
  justify-content:flex-end;
  margin-bottom:20px;
}

/* botão voltar */

.btn-voltar{

background:#c1121f;
color:#fff;

padding:8px 18px;
border-radius:20px;

text-decoration:none;
font-size:14px;

transition:.2s;

}

.btn-voltar:hover{

background:#780000;

}

/* títulos */

.politica h1{

margin-bottom:30px;
color:#c1121f;
text-align:center;

}

.politica h2{

margin-top:30px;
color:#1a1a1a;

border-left:4px solid #c1121f;
padding-left:10px;

}

.politica p{

margin-top:10px;
color:#333;

}

.politica-divisor{

margin:40px auto 20px auto;
width:900px;
max-width:90%;

border:none;
border-top:1px solid rgba(255,255,255,0.15);

}

/* footer fora do card */

.politica-footer{

text-align:center;
font-size:13px;
color:#bbb;

}

.politica-update{

margin-top:4px;
font-size:12px;
color:#888;

}
/*===================fim politicas=============================*/

/* ============================
   MODAL – INFORMAÇÕES DE BUILD
   Tiamat Rastreamento
   ============================ */

#buildInfoModal .modal-content {
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* HEADER */

#buildInfoModal .modal-header {
  background: linear-gradient(135deg,#1a1a1a,#780000);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
}

#buildInfoModal .modal-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* BODY */

#buildInfoModal .modal-body {
  background-color: #f8f9fa;
  border-radius: 0 0 18px 18px;
}

/* Texto técnico */

#buildInfoModal pre {
  background: #ffffff;
  border-radius: 10px;
  padding: 12px;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #1a1a1a;
  border: 1px solid #e9ecef;
}

/* Footer */

#buildInfoModal .modal-footer {
  border-top: 1px solid #dee2e6;
  gap: 8px;
}

/* Botões */

#buildInfoModal .btn {
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
}

/* Botão copiar */

#buildInfoModal .btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

#buildInfoModal .btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #ffffff;
}

/* Botão fechar */

#buildInfoModal .btn-primary {
  background-color: #c1121f;
  border-color: #c1121f;
}

#buildInfoModal .btn-primary:hover {
  background-color: #780000;
  border-color: #780000;
}


/*======================Inicio logs =================================*/

.build-section {
  margin-bottom: 12px;
  background-color: rgb(119, 141, 153);
}

.build-title {
  font-weight: 600;
  font-size: 0.8rem;
  color: #c1121f;
  margin-bottom: 4px;
  letter-spacing: .04em;
}

.build-line {
  font-size: 0.8rem;
  color: #1a1a1a;
  margin-left: 8px;
}

.build-info-box {
  max-height: 340px;
  overflow-y: auto;
  font-family: monospace;
  white-space: normal;
}

/* ===== GRID PARA INFORMAÇÕES DE BUILD ===== */

.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

/* Cards */

.build-section {
  margin-bottom: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #dee2e6;
}

.build-divider {
  grid-column: 1 / -1;
  border-top: 1px solid #dee2e6;
  margin: 8px 0 4px 0;
}

.build-section.security {
  grid-column: 1 / -1;
  border-radius: 8px;
  padding: 10px 12px;
}

/* OK */

.build-section.security.ok {
  background: #e9f7ef;
  border: 1px solid #b7e4c7;
}

/* ERRO */

.build-section.security.erro {
  background: #fdeaea;
  border: 1px solid #f5b5b5;
}

/* ================= LOGS ================= */

.stats-box {
  padding: 10px 12px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #dee2e6;
  font-size: 0.8rem;
}

.stats-line {
  color: #f8f9fa;
}

.stats-line-ult {
  color: #d6d6d6;
}

.stats-badge-total {
  background: #c1121f;
  color: #fff;
  font-weight: 700;
}

.log-item {
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #ffffff;
  border-left: 4px solid #6c757d;
}

.log-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 4px;
}

.log-code {
  font-weight: 600;
}

.log-msg {
  font-size: 0.8rem;
  color: #1a1a1a;
  word-break: break-word;
}

/* ERROR */

.log-error {
  border-left-color: #dc3545;
  background: #fff5f5;
}

/* WARNING */

.log-warn {
  border-left-color: #fd7e14;
  background: #fff8f1;
}

/* INFO */

.log-info {
  border-left-color: #0d6efd;
  background: #f1f6ff;
}

/* WHATSAPP */

.log-whats {
  border-left: 4px solid #25D366;
  background: rgba(37, 211, 102, 0.08);
}
.log-area {
  border-left: 4px solid #6f42c1; /* roxo */
  background: rgba(111, 66, 193, 0.08);
}

/* UTM */

.log-utm {
  background: rgba(0,0,0,0.03);
  padding: 4px 6px;
  border-radius: 4px;
}

/*-----Inicio ver acessos------------*/

.stats-box-access {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.access-box {
  background: #dde3e9;
  border-left: 4px solid #6c757d;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.access-first {
  background: #faf2d7;
  border-left: 4px solid #ffc107;
}
.access-utm {
  border-left: 4px solid #ed8019; /* Laranja Light */
  background: #fadecc;
}

/* Visita com UTM */
.access-utm-active {
  background: #e9f9ee;
  border-left: 4px solid #198754;
}
.access-utm-active .access-date {
  color: #146c43;
  font-weight: 600;
}

/*-----Fim ver acessos------------*/

@media (max-width: 576px) {

  .build-grid {
    grid-template-columns: 1fr;
  }

}
/*======================Fim logs ====================================*/
