
/* RESET BÁSICO */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
}

/* CONTAINER PADRÃO */
.container{
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar{
  background: #2F3437;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .container{
  display:flex;
  justify-content: space-between;
  align-items:center;
}

/* ===== HEADER PRINCIPAL ===== */
.main-header{
  background: #F5F5F5;
  padding: 15px 0;
  border-bottom: 3px solid #E30613;
}
.header {
  position: relative;
  z-index: 999;
}
.header-content{
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.logo img{
  width: 300px;
  height: auto;
  max-width: 100%;
}

@media (max-width:768px){
  .logo img{
    width: auto;
  }
}

/* ===== MENU ===== */
.menu ul{
  display:flex;
  list-style:none;
  gap:25px;
  align-items:center;
}

.menu a{
  text-decoration:none;
  color:#2F3437;
  font-weight:600;
  font-size:14px;
  transition:0.3s;
}

.menu a:hover{
  color:#E30613;
}

/* BOTÃO ORÇAMENTO */
.btn-orcamento{
  background:#E30613;
  color:white !important;
  padding:10px 18px;
  border-radius:4px;
}

.btn-orcamento:hover{
  background:#b80010;
}

/* ===== TELEFONE ===== */
.telefone{
  text-align:right;
}

.telefone span{
  display:block;
  font-size:12px;
  color:#666;
}

.telefone strong{
  color:#2F3437;
  font-size:18px;
}

/* ===== RESPONSIVO ===== */
@media(max-width: 1000px){

  .menu{
    display:none; /* depois podemos fazer menu mobile */
  }

  .telefone{
    display:none;
  }

}

/*HERO - INICIO*/

/* HERO */

.hero {
  position: relative;
  width: 100%;
  min-height: 90vh; /* trocado de height fixo */
  overflow: hidden;
}

/* SLIDER */


.hero-slider {
  position: relative;
  width: 100%;
  min-height: inherit;
}



/* SLIDES */
.hero-slide {
  position: absolute;
  inset: 0; /* substitui top/left/width/height */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 60px;
  color: white;
  animation: fadeUp 1s ease;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-content h1 span {
  background: #d40000;
  padding: 6px 12px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  background: #d40000;
  padding: 18px 40px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #a80000;
  transform: translateY(-3px);
}

.hero-content small {
  display: block;
  margin-top: 20px;
  opacity: 0.8;
}

/* ANIMAÇÃO TEXTO */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SETAS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 30px;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s ease;
}

.prev { left: 25px; }
.next { right: 25px; }

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

/* DOTS */
.dots {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 3;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: white;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  opacity: 1;
  background: #d40000;
}

/* RESPONSIVO */

@media(max-width: 1024px){
  .hero-content {
    padding: 100px 40px;
  }
}

@media(max-width: 768px){

  .hero {
    min-height: 75vh;
  }

  .hero-content {
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .prev, .next {
    font-size: 22px;
    padding: 8px 12px;
  }

  .dots {
    left: 20px;
    bottom: 25px;
  }
}


/*HERO - FINAL*/

/*NOSSOS DIFERENCIAIS - INICIO*/
:root {
  --azul: #1A2939;
  --vermelho: #FA0202;
  --cinza-claro: #f4f6f8;
}

/* Seção */
.diferenciais {
  background: linear-gradient(135deg, #1A2939 0%, #101c28 100%);
  padding: 100px 40px;
  color: #fff;
  overflow: hidden;
}

/* Container */
.container-dif {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Texto */
.texto-dif .tag {
  color: var(--vermelho);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.texto-dif h2 {
  font-size: 48px;
  margin: 20px 0 40px;
  font-weight: 700;
}

/* Lista */
.lista-dif {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  margin-bottom: 50px;
}

.item {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}

.item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vermelho);
  font-weight: bold;
}

/* Botão */
.btn-dif {
  display: inline-block;
  background: var(--vermelho);
  color: #fff;
  padding: 20px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(250, 2, 2, 0.3);
}

.btn-dif span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-top: 5px;
  opacity: 0.9;
}

.btn-dif:hover {
  background: #c80000;
  transform: translateY(-5px);
}

/* Imagem */
.imagem-dif img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Responsivo */
@media (max-width: 992px) {
  .container-dif {
    grid-template-columns: 1fr;
  }

  .texto-dif h2 {
    font-size: 36px;
  }

  .lista-dif {
    grid-template-columns: 1fr;
  }
}
/*NOSSOS DIFERENCIAIS - FINAL*/

/*SOBRE - INICIO*/

/* ===== SOBRE EMPRESA ===== */

.sobre {
  background: #ffffff;
  padding: 100px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-header .tag {
  display: inline-block;
  background: #e6eef5;
  color: #1A2939;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.sobre-header h2 {
  font-size: 42px;
  color: #1A2939;
  margin-bottom: 25px;
}

.sobre-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Responsivo */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .sobre-header h2 {
    font-size: 30px;
  }

  .sobre-imagem {
    margin-top: 40px;
  }
}


/*SOBRE - FINAL*/

/*PRODUTOS - INICIO*/
:root {
  --azul: #1A2939;
  --vermelho: #FA0202;
  --bg: #f4f6f8;
}

/* Seção */
.produtos {
  padding: 100px 30px;
  background: var(--bg);
  font-family: Arial, sans-serif;
}

/* Container */
.container-prod {
  max-width: 1300px;
  margin: 0 auto;
}

/* Cabeçalho */
.prod-header {
  text-align: center;
  margin-bottom: 60px;
}

.prod-header span {
  color: var(--vermelho);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.prod-header h2 {
  font-size: 42px;
  color: var(--azul);
  margin: 15px 0;
}

.prod-header p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Card */
.prod-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-decoration: none;
  color: var(--azul);
  font-weight: 600;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #e5e5e5;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Hover */
.prod-card:hover {
  background: var(--azul);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(26,41,57,0.25);
}

/* Responsivo */
@media (max-width: 768px) {
  .prod-header h2 {
    font-size: 30px;
  }
}
/*PRODUTOS - FINAL*/

/*COMO TRABALHAMOS - INICIO*/
.processo-section {
  background: linear-gradient(135deg, #1A2939, #1A2939);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.processo-header span {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.8;
}

.processo-header h2 {
  font-size: 42px;
  margin: 15px 0 70px;
}

/* TIMELINE */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.timeline-line {
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  z-index: 0;
}

.timeline-item {
  position: relative;
  background: white;
  color: #333;
  padding: 40px 25px;
  border-radius: 20px;
  width: 23%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  z-index: 1;
  transition: 0.3s;
}

.timeline-item:hover {
  transform: translateY(-10px);
}

.timeline-number {
  width: 70px;
  height: 70px;
  background: #1A2939;
  color: white;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  margin: -75px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid white;
}

.timeline-item h3 {
  color: #1A2939;
  margin-bottom: 15px;
}

.timeline-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* BOTÃO */
.processo-btn {
  margin-top: 80px;
}

.processo-btn a {
  background: white;
  color: #1A2939;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.processo-btn a:hover {
  background: #dcdcdc;
}

.processo-info {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 1000px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    width: 90%;
    margin-bottom: 40px;
  }

  .timeline-number {
    margin-top: -60px;
  }
}
/*COMO TRABALHAMOS - FINAL*/


/*FAQ - INICIO*/

:root {
  --azul-principal: #1A2939;
  --vermelho-destaque: #FA0202;
  --bg-claro: #f4f6f8;
}

.faq {
  background: var(--bg-claro);
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header span {
  color: var(--vermelho-destaque);
  font-size: 14px;
  letter-spacing: 2px;
}

.faq-header h2 {
  font-size: 40px;
  color: var(--azul-principal);
  margin-top: 10px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: var(--azul-principal);
  color: #fff;
  border: none;
  padding: 20px 25px;
  border-radius: 50px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  background: var(--vermelho-destaque);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fff;
  border-radius: 0 0 20px 20px;
  margin-top: -10px;
  padding: 0 25px;
}

.faq-answer p {
  padding: 20px 0;
  color: #333;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question {
  background: var(--vermelho-destaque);
}

.icon {
  font-size: 20px;
}
/*Botão solicitar cotação*/
.faq-cta {
  text-align: center;
  margin-top: 60px;
}
/*BOTÃO SOLICITAR COTACAO*/
.btn-cta {
  display: inline-block;
  background-color: #1A2939; /* Azul Extrucol */
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(26, 41, 57, 0.25);
}

.btn-cta:hover {
  background-color: #FA0202; /* Vermelho Extrucol */
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(250, 2, 2, 0.25);
}

.btn-cta:active {
  transform: scale(0.98);
}
/*FAQ - FINAL*/


/*CONTATO - INICIO*/
.contato {
  background: #f4f4f4;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}
.input-erro {
  border: 2px solid #d40000;
}
.contato-topo {
  text-align: center;
  margin-bottom: 50px;
}

.contato-topo h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1c2b3a;
}

.contato-topo p {
  color: #555;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contato-box,
.curriculo-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-contato,
.curriculo-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #1c2b3a;
}

textarea {
  min-height: 120px;
  resize: none;
}

.btn-primary {
  background: #1c2b3a;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0f1a25;
}
.contato-info p {
  margin: 6px 0; /* reduz espaço entre linhas */
  line-height: 1.4;
}

.contato-info .info-bloco {
  margin-bottom: 15px; /* reduz espaço entre blocos */
}

.contato-info a {
  color: inherit;        /* usa a mesma cor do texto */
  text-decoration: none; /* remove sublinhado */
}

.contato-info a:hover {
  color: #FA0202;        /* vermelho da Extrucol no hover */
}
.contato-info .info-bloco {
  margin-bottom: 25px;
}

.contato-info h4 {
  margin-bottom: 8px;
  color: #1c2b3a;
}

/* RESPONSIVO */
@media(max-width: 900px){
  .contato-grid {
    grid-template-columns: 1fr;
  }
}
input.valido {
  border: 2px solid #2ecc71;
}

input.invalido {
  border: 2px solid #e74c3c;
}

/*CONTATO - FINAL*/

/*JANELA FLUTUANTE DESEJA ENVIAR O FORMULARIO DE CONTATO NO WHATSAPP - INICIO*/
#modal-sucesso {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 320px;
  text-align: center;
}

.modal-box h3 {
  margin-bottom: 10px;
}

.modal-botoes {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.modal-botoes button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

#btn-sim {
  background: #25D366;
  color: white;
}

#btn-nao {
  background: #ccc;
}
/*JANELA FLUTUANTE DESEJA ENVIAR O FORMULARIO DE CONTATO NO WHATSAPP - FINAL*/


/*rodape do site - inicio*/
/* ===================== */
/* FOOTER GERAL */
/* ===================== */

.footer {
  background-color: #0f2a3d;
  color: #ffffff;
  padding: 60px 20px 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ===================== */
/* COLUNAS */
/* ===================== */

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #dcdcdc;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

/* ===================== */
/* LINKS */
/* ===================== */

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* ===================== */
/* FOOTER BOTTOM */
/* ===================== */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #cfcfcf;
}

/* ===================== */
/* RESPONSIVO */
/* ===================== */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-logo {
    max-width: 150px;
  }
}
/*rodape do site - final*/

/* BOTÃO WHATSAPP - INICIO*/
/* BOTÃO FLUTUANTE */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: none;
  z-index: 999;
  transition: 0.3s;
}

.notification-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
}

