1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* General Styles outline: 1px solid red;*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
}

html, body {
    height: 100%;
    width: 100%;
    --color-bg: #000754;
	  --text-color: #fff;
 	  --background-color: var(--color-bg);
	  background-image: url(https://res.cloudinary.com/dcqa6ttvr/image/upload/f_auto,q_auto/egis/noise_png.png), radial-gradient(ellipse at top, #020527, transparent), radial-gradient(ellipse at bottom, #202692, transparent);
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
	--link-hover-color: #fff;
	font-family: 'Roboto Mono', monospace;
	font-weight: 500;
	color: #fff;
	color: var(--text-color);
	background-color: var(--background-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
}
p{
    font-family: "Poiret One", serif;
}

a {
    text-decoration: none;
}

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

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

/* Header Styles */
header {
    width: 100%;
    padding: 60px 4%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .5s;
}
@media (max-width: 768px) {
    header {
        padding: 10px 4%;
    }
}
header.rolagem {
    background-color: #fff;
    padding: 20px 4%;
}

header.rolagem a, header.rolagem i {
    color: #000754;
}

header i {
    font-size: 30px;
    color: #fff;
}

header ul {
    list-style-type: none;
}

header ul li {
    display: inline-block;
    margin: 0 40px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
}
.container_responsive{
    max-width: 1280px;
    margin: auto;
    overflow: hidden;
}

.logo_desktop {
    display: block;
}
.logo-desktop-alt {
    display: none;
}
/* Quando a página rolar +500px e adicionar .rolagem no #header */
#header.rolagem .logo_desktop {
    display: none;
}
#header.rolagem .logo-desktop-alt {
    display: block;
}
/* Em telas menores, nunca mostrar a logo-desktop-alt */
@media (max-width: 768px) {
    .logo_desktop,
    .logo-desktop-alt {
        display: none !important;
    }
}
/* Hide the nav-links (desktop menu) on small screens */
.nav-desktop {
    display: block; /* Show in large screens */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.nav-links {
    display: none; /* Hide mobile menu initially */
    position: absolute;   
}
/* Hover com efeito suave */
.nav-links li:hover {
  background-color: #0045c7;
  transform: scale(1.03);
}
.nav-links.active {
    display: block;
}
/* Logo para a versão mobile */
.logo_responsive {
    display: block;
    margin: auto; /* Centraliza a logo horizontalmente */
    width: 450px; /* Ajuste o tamanho conforme necessário */
}
.hamburger-menu {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%); /* centraliza o hambúrguer */
  width: 25px;
  height: 25px;
  z-index: 2; /* acima da logo */
  cursor: pointer;
}

.hamburger-menu div {
  background-color: #fff;
  height: 4px;
  margin: 5px 0;   /* espaço vertical entre as barras */
  border-radius: 2px; /* bordas arredondadas opcionais */
  transition: 0.4s;
  width: 100%;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hamburger-menu.active div:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

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

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

.nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: #001c5c; /* azul escuro igual da sua imagem */
    position: absolute; /* para ficar fixo na tela */
    top: 120px; /* começar do topo da tela */
    left: 5%;
    right: 5%; /* garante o mesmo espaçamento na direita */
    border-radius: 1px 30px;
    width: auto; /* ou simplesmente remova */
    overflow-y: auto; /* permitir scroll vertical */
}

