*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:hwb(189 87% 10%);
    color:#333;
}

/* TOPO */
.topo{
    background:#0b3c5d;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.topo-esquerda{
    display:flex;
    align-items:center;
    gap:15px;
}

.topo-esquerda img{
    height:60px;
}

.topo-texto{
    color:#fff;
    font-size:22px;
    display:block;
}

.redes{
    display:flex;
    margin: 10px;
    padding: auto;
    gap:6px;
}

.telefone{
    color:#f4c430;
    font-weight:600;
    font-size:16px;
    margin: 10px;
    text-decoration: none;
}

.icon svg{
    width:30px;
    height:30px;
    fill:#ffffff;
    display:block;
    transition:0.3s;
}

.icon:hover svg{
    fill:hwb(312 19% 4%);
}


/* TEXTO GRANDE MAIS PARAGRAFO MAIS BOTAO WHATS */
.hero{
    background:linear-gradient(rgba(11,60,93,.85),rgba(11,60,93,.85)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover;
    padding:100px 20px;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:40px;
    color:#f4c430;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}

.btn{
    background:#f4c430;
    color:#000;
    padding:15px 35px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

/* Nossos serviços*/
.nosso-servico{
    background:#eef2f5;
    padding:80px 20px;
}

.title-servico h2{
    text-align:center;
    font-size:40px;
    color:#000;
    margin-bottom:50px;
    font-weight:700;
}

.services{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    text-decoration:none;
    color:#333;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    background:#0b3c5d;
    color:#fff;
}

.card:hover h3{
    color:#f4c430;
}


/* CONTEÚDO */
html {
  scroll-behavior: smooth;
}

.servicos {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.servico {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  background: #000;
  color: #c9a24d;
  font-weight: 600;
  transition: 0.3s;
}

.servico:hover {
  background: #c9a24d;
  color: #000;
}

.secao {
  padding: 80px 20px;
  background: #111;
  color: #fff;
}

.secao-clara {
  background: #f4f4f4;
  color: #000;
}

.secao h2 {
  text-align: center;
  margin-bottom: 10px;
}

.secao p {
  text-align: center;
  margin-bottom: 40px;
}

* {box-sizing:border-box}

/* MEU TESTE ESTA FICANDO BOM  */
/* Container principal */
.slider-container {
  max-width: 600px;
  position: relative;
  margin: auto;
}

/* Esconder imagens por padrão */
.mySlides {
  display: none;
  
}

/* Imagens */
.mySlides img {
  vertical-align: middle;
  width: 500px;
  height: 400px;
}

/* Botões de Próximo e Anterior */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 20px;
  user-select: none;
  
}

/* Posicionar o botão "próximo" na direita */
.next {
  right: 0;
  border-radius: 10px;
}

/* Efeito ao passar o mouse */
.prev:hover, .next:hover {
  background-color: #eeeaeacc;
}

/* VARIÁVEIS DE COR */
:root {
  --lumar-gold: #c9a24d;
  --lumar-black: #000;
  --lumar-dark: #111;
}

/* CONTAINER DOS BOTÕES */
.servicos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

/* BOTÕES PADRÃO */
.servico {
  min-width: 300px;          /* PADRONIZA TAMANHO */
  height: 100px;              /* ALTURA IGUAL */
  display: flex;
  align-items: center;
  justify-content: center;
 
  text-decoration: none;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;

  background: var(--lumar-black);
  color: var(--lumar-gold);

  border-radius: 30px;
  border: 2px solid var(--lumar-gold);

  transition: all 0.35s ease;
}

/* INTERAÇÃO (HOVER) */
.servico:hover {
  background: var(--lumar-gold);
  color: var(--lumar-black);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.35);
}

/* CLIQUE */
.servico:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(201, 162, 77, 0.25);
}



/* Missao e visao*/
.missao-visao{
    background:#ffffff;
    padding:80px 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;
}

.mv{
    background:#0b3c5d;
    padding:40px;
    border-radius:20px;
    color:#fff;
}

.mv h3{
    color:#f4c430;
    font-size:28px;
    margin-bottom:15px;
}

/*PLACA COM INFORMAÇÕES DA EMPRESA*/
.texto-lumarr{
    display: flex;
    align-items: center;
    justify-content: center;
}
.texto-gmail{
    display: flex;
    align-items: center;
    justify-content: center;
}
.texto-fone{
    display: flex;
    justify-content: center;
    align-items: center;
}
.texto-eng{
    display: flex;
    justify-content: center;
    align-items: center;
}

    
    

   
/* FOOTER */
footer{
    background:#0b3c5d;
    color:#fff;
    text-align:center;
    padding:25px;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}
@media (max-width: 768px) {
  .servico {
    min-width: 100%;
    max-width: 320px;
  }
}
