@charset "UTF-8";
/* Estado inicial (antes do carregamento completo) */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

/* Estado carregado */
.loaded {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Saída visual ao clicar */
.fade-out {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

html {
  user-select: none;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #FFF;
  color: #111;
  margin: 0;
  padding: 0;
  opacity: 1;
  user-select: none;
}

.container {
  display: flex;
  gap: 40px;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px;
}
@media (max-width: 768px) {
  .container {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px;
  }
}

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

.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  user-select: none;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img {
  height: 75px;
  margin-right: 10px;
}
.header .logo span {
  font-weight: 700;
  font-size: 19px;
}
.header .login-button {
  background: #001959;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-color: transparent;
  border-radius: 14px;
  padding: 8px 16px;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  user-select: none;
}
.header .login-button:hover {
  background-color: #007aff;
}
@media (max-width: 768px) {
  .header .login-button {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .header {
    position: relative;
  }
}

.carousel-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 20px;
  flex-wrap: nowrap;
  max-width: 100%;
}
.carousel-tabs .tab {
  background: linear-gradient(180deg, #f9f9f9, #eaeaea);
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 transparent;
  transition: all 0.25s ease;
}
.carousel-tabs .tab:hover {
  background: #f0f0f0;
  box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.05);
}
.carousel-tabs .tab.active {
  background: #001959;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.tab-panel {
  animation: fadeTab 0.4s ease;
}

@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .carousel-tabs {
    gap: 10px;
  }
  .carousel-tabs .tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .carousel-tabs {
    align-items: center;
  }
  .carousel-tabs .tab {
    width: 150px;
    text-align: center;
    padding: 5px 10px;
    font-size: 0.9rem;
  }
}
.noticias-content .noticias-feed {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 16px;
  text-align: left;
  user-select: none;
  max-height: 500px;
  overflow: auto;
}
.noticias-content .noticias-feed h3 {
  font-size: 1.4rem;
  margin: 24px 0 16px 10px;
  color: #111;
  font-weight: 600;
}
.noticias-content .noticias-feed .feed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
}
.noticias-content .noticias-feed .feed-list li {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  background-color: transparent;
}
.noticias-content .noticias-feed .feed-list li .noticia-titulo {
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.2s ease;
}
.noticias-content .noticias-feed .feed-list li .noticia-titulo:hover {
  color: #001959;
}
.noticias-content .noticias-feed .feed-list li .noticia-conteudo {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}
.noticias-content .noticias-feed .feed-list li .noticia-conteudo p {
  margin: 0 0 6px;
}
.noticias-content .noticias-feed .feed-list li .noticia-conteudo small {
  color: #999;
  font-size: 0.85rem;
}
.noticias-content .noticias-feed .feed-list li:hover {
  background-color: #f2f2f2;
}
.noticias-content .noticias-feed .feed-list li:active {
  background-color: #e6e6e6;
  transform: scale(0.995);
}

@media (max-width: 768px) {
  .noticias-content .noticias-feed {
    max-height: 225px;
    padding: 0 16px;
  }
  .noticias-content .noticias-feed .feed-list li {
    font-size: 0.88rem;
    padding: 12px 14px;
  }
}
@media (max-width: 400px) {
  .noticias-content .noticias-feed .feed-list li {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}
.hero {
  padding-top: 100px;
  text-align: center;
}
.hero .phone-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  user-select: none;
}
.hero .phone-container .phone-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #333;
  text-align: center;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: -0.25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero .carousel-controls {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  bottom: 10px;
  gap: 12px;
  user-select: none;
}
.hero .carousel-controls .carousel-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: #001959;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.hero .carousel-controls .carousel-btn:hover {
  transform: scale(1.2);
  color: #007aff;
}
.hero .carousel-controls .carousel-dots {
  display: flex;
  gap: 8px;
}
.hero .carousel-controls .carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.hero .carousel-controls .carousel-dots .dot:hover {
  transform: scale(1.2);
  background-color: #007aff;
}
.hero .carousel-controls .carousel-dots .dot.active {
  background-color: #001959;
}
.hero .features-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero .features-carousel::before, .hero .features-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero .features-carousel::before {
  left: 0;
  background: linear-gradient(to right, white 90%, transparent);
}
.hero .features-carousel::after {
  right: 0;
  background: linear-gradient(to left, white 90%, transparent);
}
.hero .carousel-track.dragging {
  cursor: grabbing !important;
  cursor: -webkit-grabbing !important;
}
.hero .carousel-track {
  cursor: grab !important;
}
.hero .carousel-track {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hero .carousel-track::-webkit-scrollbar {
  display: none;
}
.hero .feature-item i {
  margin-bottom: 0.5rem;
}
.hero .feature-image {
  margin-top: 0.5rem;
  max-width: 100%;
}
.hero .feature-item.active {
  opacity: 1;
}
.hero .feature-item {
  flex: 0 0 100%;
  scroll-snap-align: center;
  text-align: center;
  user-select: none;
  transition: background 0.3s ease, opacity 0.3s ease;
}
.hero .feature-item:active {
  background: linear-gradient(135deg, rgba(241, 241, 241, 0.4588235294), rgba(227, 227, 227, 0.3019607843));
  opacity: 0.6;
}
.hero .feature-item i {
  font-size: 2.2rem;
  color: #001959;
  margin-bottom: 1rem;
}
.hero .feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.75rem;
}
.hero .feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  max-width: 320px;
  margin: 0 auto;
}
.hero .hero-content {
  margin-top: 80px;
  padding: 0 24px;
}
.hero .hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.8px;
  text-align: center;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.hero .hero-content p {
  max-width: 680px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  font-weight: 400;
  opacity: 0.9;
}
.hero .hero-content .cta-button {
  display: inline-block;
  background-color: #001959;
  color: white;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.25px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero .hero-content .cta-button:hover {
  background-color: #007aff;
  transform: translateY(-2px);
}
.hero .hero-content .cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .hero {
    padding-top: 10px;
  }
}

