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;*/

*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	 --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-color-2: #282faf;
	--background-color-3: #202692;
	--link-color: #03b9f1;
	--link-hover-color: #fff;
	color: #fff;
	color: var(--text-color);
	background-color: var(--background-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background-color);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 10000;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 10px solid var(--background-color-2);
	border-left-color: var(--text-color);
	animation: loaderAnim 0.8s linear infinite forwards;
}

@keyframes loaderAnim {
	to {
		transform: rotate(360deg);
	}
}

main {
	position: relative;
	width: 100%;
	overflow: hidden;
}

a {
	text-decoration: none;
	color: var(--link-color);
	outline: none;
}

a:hover,
a:focus {
	color: var(--link-hover-color);
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

/* Deco Shape */
.decoshape {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	fill: var(--background-color-3);
}

/* SVG Morph */
.morph-wrap {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: -1;
}

.morph {
	position: fixed;
	height: 100%;
	fill: var(--background-color-2);
	flex: none;
}
.content-wrap {
  max-width: 100%; /* antes era 1200px */
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
}

.content {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 1% 10%;
  position: relative;
  z-index: 1;
}


/* Imagem padrão */
.content__img,
.content__sobre1 {
  width: 50%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin: auto;
  height: 100%;
  width: 50%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.8; /* deixa suave atrás do texto */
}
.content__img::after,
.content__sobre1::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* escurece a imagem */
}

/* Texto dentro do content */
.content__title,
.content__desc {
  width: 55%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.content__title{
	font-size: 100px;
	margin-bottom: 0; /* Garante que não haja espaçamento extra */
	line-height: 0.90;
}
.content__desc{
	font-size: 30px;
}
/* 1º bloco: imagem à direita */
.content--layout-1 {
  flex-direction: row; /* texto esquerda, imagem direita */
}

/* 2º bloco: imagem à esquerda */
.content--layout-2 {
  flex-direction: row; /* imagem esquerda, texto direita */
}

/* 3º bloco: imagem à direita */
.content--layout-3 {
  flex-direction: row;
}

/* Header */
.codrops-header {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	z-index: 100;
	grid-area: header;
	align-self: start;
	justify-self: start;
}

.codrops-header__title {
	font-size: 1em;
	padding: 0.75em 0;
	margin: 0;
	font-weight: 500;
}

/* Demos */
.demos {
	grid-area: demos;
	align-self: end;
}

.demo {
	display: inline-block;
	position: relative;
	font-size: 0.85em;
	margin: 0 0.25em 0.5em 0;
	padding: 1em;
}

.demo .decoshape {
	display: none;
}

.demo--current {
	color: var(--link-hover-color);
	border-color: currentColor;
}

.demo--current .decoshape {
	display: block;
	z-index: -1;
}

/* Deco elements */
.deco {
	pointer-events: none;
}

.deco--title {
	grid-area: decotitle;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	text-align: right;
	align-self: end;
	justify-self: end;
}

/* Top Navigation Style */
.codrops-links {
	position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 1em 0 0;
    text-align: center;
    white-space: nowrap;
}

.codrops-icon {
	position: relative;
	display: inline-block;
	padding: 0.75em 0.75em 1em;
}

/* Demo themes */
.demo-2 {
	--background-color: #1d1b22;
	--background-color-2: #342560;
	--text-color: #fff;
	--link-color: #f9ed8a;
	--link-hover-color: #fff;
}

.demo-3 {
	--background-color: #56cccf;
	--background-color-2: #41e0e4;
	--background-color-3: #1747c0;
	--text-color: #fff;
	--link-color: #fff;
	--link-hover-color: #17b1b5;
}

.demo-3 .morph {
	fill: none;
	stroke-width: 12px;
	stroke: #22bcc0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
}
p{
    font-family: "Poiret One", serif;
}
.clube-beneficios{
    color: #000754;
}

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 */
}
/* 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: 180px; /* 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 */
}

/* Ajuste do vídeo de fundo */
.background-section video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);  /* Centraliza o vídeo horizontalmente */
    width: 100%;  /* Garante que o vídeo ocupe toda a largura */
    height: 100%; /* Garante que o vídeo ocupe toda a altura */
    object-fit: cover; /* Garante que o vídeo cubra toda a tela, mantendo a proporção */
}
/* Responsividade para telas menores */
@media (max-width: 1024px) {
    .background-section video {
        /* Ajustes para telas médias, como tablets */
        width: 100%; /* Ocupa toda a largura */
        height: 100%;; /* Deixa a altura ser ajustada conforme a largura */
    }
}

@media (max-width: 768px) {
    .background-section video {
        /* Para telas de smartphones */
        width: 100%; /* Garante que o vídeo ocupe toda a largura */
        height: 100%; /* Ajuste da altura para manter proporção */
    }
    .btn-contato{
        width: 180px;  /* Tamanho do botão */
        height: 50px;  /* Maior altura */
        font-size: 18px;  /* Aumenta o texto do botão */
        display: none !important;
    }
}

@media (max-width: 480px) {
    .background-section video {
        /* Para telas muito pequenas (ex: smartphones em modo retrato) */
        width: 100%; /* Garante a largura total */
        height: 100%; /* Ajusta automaticamente a altura */
    }
    .btn-contato{
        width: 180px;  /* Tamanho do botão */
        height: 50px;  /* Maior altura */
        font-size: 18px;  /* Aumenta o texto do botão */
        display: none !important;
    }
}

/* 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 */
        display: none !important;
    }
     .btn-contato{
        width: 180px;  /* Tamanho do botão */
        height: 50px;  /* Maior altura */
        font-size: 18px;  /* Aumenta o texto do botão */
        display: none !important;
    }
}

/* 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);
}


/* 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 */
    }
    
}
.cotacao-btn-container {
    text-align: right;
    
}

.cotacao-btn {
    width: 200px;
    height: 50px;
    border: 0;
    background-color: #000754;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
@media (max-width: 768px) {
    .cotacao-btn {
        width: 100%; /* O botão ocupa toda a largura */
        font-size: 16px; /* Reduzir a fonte para caber melhor */
        padding: 12px; /* Ajustar o espaçamento interno */
    }
}
.cotacao-btn:hover {
    background-color: #00bfe8;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .cotacao-section {
        flex-direction: column;
        align-items: center;
    }

    .container {
        width: 100%;
        padding: 20px;
    }

    .image-container {
        width: 100%;
        margin-top: 10px;
    }

    .cotacao-btn-container {
        text-align: center;
    }

    .cotacao-btn {
        width: 100%;  /* Botão ocupa toda a largura */
    }
}


.cotacao-btn:hover {
    background-color: #00bfe8;
}

.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);
  }
}
@media (max-width: 768px) {
    .overlay-text h1 {
        font-size: 64px;
    }
    .btn-contato button {
        width: 180px;
        height: 50px;
        font-size: 18px;
    }
    .cotacao-btn {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }
    .cotacao-btn-container {
        text-align: center;
    }
    header {
        padding: 10px 4%;
    }
    .background-section video {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 768px) {
    .content--layout,
    .content--layout-2,
    .content--layout-3,
    .content--layout-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .content__desc, .content__author, .content__link {
        font-size: 30px;
        width: 100%;
        padding: 1px;
    }

    .content__img, .content__sobre1 {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    .content__title {
        font-size: 70px;
    }
    .content-wrap {
      margin: 0 1px;
}
.content__title{
  width: 100%;
}
}
@media (max-width: 768px) {
    .container__inner, .cotacao-section, .frame {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}
.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;
  }
}