/* CHAT BOX */
.whatsapp-chat {
  position: fixed;
  bottom: 110px;
  left: 25px;
  width: 320px;
  background: #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(20px);}
  to {opacity:1; transform:translateY(0);}
}

/* HEADER */
.chat-header {
  background: #128C7E;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.seller-photo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.seller-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.seller-info span {
  font-size: 12px;
  opacity: 0.8;
}
.chat-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-user img {
  border-radius: 50%;
}

.status {
  font-size: 12px;
  display: block;
}

.close-chat {
  cursor: pointer;
}

/* BODY */
.chat-body {
  padding: 15px;
  height: 250px;
  overflow-y: auto;
  font-size: 14px;
}

.message {
  background: white;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  max-width: 85%;
}

.typing {
  font-style: italic;
  opacity: 0.6;
}

/* FOOTER */
.chat-footer {
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-footer input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
}

.chat-footer button {
  background: #25D366;
  border: none;
  color: white;
  padding: 0 15px;
  cursor: pointer;
}
/* BOTÃO WHATSAPP - FINAL */


/* VOLTAR AO TOPO */



/*botao whatsapp direita - incio*/
.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}
botao whatsapp  direita - final*/


/* ================= MOBILE HERO FIX ================= */

@media (max-width: 768px) {

  .hero {
    height: auto; /* deixa crescer conforme o conteúdo */
    min-height: 85vh;
  }

  .hero-content {
    padding: 120px 20px 60px 20px; /* reduz laterais */
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 14px 25px;
    font-size: 14px;
  }

  .dots {
    left: 20px;
    bottom: 20px;
  }

  .prev, .next {
    font-size: 22px;
    padding: 8px 12px;
  }

}