.benefits, .faq {
  padding: 16px 16px;
  text-align: center;
}
.benefits h2, .faq h2 {
  font-size: 32px;
  margin-bottom: 32px;
}
.benefits ul, .benefits .faq-list, .faq ul, .faq .faq-list {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.benefits ul li, .benefits ul details, .benefits .faq-list li, .benefits .faq-list details, .faq ul li, .faq ul details, .faq .faq-list li, .faq .faq-list details {
  font-size: 18px;
}
.benefits .cta-button, .faq .cta-button {
  background-color: #001959;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.footer {
  padding: 32px 16px;
  font-size: 14px;
  text-align: center;
  color: #666;
}

@media screen and (max-width: 1440px) {
  .hero-content {
    margin-top: 40px !important;
  }
  .hero-content h1 {
    font-size: 24px !important;
  }
  .hero-content p {
    font-size: 15px !important;
    padding: 0 16px !important;
  }
  .hero-content .cta-button {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}
@media screen and (max-width: 680px) {
  .hero .features-carousel::before, .hero .hero .features-carousel::after {
    width: 20px;
  }
  .hero .carousel-controls .carousel-btn {
    font-size: 0.8rem;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 12px;
    padding: 0 16px;
  }
  .hero-content .cta-button {
    font-size: 12px;
    padding: 4px 12px;
  }
}
.video-wrapper {
  background: #fff;
  padding: 8px;
  border-radius: 16px;
  overflow: hidden;
}
.video-wrapper .feature-video {
  width: 100%;
  max-height: 700px;
  height: 55vw;
  object-fit: cover;
  border-radius: 12px;
  background-color: #fff;
}

@media (max-width: 480px) {
  .video-wrapper {
    padding: 0;
    border-radius: 0;
  }
  .video-wrapper .feature-video {
    width: 100vw;
    height: 55vw;
    max-height: 75vh;
    border-radius: 0;
  }
}
.benefit-card.geport {
  background: linear-gradient(145deg, #f5f7fa, #ffffff);
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 420px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  user-select: none;
  margin-bottom: 30px;
}
.benefit-card.geport:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.benefit-card.geport h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}
.benefit-card.geport h2 span {
  color: #001959;
}
.benefit-card.geport .feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.benefit-card.geport .feature:hover {
  background: rgba(0, 64, 128, 0.04);
  transform: translateX(2px);
}
.benefit-card.geport .feature:active {
  transform: translateX(0px) scale(0.98);
  background: rgba(0, 64, 128, 0.06);
}
.benefit-card.geport .feature img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
.benefit-card.geport .feature img:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.benefit-card.geport .feature img:active {
  transform: scale(0.96);
  filter: brightness(0.9);
}
.benefit-card.geport .feature i {
  font-size: 1.6rem;
  color: #001959;
  margin-top: 4px;
  min-width: 26px;
}
.benefit-card.geport .feature .text {
  display: flex;
  flex-direction: column;
}
.benefit-card.geport .feature .text strong {
  font-weight: 600;
  font-size: 1.05rem;
  color: #222;
}
.benefit-card.geport .feature .text span {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .benefit-card.geport {
    padding: 20px;
  }
  .benefit-card.geport h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .benefit-card.geport .feature i {
    font-size: 1.3rem;
  }
  .benefit-card.geport .feature .text strong {
    font-size: 1rem;
  }
  .benefit-card.geport .feature .text span {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 480px) {
  .benefit-card.geport {
    padding: 16px;
  }
  .benefit-card.geport h2 {
    font-size: 1.25rem;
  }
  .benefit-card.geport .feature i {
    font-size: 1.1rem;
  }
  .benefit-card.geport .feature .text span {
    font-size: 0.88rem;
  }
}
.cta {
  padding: 24px 0;
  text-align: center;
  border-radius: 16px;
  max-width: 1440px;
  margin: 0 auto;
  user-select: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta:hover {
  transform: scale(1.005);
}
.cta h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta p {
  font-size: 1.1rem;
  color: #444;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta .cta-button {
  background-color: #001959;
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cta .cta-button:hover {
  background-color: #007aff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.cta .cta-button:active {
  transform: scale(0.97);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1440px) {
  .cta {
    padding: 0 20px 16px;
    margin: 6px;
  }
  .cta h2 {
    font-size: 1.75rem;
  }
  .cta p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .cta .cta-button {
    font-size: 0.95rem;
    padding: 12px 28px;
  }
}
@media (max-width: 768px) {
  .cta h2 {
    font-size: 1.5rem;
  }
  .cta p {
    font-size: 0.95rem;
  }
  .cta .cta-button {
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}
@media (max-width: 480px) {
  .cta h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .cta p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .cta .cta-button {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}
.faq {
  padding: 60px 20px;
  background: none;
  user-select: none;
  font-family: "Inter", sans-serif;
}
.faq h2 {
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}
.faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq .faq-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.faq .faq-item.active {
  border-color: rgba(0, 25, 89, 0.1882352941);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.faq .faq-item .faq-question {
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
  transition: color 0.3s ease;
}
.faq .faq-item .faq-question i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #001959;
}
.faq .faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  padding: 0 24px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  transition: all 0.4s ease;
  overflow: hidden;
}
.faq .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 18px;
}
.faq .faq-item.active .faq-question i {
  transform: rotate(-180deg);
}

@keyframes fadeInUp {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 40px 12px;
  }
  .faq h2 {
    font-size: 1.5rem;
  }
  .faq .faq-question {
    font-size: 1rem;
  }
  .faq .faq-answer {
    font-size: 0.9rem;
  }
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
.modal-overlay.ativo {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.modal-overlay .modal-box {
  background: #fff;
  padding: 28px 24px;
  border-radius: 20px;
  width: 92%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  animation: slideUp 0.4s ease;
}
.modal-overlay .modal-box h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #001959;
}
.modal-overlay .modal-box p {
  font-size: 0.95rem;
  color: #444;
  margin: 8px 0 20px;
}
.modal-overlay .modal-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-overlay .modal-box form input,
.modal-overlay .modal-box form select,
.modal-overlay .modal-box form textarea {
  background: #f8f9fa;
  border: 1px solid #ccd1d9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: #111;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-overlay .modal-box form input:focus,
.modal-overlay .modal-box form select:focus,
.modal-overlay .modal-box form textarea:focus {
  border-color: #001959;
  box-shadow: 0 0 0 2px rgba(0, 25, 89, 0.15);
  outline: none;
}
.modal-overlay .modal-box form select {
  appearance: none;
  background-size: 16px;
  padding-right: 32px;
}
.modal-overlay .modal-box form .enviar {
  background: #001959;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s;
}
.modal-overlay .modal-box form .enviar:hover {
  background: #0c2b85;
}
.modal-overlay .modal-box form .enviar:active {
  background: #061d5c;
}
.modal-overlay .modal-box .modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #999;
}
.modal-overlay .modal-box .modal-close:hover {
  color: #001959;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer-geport {
  background: #f5f5f5;
  padding: 24px 16px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}
.footer-geport .footer-container {
  max-width: 1440px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.footer-geport .footer-container p {
  margin: 4px 0;
}

@media (max-width: 600px) {
  .footer-geport {
    padding: 20px 12px;
  }
  .footer-geport .footer-container {
    font-size: 0.85rem;
  }
}
.security-icons {
  background-color: #f5f5f5;
  padding: 10px 0 25px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.icon-container {
  display: flex;
  flex-wrap: nowrap; /* impede quebra de linha */
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  min-width: max-content;
  user-select: none;
}

.icon-container img {
  height: 52px;
  width: auto;
  flex-shrink: 0; /* impede que se deformem */
  transition: transform 0.3s ease;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none; /* Safari/Chrome */
  -khtml-user-drag: none; /* Konqueror */
  -moz-user-drag: none; /* Firefox */
  -o-user-drag: none; /* Opera */
}

.icon-container img:hover {
  transform: scale(1.8);
}

.security-icons::-webkit-scrollbar {
  display: none;
}

.security-icons {
  -ms-overflow-style: none; /* IE e Edge */
  scrollbar-width: none; /* Firefox */
}