.nav-links.active {
    display: flex;
    opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links li {
  width: 100%;
  max-width: 300px;
  margin: 15px auto; /* espaço entre os itens */
  padding: 12px 20px;
  text-align: center;
  background-color: #002e89;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.nav-links a {
    color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}


/* Ajuste para o box */
.box {
    position: relative;
    width: 100%;
    height: 100vh;  /* Garantir que a altura ocupe toda a tela */
}

/* Estilo para o botão */
.btn-contato button {
    margin-top: 2px;  /* Espaçamento entre o título e o botão */
    width: 200px;
    height: 50px;
    border: 0;
    background-color: #000754;
    border-radius: 60px;
    color: #fff;
    cursor: pointer;
    transition: .2s;
    font-size: 16px;
}
.btn-contato1 {
  display: flex;
  justify-content: center;
  padding: 60px 0; /* Espaço do header */

}

.btn-contato1 button {
  margin-top: 2px;
  width: 400px;
  height: 100px;
  border: 0;
  background-color: #00bfe8;
  border-radius: 60px;
  color: #fff;
  cursor: pointer;
  transition: .2s;
  font-size: 30px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .overlay-text h1 {
        font-size: 64px;
    }

    .btn-contato button {
        width: 180px;  /* Tamanho do botão */
        height: 50px;  /* Maior altura */
        font-size: 18px;  /* Aumenta o texto do botão */
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .overlay-text h1 {
        font-size: 56px;
    }

    .btn-contato button {
        width: 120px;  /* Ajuste o tamanho do botão para telas pequenas */
        height: 45px;  /* Ajuste a altura */
        font-size: 16px;  /* Ajuste o texto */
    }
}


/* Marquees */
.brands-marquee {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.brands-marquee h2{
    font-size: 30px;
}

.brands-container {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.brands-container img {
    width: 80px;
    margin: 0 20px;
    padding: 7px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brands-container img:hover {
    transform: scale(1.1);
}
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
  box-sizing: border-box;
  margin-top: 10%;     /* espaçamento externo do header */
}

.card {
  background: white;
  font-size: 25px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.titulo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #00085a;
  margin-bottom: 5px;
}

.sub-linha {
  width: 50px;
  height: 3px;
  background-color: #00085a;
  margin: 0 auto 20px auto;
}

.endereco {
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.btn-localizacao {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(10, 2, 83, 0.7);
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.btn-localizacao:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Responsiveness */
@media (max-width: 768px) {
    header ul {
        display: none; /* Hide the navigation links */
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .hamburger-menu.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .nav-links.active li:nth-child(1) {
  animation-delay: 0.1s;
}
.nav-links.active li:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-links.active li:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-links.active li:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-links.active li:nth-child(5) {
  animation-delay: 0.5s;
}
    

    /* Adjustments for overlay text */
    .overlay-text h1 {
        font-size: 32px;
    }

    .overlay-text {
        top: 50%;
    }

    /* Keep the contact button visible */
    .btn-contato button {
        position:absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 35px;
    }
    
}

/* Animations for Marquee */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Esconde a logo responsiva em telas grandes (desktop) */
@media (min-width: 768px) {
    .logo_responsive {
        display: none; /* Esconde a logo responsiva no desktop */
    }
}
@media (max-width: 768px) {
    /* Esconde a logo normal em telas pequenas */
    .logo-desktop {
        display: none;
    }

    /* Exibe a logo responsiva em telas pequenas */
    .logo_responsive {
        display: block; /* Exibe a logo responsiva em telas pequenas */
    }
}
@media (min-width: 768px) {
    .hamburger-menu {
        display: none; /* Esconde o menu hambúrguer em telas grandes */
    }
}

/*FRENTE VIDEO
/* Ajustes para a classe overlay-text e h1 */
.overlay-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 600;
    margin: 0;
}
/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .overlay-text h1 {
        font-size: 64px;
    }

    .btn-contato button {
        width: 180px;  /* Ajuste o tamanho do botão para telas menores */
        height: 50px;
        font-size: 18px;  /* Aumenta o texto do botão */
    }
}


/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .overlay-text h1 {
        font-size: 56px;
    }

    .btn-contato button {
        width: 120px;  /* Ajuste o tamanho para telas menores */
        height: 45px;  /* Ajuste a altura */
        font-size: 16px;  /* Ajuste o texto */
        background-color: transparent;
    }
    
}
.solucoes {
    text-align: center;
    font-family:"Poiret One", serif;
    padding: 20px;
}

@media (max-width: 768px) {
    .btn-contato button {
        display: none;
        margin-top: 5%;
    }
}
/* Container principal */
.cotacao-section {
  background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 10%;
}

@media (max-width: 768px) {
    .container-cotacao {
        width: 100%;  
    }
}
.container-cotacao {
  opacity: 0;
  transform: translateX(-150vw);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.image-container {
  opacity: 0;
  transform: translateX(150vw);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* Estado final: na posição original */
.container-cotacao.appear {
  opacity: 1;
  transform: translateX(0);
  animation: flutuar 4s ease-in-out infinite;
}

.btn-pulsar {
  animation: pulsar 1.5s infinite;
  background-color: #00bfe8;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 191, 232, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 191, 232, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 191, 232, 0);
  }
}
.contato-section {
  background: #000754;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 5%;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.mapa {
  width: 100%;
  max-width: 500px;
}

.mapa iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}
.footer {
  background-color: #000754;
  color: white;
  padding: 40px 5%;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  max-width: 250px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-right {
  flex: 1;
  min-width: 250px;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  text-decoration: none;
}

.footer-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 12px;
  font-size: 16px;
  flex: 1;
  border: none;
  border-radius: 6px;
  outline: none;
}

.newsletter-form button {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #000754;
  background-color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
}

.footer-divider {
  border: none;
  border-top: 1px solid #223094;
  margin: 30px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}
.footer-bottom p {
  font-family: 'Poppins', sans-serif;;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px; /* garante margem lateral */
    overflow-x: hidden; /* evita quebra horizontal */
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    word-break: break-word;
    white-space: normal;
  }

  .footer-left p,
  .footer-right p {
    word-break: break-word;
    white-space: normal;
    line-height: 1.5;
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    font-size: 15px;
  }

  .footer-divider {
    margin: 30px 0;
  }

  .footer-bottom {
    text-align: center;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
  }
  .footer-bottom{
  word-break: break-word;
  white-space: normal;
  }
}