/* ================= MENU MOBILE ================= */

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

@media(max-width:1000px){

  .menu-toggle{
    display:block;
  }

  .menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#F5F5F5;
    display:none;
    flex-direction:column;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
  }

  .menu ul{
    flex-direction:column;
    gap:15px;
  }

  .menu.active{
    display:flex;
  }

}
/*TOPO BOTÃO - INCIO*/
/* BOTÃO VOLTAR AO TOPO */

.btn-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #e30613;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.btn-top:hover {
  background-color: #b5000f;
  transform: translateY(-3px);
}

/* Quando ativo */
.btn-top.show {
  opacity: 1;
  visibility: visible;
}
/*TOPO BOTAO - FINAL*/ 

/* ============================= */
/* BANNER DE COOKIES */
/* ============================= */

/* ============================= */
/* MODAL COOKIES */
/* ============================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1f3c88;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

.cookie-banner p {
  margin: 0 0 10px 0;
  font-size: 14px;
}

.cookie-buttons button {
  margin: 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-buttons button:nth-child(1) {
  background: #28a745;
  color: #fff;
}

.cookie-buttons button:nth-child(2) {
  background: #6c757d;
  color: #fff;
}

.cookie-buttons button:nth-child(3) {
  background: #ffc107;
  color: #000;
}
