@charset "UTF-8";
.app-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.app-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.bg-dark-blue {
  background-color: #1c262f;
  color: #fff;
}
.bg-dark-blue h2, .bg-dark-blue h3, .bg-dark-blue h4, .bg-dark-blue p {
  color: #fff !important;
}

.btn:active {
  transform: scale(0.95) !important;
}

a.text-link {
  position: relative;
  text-decoration: none;
  color: #ff4b42;
}
a.text-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ff4b42;
  transition: width 0.3s ease;
}
a.text-link:hover::after {
  width: 100%;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  font-size: 95%;
}
@media (min-width: 992px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 100%;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

.section-about {
  background: linear-gradient(to bottom, #f8f9fa 0%, #1e272e 150px, #1e272e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.section-about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 221, 83, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.section-about .code-terminal-wrapper {
  position: relative;
  padding: 8px;
  perspective: 1000px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.section-about .code-terminal-wrapper img {
  border-radius: 10px;
  opacity: 0.95;
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.1) saturate(1.1);
  transition: all 0.5s ease;
}
.section-about .code-terminal-wrapper:hover img {
  opacity: 1;
  filter: contrast(1.2) saturate(1.3) drop-shadow(0 0 15px rgba(255, 75, 66, 0.4));
  transform: scale(1.01);
}
.section-about .code-terminal-wrapper::after {
  content: "•••";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 1.5rem;
  line-height: 0;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
}
.section-about h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.1;
  background: linear-gradient(90deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-about p {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 95%;
}
.section-about .btn-glow {
  background-color: #16dd53;
  color: #ffffff;
  border: none;
  box-shadow: 0 0 20px rgba(22, 221, 83, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
}
.section-about .btn-glow:hover {
  box-shadow: 0 0 30px rgba(148, 255, 60, 0.5);
  transform: translateY(-2px);
}

.section-registration {
  background-color: #ff4b42;
  background-image: radial-gradient(circle at 70% 50%, #ff5e56 0%, #ff4b42 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
  z-index: 5;
  color: #fff;
  overflow: hidden;
}
.section-registration h2 {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 2rem;
}
.section-registration p.lead {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 95%;
  margin-bottom: 2rem !important;
}
.section-registration .feature-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(5px);
  margin-bottom: 0.5rem;
}
.section-registration .feature-pill i {
  color: #fff;
  margin-right: 8px;
  font-size: 1rem;
}
.section-registration .feature-pill span {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
.section-registration .feature-pill:hover {
  background: rgba(255, 255, 255, 0.25);
}
.section-registration .glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.section-registration .glass-card i.icon-main {
  font-size: 2.2rem !important;
  margin-bottom: 0.5rem;
  display: block;
}
.section-registration .glass-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.section-registration .glass-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem !important;
}
.section-registration .glass-card .btn-white {
  background: #fff;
  color: #ff4b42;
  border: none;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.section-registration .glass-card .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: -1px 1.5rem;
}

.product-grid-wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: 1rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .product-grid-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translate3d(0, 0, 0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translate3d(0, 60px, 0);
  }
}
@keyframes floatAnimation {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -20px, 0) rotate(5deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-section {
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  position: relative;
  background-color: #1e272e;
  overflow: hidden;
  contain: content;
}
.hero-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hero-section .hero-grad-red {
  background: linear-gradient(-45deg, #ff4b42, #ff7b54, #d63027, #ff4b42);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  position: relative;
  z-index: 1;
  will-change: background-position;
}
.hero-section .hero-grad-dark {
  background-color: #1e272e;
  position: relative;
  z-index: 1;
}
.hero-section .hero-grad-dark::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  animation: gridMove 10s linear infinite;
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
          mask-image: radial-gradient(circle, black 30%, transparent 70%);
  will-change: transform;
}
.hero-section h1, .hero-section h2 {
  position: relative;
}
.hero-section .cursor {
  animation: blink 1s infinite;
  font-weight: 100;
  margin-left: 2px;
}
.hero-section .tracking-widest {
  letter-spacing: 3px;
}
.hero-section .hover-scale {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hero-section .hover-scale:hover {
  transform: scale(1.05);
}

.floating-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.9;
  filter: blur(1px);
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  animation: floatAnimation 6s ease-in-out infinite;
}
.floating-shape i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shape-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  top: 20%;
  right: 15%;
  animation-delay: 4s;
}
.shape-3 i {
  font-size: 2.5rem;
}

.bento-grid-futuristic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Define a altura das linhas */
  grid-auto-rows: 300px;
  gap: 1.5rem;
  padding: 2rem 0;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f4f4f4; /* Cor de fundo padrão */
}

.bento-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Classes de expansão (Desktop) */
.span-2-col {
  grid-column: span 2;
}

.span-2-row {
  grid-row: span 2;
}

@media (max-width: 991px) { /* Tablets e Laptops pequenos */
  .bento-grid-futuristic {
    grid-template-columns: repeat(2, 1fr); /* Muda para 2 colunas */
  }
  /* No tablet, o span-2-col ocupa a largura total (2 de 2) */
  .span-2-col {
    grid-column: span 2;
  }
}
@media (max-width: 767px) { /* Celulares */
  .bento-grid-futuristic {
    /* Força 1 coluna única. Tudo empilha. */
    grid-template-columns: 1fr;
    grid-auto-rows: auto; /* Altura automática baseada no conteúdo */
    gap: 1rem;
  }
  .bento-card {
    /* Reseta qualquer expansão. Cada card ocupa 1 espaço */
    grid-column: auto !important;
    grid-row: auto !important;
    /* Define uma altura mínima para cards que têm imagens, 
       senão eles podem sumir ou ficar muito pequenos */
    min-height: 250px;
  }
  /* Ajuste específico para os cards de texto/ícone ficarem menores se quiser */
  .info-card {
    min-height: 180px; /* Cards só de texto podem ser menores */
    padding: 1.5rem !important;
  }
  /* Ajuste para o vídeo do Youtube não quebrar */
  .bento-card iframe {
    position: relative !important;
    height: 100% !important;
    min-height: 200px;
  }
}
.section-segments {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.segments-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.segments-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
}

.segments-sidebar {
  background-color: rgb(249.9, 249.9, 249.9);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  padding: 1.5rem 0;
}
.segments-sidebar .list-group-item {
  border: none;
  background: transparent;
  color: #636e72;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  border-left: 3px solid transparent;
  margin-bottom: 2px;
}
.segments-sidebar .list-group-item i {
  font-size: 1.2rem;
  margin-right: 15px;
  color: rgb(150.6338028169, 160.7042253521, 164.3661971831);
  transition: all 0.2s;
}
.segments-sidebar .list-group-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
  color: #2d3436;
}
.segments-sidebar .list-group-item:hover i {
  color: #2d3436;
}
.segments-sidebar .list-group-item.active {
  background-color: #ffffff;
  color: #ff4b42 !important;
  border-left-color: #ff4b42;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.segments-sidebar .list-group-item.active i {
  color: #ff4b42;
}

.segments-content {
  background-color: #ffffff;
  padding: 3rem;
  height: 100%;
}
.segments-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #2d3436;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.segments-content p.lead {
  font-size: 1rem;
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.segments-content .check-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #2d3436;
}
.segments-content .check-list li i {
  color: #ff4b42;
  margin-right: 12px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.modal-experience .modal-content {
  border: none;
  border-radius: 24px;
  background: #fff !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.modal-experience .modal-visual-side {
  background: linear-gradient(135deg, #111 0%, #2d3436 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  color: white;
}
.modal-experience .modal-visual-side::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.2) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.modal-experience .form-floating-custom {
  position: relative;
  margin-bottom: 1.5rem;
}
.modal-experience .form-floating-custom input, .modal-experience .form-floating-custom select {
  width: 100%;
  border: none;
  border-bottom: 2px solid #b1b1b1;
  padding: 10px 0;
  font-size: 1rem;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s;
  color: #333;
}
.modal-experience .form-floating-custom input:focus, .modal-experience .form-floating-custom select:focus {
  outline: none;
  border-bottom-color: #dc3545;
  box-shadow: none;
}
.modal-experience .form-floating-custom label {
  position: absolute;
  top: 10px;
  left: 0;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
  font-size: 1rem;
}
.modal-experience .form-floating-custom input:not(:-moz-placeholder) ~ label {
  top: -15px;
  font-size: 0.8rem;
  color: #dc3545;
  font-weight: 600;
}
.modal-experience .form-floating-custom input:focus ~ label,
.modal-experience .form-floating-custom input:not(:placeholder-shown) ~ label,
.modal-experience .form-floating-custom select:focus ~ label,
.modal-experience .form-floating-custom select:valid ~ label {
  top: -15px;
  font-size: 0.8rem;
  color: #dc3545;
  font-weight: 600;
}
.modal-experience .btn-close-custom {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f1f1;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.2s;
  z-index: 10;
  color: #333;
  cursor: pointer;
}
.modal-experience .btn-close-custom:hover {
  background: #dc3545;
  color: white;
  transform: rotate(90deg);
}

.modal-command-center {
  z-index: 1060 !important;
  padding-right: 0 !important;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.modal-command-center.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.modal-command-center .modal-dialog {
  max-width: 100vw;
  width: 95%;
  margin: auto;
  height: 85vh;
  display: flex;
  transform: scale3d(0.9, 0.9, 1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.modal-command-center.show .modal-dialog {
  transform: scale3d(1, 1, 1);
}
.modal-command-center .modal-content {
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  contain: content;
}
.modal-command-center .btn-close-custom {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: 50;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.modal-command-center .btn-close-custom:hover {
  background: #ff4b42;
  transform: rotate(90deg);
}
.modal-command-center .modal-header-hero {
  position: relative;
  padding: 3rem 2rem 2rem;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a20 0%, #0f0f13 100%);
  z-index: 10;
  flex-shrink: 0;
  flex-grow: 0;
  transform: translateZ(0);
}
.modal-command-center .modal-header-hero .hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 75, 66, 0.3) 0%, transparent 70%);
  filter: blur(50px);
  opacity: 0.5;
  pointer-events: none;
}
.modal-command-center .modal-header-hero .icon-hero i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 75, 66, 0.5));
}
.modal-command-center .modal-header-hero h2 {
  font-size: 2.2rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modal-command-center .modal-header-hero .price-tag {
  display: inline-flex;
  align-items: baseline;
  color: #ff4b42;
  margin-bottom: 1.5rem;
}
.modal-command-center .modal-header-hero .price-tag .currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 5px;
  color: #666;
}
.modal-command-center .modal-header-hero .price-tag .amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
}
.modal-command-center .modal-header-hero .price-tag .cents {
  font-size: 1.5rem;
  font-weight: 600;
  color: #888;
}
.modal-command-center .modal-header-hero .price-tag .period {
  margin-left: 8px;
  color: #555;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.modal-command-center .modal-header-hero .btn-cta-pulse {
  background: #ff4b42;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 75, 66, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.modal-command-center .modal-header-hero .btn-cta-pulse:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 75, 66, 0.6);
}
.modal-command-center .modal-body {
  padding: 0;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  transform: translate3d(0, 0, 0);
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
}
.modal-command-center .modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-command-center .modal-body::-webkit-scrollbar-track {
  background: #0f0f13;
}
.modal-command-center .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
.modal-command-center .modal-body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.modal-command-center .modal-features-area {
  padding: 1rem 2rem 4rem;
  background-color: #0f0f13;
  position: relative;
}
.modal-command-center .modal-features-area .section-badge {
  color: #666;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  border: 1px solid #333;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.modal-command-center .modal-features-area .features-grid-power {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.modal-command-center .modal-features-area .features-grid-power .power-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  transform: translateZ(0);
}
.modal-command-center .modal-features-area .features-grid-power .power-card .card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 75, 66, 0.15);
  color: #ff4b42;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.modal-command-center .modal-features-area .features-grid-power .power-card .card-text {
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}
.modal-command-center .modal-features-area .features-grid-power .power-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 75, 66, 0.3);
  transform: translateY(-2px);
}
.modal-command-center .modal-features-area .features-grid-power .power-card:hover .card-icon {
  background: #ff4b42;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 75, 66, 0.5);
}
.modal-command-center .modal-features-area .features-grid-power .power-card:hover .card-text {
  color: #fff;
}
@media (max-width: 991px) {
  .modal-command-center .modal-dialog {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    margin: 0;
  }
  .modal-command-center .modal-content {
    border-radius: 0;
    border: none;
  }
  .modal-command-center .modal-header-hero {
    padding: 3rem 1.5rem 1rem;
  }
  .modal-command-center .price-tag .amount {
    font-size: 3rem;
  }
  .modal-command-center .features-grid-power {
    grid-template-columns: 1fr;
  }
}

.cookie-consent-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  width: 90%;
  max-width: 1200px;
  z-index: 9999;
  background: rgba(15, 15, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cookie-consent-bar.show {
  transform: translateX(-50%) translateY(0);
}
.cookie-consent-bar .cookie-text {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}
.cookie-consent-bar .cookie-text strong {
  color: #fff;
}
.cookie-consent-bar .cookie-text a {
  color: #ff4b42;
  text-decoration: underline;
}
.cookie-consent-bar .cookie-text a:hover {
  color: #fff;
}
.cookie-consent-bar .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-consent-bar .btn-cookie {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.cookie-consent-bar .btn-cookie.accept {
  background: #ff4b42;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 75, 66, 0.3);
}
.cookie-consent-bar .btn-cookie.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 75, 66, 0.5);
}
.cookie-consent-bar .btn-cookie.close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cookie-consent-bar .btn-cookie.close:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .cookie-consent-bar {
    bottom: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }
  .cookie-consent-bar .cookie-actions {
    width: 100%;
  }
  .cookie-consent-bar .btn-cookie {
    flex: 1;
    text-align: center;
  }
}

.footer-section {
  background-color: #1e272e;
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 75, 66, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.footer-section h4 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.footer-section .footer-links {
  list-style: none;
  padding: 0;
}
.footer-section .footer-links li {
  margin-bottom: 0.8rem;
}
.footer-section .footer-links li a {
  color: #636e72;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}
.footer-section .footer-links li a:hover {
  color: #ff4b42;
  transform: translateX(5px);
}
.footer-section .footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-section .footer-contact-item .icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #ff4b42;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.footer-section .footer-contact-item:hover .icon-box {
  background: #ff4b42;
  color: #ffffff;
}
.footer-section .footer-contact-item .text span {
  display: block;
  font-size: 0.8rem;
  color: #636e72;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 3px;
}
.footer-section .footer-contact-item .text p, .footer-section .footer-contact-item .text a {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: none;
}
.footer-section .footer-contact-item .text a:hover {
  color: #ffffff;
}
.footer-section .map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 250px;
  width: 100%;
}
.footer-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%);
  transition: all 0.5s;
}
.footer-section .map-container:hover iframe {
  filter: grayscale(0%) invert(0%);
}
.footer-section .social-links {
  display: flex;
  gap: 15px;
  margin-top: 2rem;
}
.footer-section .social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.2rem;
}
.footer-section .social-links a:hover {
  background: #ff4b42;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 75, 66, 0.4);
}
.footer-section .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #636e72;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.site-header .logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: #ff4b42;
  letter-spacing: -1px;
}
.site-header .desktop-nav {
  gap: 2rem;
}
.site-header .desktop-nav a {
  text-decoration: none;
  color: #2d3436;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.site-header .desktop-nav a:hover {
  color: #ff4b42;
}
.site-header .btn-mobile-toggle {
  background: none;
  border: none;
  color: #2d3436;
  cursor: pointer;
}
.site-header.mobile-open .desktop-nav {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: transparent;
  transition: all 0.4s ease-in-out;
  /* Estado Rolando: Fundo Escuro e compacto (JS adiciona essa classe) */
}
#mainNav #mainNav.navbar-shrink {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background-color: #1e272e;
  /* Dark Blue Suave */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#mainNav {
  /* Link Hover */
}
#mainNav #mainNav .nav-link {
  position: relative;
}
#mainNav #mainNav .nav-link:hover {
  color: #ff5e57 !important;
  /* Vermelho no hover */
}
@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#mainNav .navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  animation: slideInFade 0.8s ease-out forwards;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.65);
}
#mainNav .navbar-brand span {
  color: #ff4b42;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.65);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#mainNav .navbar-brand:hover span {
  text-shadow: 0 0 20px rgba(255, 75, 66, 0.9);
}
#mainNav .navbar-nav .nav-item .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  padding: 0 1rem;
}
#mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active {
  color: #ff4b42;
}
#mainNav .navbar-toggler {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}
#mainNav .navbar-toggler:focus {
  box-shadow: none;
}
#mainNav.navbar-shrink {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background-color: rgba(30, 39, 46, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#mainNav.navbar-shrink .navbar-brand {
  font-size: 1.25rem;
}
#mainNav .dropdown-menu.futuristic-dropdown {
  background-color: rgba(30, 39, 46, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 2px solid #ff4b42 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
  padding: 10px;
  min-width: 280px;
  margin-top: 15px;
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-item {
  color: #ffffff !important;
  border-radius: 8px;
  margin-bottom: 5px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-item small {
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color 0.3s;
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-item .icon-box {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-item:hover {
  background-color: rgba(255, 75, 66, 0.1) !important;
  border: 1px solid rgba(255, 75, 66, 0.3) !important;
  transform: translateX(5px);
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-item:hover small {
  color: rgba(255, 255, 255, 0.9) !important;
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-item:hover .icon-box {
  background-color: #ff4b42;
  box-shadow: 0 0 10px rgba(255, 75, 66, 0.6);
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-header {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
#mainNav .dropdown-menu.futuristic-dropdown .dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
@media (max-width: 991px) {
  #mainNav {
    background-color: #1e272e;
    padding: 1rem;
  }
  #mainNav .navbar-collapse {
    background-color: #1e272e;
    padding: 1rem 0;
    max-height: 80vh;
    overflow-y: auto;
  }
  #mainNav .nav-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  #mainNav .dropdown-menu.futuristic-dropdown {
    background-color: rgba(0, 0, 0, 0.2) !important;
    box-shadow: none !important;
    margin-top: 0;
    border: none !important;
  }
  #mainNav .btn {
    width: 100%;
    margin-top: 10px;
  }
}

body {
  background-color: #f8f9fa;
  color: #2d3436;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-top: 100px;
}

section {
  position: relative;
  width: 100%;
}

.pricing-section,
.section-segments {
  scroll-snap-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #2d3436;
  font-weight: 700;
  margin-bottom: 1rem;
}

.layout-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.layout-main {
  flex: 1;
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

.layout-mode-stacked .layout-wrapper {
  display: grid;
  height: 100vh;
  overflow: hidden;
  grid-template-columns: 280px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "sidebar main";
}
@media (max-width: 991px) {
  .layout-mode-stacked .layout-wrapper {
    display: block;
  }
}

.layout-mode-horizontal .layout-wrapper {
  display: flex !important;
  flex-direction: column !important;
  height: 100vh !important;
  overflow: hidden !important;
  width: 100% !important;
}
.layout-mode-horizontal .layout-header {
  height: auto !important;
  min-height: 70px;
  flex-shrink: 0;
  position: relative !important;
  width: 100% !important;
  z-index: 1000;
}
.layout-mode-horizontal .layout-sidebar {
  display: none !important;
}
.layout-mode-horizontal .layout-main {
  flex: 1 !important;
  height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden;
  width: 100% !important;
  display: block !important;
}

.feature-box {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}
.feature-box i {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #ff4b42;
  background: rgba(255, 75, 66, 0.1);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
}
.feature-box h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3436;
}
.feature-box p {
  color: #636e72;
  font-size: 0.95rem;
  line-height: 1.6;
}
.feature-box:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
}

.pricing-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}
.pricing-section .section-title {
  margin-bottom: 2.5rem;
}
.pricing-section .section-title h2 {
  font-weight: 800;
  color: #1a1a1a;
}
.pricing-section .section-title p {
  color: #666;
}

.pricing-scroll-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.pricing-scroll-container::-webkit-scrollbar {
  height: 6px;
}
.pricing-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}
.pricing-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.pricing-grid {
  display: flex;
  gap: 1.5rem;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding-top: 1rem;
}

.plan-card {
  min-width: 330px;
  max-width: 350px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border-radius: 24px;
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--theme-color, #00b894);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--theme-color);
}
.plan-card:hover::before {
  transform: scaleX(1);
}
.plan-card:hover .card-header-custom .plan-icon i {
  transform: scale(1.15) translateY(-5px);
  color: var(--theme-color);
}
.plan-card .card-header-custom {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 1.5rem;
}
.plan-card .card-header-custom .plan-icon {
  font-size: 2.5rem;
  color: #2d3436;
  margin-bottom: 0.8rem;
}
.plan-card .card-header-custom .plan-icon i {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.plan-card .card-header-custom .plan-title {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #2d3436;
}
.plan-card .card-header-custom .plan-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.plan-card .card-header-custom .plan-price .currency {
  font-size: 1rem;
  margin-top: 5px;
  font-weight: 600;
}
.plan-card .card-header-custom .plan-price .value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.plan-card .card-header-custom .plan-price .cents {
  font-size: 1rem;
  margin-top: 5px;
  font-weight: 600;
}
.plan-card .card-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}
.plan-card .card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.plan-card .card-features ul li {
  background: transparent;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.plan-card .card-features ul li.included {
  color: #2d3436;
  border: 1px solid rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}
.plan-card .card-features ul li.included .icon-check {
  color: #00e676;
  text-shadow: 0 0 5px rgba(0, 230, 118, 0.5);
  font-size: 1.1rem;
}
.plan-card .card-features ul li.included:hover {
  border-color: #00e676;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  transform: translateX(4px);
}
.plan-card .card-features ul li.excluded {
  color: #b2bec3;
  text-decoration: line-through;
  border: 1px solid rgba(255, 0, 60, 0.2);
}
.plan-card .card-features ul li.excluded .icon-cross {
  color: #ff003c;
  text-shadow: 0 0 5px rgba(255, 0, 60, 0.3);
  font-size: 1.1rem;
}
.plan-card .card-features ul li.excluded:hover {
  border-color: #ff003c;
  color: #ff003c;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
  transform: translateX(4px);
}
.plan-card .card-footer-custom {
  margin-top: auto;
}
.plan-card .card-footer-custom .btn-contract {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 2px solid #2d3436;
  color: #2d3436;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.plan-card .card-footer-custom .btn-contract:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-card.featured-card {
  background: linear-gradient(180deg, #15151a 0%, #0f0f13 100%);
  border: 1px solid #2a2a30;
  color: #ffffff;
}
.plan-card.featured-card:hover {
  box-shadow: 0 20px 60px rgba(var(--theme-color-rgb, 255, 75, 66), 0.25);
  border-color: var(--theme-color);
}
.plan-card.featured-card .card-header-custom {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
.plan-card.featured-card .card-header-custom .plan-icon i, .plan-card.featured-card .card-header-custom .plan-title, .plan-card.featured-card .card-header-custom .plan-price {
  color: #fff;
}
.plan-card.featured-card .card-features ul li.included {
  color: #ffffff;
  background: rgba(0, 255, 136, 0.05);
}
.plan-card.featured-card .card-features ul li.excluded {
  color: #636e72;
  background: rgba(255, 0, 60, 0.05);
}
.plan-card.featured-card .card-footer-custom .btn-contract {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}
.plan-card.featured-card .card-footer-custom .btn-contract:hover {
  filter: brightness(1.2);
}

.plan-card--custom-wide {
  width: 90vw;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(180deg, #15151a 0%, #0f0f13 100%);
  color: #ffffff;
  border: 1px solid #2a2a30;
}
.plan-card--custom-wide:hover {
  box-shadow: 0 20px 60px rgba(255, 75, 66, 0.15);
  border-color: var(--theme-color);
}
.plan-card--custom-wide:hover .card-header-custom .plan-title {
  color: var(--theme-color);
  text-shadow: 0 0 15px rgba(255, 75, 66, 0.4);
}
.plan-card--custom-wide:hover .card-header-custom .assemble-icon .box-1 {
  color: var(--theme-color);
  opacity: 1;
  transform: translateX(-50%);
}
.plan-card--custom-wide:hover .card-header-custom .assemble-icon .box-2 {
  bottom: 22px;
  left: 6px;
  opacity: 1;
  transform: rotate(0) scale(0.9);
  color: var(--theme-color);
  z-index: 2;
}
.plan-card--custom-wide:hover .card-header-custom .assemble-icon .box-3 {
  bottom: 22px;
  right: 6px;
  opacity: 1;
  transform: rotate(0) scale(0.9);
  color: var(--theme-color);
  z-index: 1;
}
.plan-card--custom-wide .card-header-custom {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.plan-card--custom-wide .card-header-custom .plan-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.4s ease, text-shadow 0.4s ease;
  margin-bottom: 1rem;
}
.plan-card--custom-wide .card-header-custom .plan-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: #fff;
}
.plan-card--custom-wide .card-header-custom .plan-price .starting-from {
  font-size: 0.65rem;
  font-weight: 900;
  color: #ff4b42;
  text-transform: uppercase;
  margin-right: 5px;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
}
.plan-card--custom-wide .card-header-custom .plan-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 2px;
}
.plan-card--custom-wide .card-header-custom .plan-price .value {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.plan-card--custom-wide .card-header-custom .plan-price .cents {
  font-size: 1.2rem;
  font-weight: 600;
}
.plan-card--custom-wide .card-header-custom .custom-plan-desc {
  color: #a4b0be !important;
}
.plan-card--custom-wide .card-header-custom .assemble-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 65px;
  width: 80px;
  margin: 0 auto 1.5rem auto;
}
.plan-card--custom-wide .card-header-custom .assemble-icon i {
  position: absolute;
  font-size: 2.2rem;
  color: #636e72;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.plan-card--custom-wide .card-header-custom .assemble-icon .box-1 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.plan-card--custom-wide .card-header-custom .assemble-icon .box-2 {
  bottom: 20px;
  left: -10px;
  opacity: 0.3;
  transform: rotate(-30deg) scale(0.7);
}
.plan-card--custom-wide .card-header-custom .assemble-icon .box-3 {
  bottom: 20px;
  right: -10px;
  opacity: 0.3;
  transform: rotate(30deg) scale(0.7);
}
.plan-card--custom-wide .custom-features-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  text-align: left;
}
.plan-card--custom-wide .custom-features-grid .col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--theme-color);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.06);
  padding-bottom: 0.5rem;
}
.plan-card--custom-wide .custom-features-grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}
.plan-card--custom-wide .custom-features-grid ul li.included {
  font-size: 0.85rem;
  padding: 0.6rem 0.8rem;
  margin: 0;
  background: rgba(0, 230, 118, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.plan-card--custom-wide .custom-features-grid ul li.included .icon-check {
  color: #00e676;
}
.plan-card--custom-wide .custom-features-grid .addon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.plan-card--custom-wide .custom-features-grid .all-selected-msg {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9.5rem 1rem;
  background: rgba(0, 230, 118, 0.05);
  border: 1px dashed rgba(0, 230, 118, 0.4);
  border-radius: 12px;
  color: #00e676;
  font-weight: 800;
  margin-top: 0.5rem;
  animation: fadeIn 0.4s ease-out forwards;
}
.plan-card--custom-wide .custom-features-grid .all-selected-msg i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.plan-card--custom-wide .custom-features-grid .all-selected-msg p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #a4b0be;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.plan-card--custom-wide .custom-features-grid #moved-addons-container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.plan-card--custom-wide .custom-features-grid #moved-addons-container::before {
  content: "MÓDULOS ADICIONADOS";
  grid-column: 1/-1;
  font-size: 0.85rem;
  font-weight: 900;
  color: #00e676;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.plan-card--custom-wide .custom-features-grid #moved-addons-container:empty {
  display: none;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card .addon-name {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card .addon-price {
  color: #a4b0be;
  font-size: 0.8rem;
  font-weight: 800;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card .addon-price small {
  font-size: 0.65rem;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card .btn-add-addon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card .btn-add-addon i {
  font-size: 1rem;
  transition: transform 0.3s;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card:hover {
  border-color: var(--theme-color);
  box-shadow: 0 0 10px rgba(255, 75, 66, 0.15);
  transform: translateX(4px);
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card:hover .btn-add-addon {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card:hover .btn-add-addon i {
  transform: rotate(90deg);
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card.selected {
  border-color: #00e676;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
  background: rgba(0, 230, 118, 0.05);
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card.selected .addon-price {
  color: #00e676;
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card.selected .btn-add-addon {
  background: #ff003c;
  border-color: #ff003c;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
  transform: rotate(180deg);
}
.plan-card--custom-wide .custom-features-grid .addon-mini-card .addon-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plan-card--custom-wide .card-footer-custom .btn-contract {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}
.plan-card--custom-wide .card-footer-custom .btn-contract:hover {
  filter: brightness(1.2);
}
@media (max-width: 720px) {
  .plan-card--custom-wide {
    padding-top: 1rem;
    width: 100%;
    min-width: unset;
    max-width: 550px;
    margin: 0 auto;
  }
  .plan-card--custom-wide .custom-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .plan-card--custom-wide .custom-features-grid ul, .plan-card--custom-wide .custom-features-grid .addon-list, .plan-card--custom-wide .custom-features-grid #moved-addons-container {
    display: flex;
    flex-direction: column;
  }
  .plan-card--custom-wide .custom-features-grid .col-inclusos {
    order: 1;
  }
  .plan-card--custom-wide .custom-features-grid #moved-addons-container {
    order: 2;
    border-top: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }
  .plan-card--custom-wide .custom-features-grid .col-opcionais {
    order: 3;
  }
}
@media (max-width: 576px) {
  .plan-card--custom-wide {
    width: 85vw;
    padding: 1.5rem 1.2rem;
  }
  .plan-card--custom-wide .card-header-custom {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .plan-card--custom-wide .card-header-custom .plan-title {
    font-size: 1.2rem;
  }
  .plan-card--custom-wide .card-header-custom .plan-price .value {
    font-size: 3rem;
  }
  .plan-card--custom-wide .custom-features-grid .addon-mini-card {
    padding: 0.6rem 0.8rem;
  }
}

.custom-plan-sticky-bar {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f0f13;
  border: 2px solid #2a2a30;
  color: #ffffff;
  padding: 1rem 1.5rem 1rem 2.5rem;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(var(--theme-color-rgb, 0, 230, 118), 0.2);
  z-index: 1050;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.custom-plan-sticky-bar.visible {
  bottom: 40px;
  opacity: 1;
}
.custom-plan-sticky-bar .cart-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-plan-sticky-bar .cart-icon-wrapper {
  position: relative;
}
.custom-plan-sticky-bar .cart-icon-wrapper i {
  font-size: 2rem;
  color: var(--theme-color);
}
.custom-plan-sticky-bar .cart-icon-wrapper .cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #ff4b42;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid #0f0f13;
}
.custom-plan-sticky-bar .cart-text {
  display: flex;
  flex-direction: column;
}
.custom-plan-sticky-bar .cart-text .cart-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a4b0be;
}
.custom-plan-sticky-bar .cart-text .cart-total {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.custom-plan-sticky-bar .cart-text .cart-total small {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-left: 2px;
}
.custom-plan-sticky-bar .sticky-actions-group {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.custom-plan-sticky-bar .sticky-actions-group .btn-sticky {
  border: none;
  border-radius: 30px;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.9rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}
.custom-plan-sticky-bar .sticky-actions-group .btn-sticky i {
  font-size: 1.1rem;
}
.custom-plan-sticky-bar .sticky-actions-group .btn-sticky.btn-wpp-sticky {
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
}
.custom-plan-sticky-bar .sticky-actions-group .btn-sticky.btn-wpp-sticky:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}
.custom-plan-sticky-bar .sticky-actions-group .btn-sticky.btn-finalize-sticky {
  background: var(--theme-color);
  color: #fff;
  animation: pulseButton 2s infinite;
}
.custom-plan-sticky-bar .sticky-actions-group .btn-sticky.btn-finalize-sticky:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
  animation: none;
}
@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}
@media (max-width: 992px) {
  .custom-plan-sticky-bar {
    flex-direction: column;
    width: 90%;
    border-radius: 25px;
    padding: 1.5rem;
    gap: 1rem;
  }
  .custom-plan-sticky-bar .cart-info {
    border-right: none;
    padding-right: 0;
  }
  .custom-plan-sticky-bar .sticky-actions-group {
    width: 100%;
    flex-direction: column;
  }
  .custom-plan-sticky-bar .sticky-actions-group .btn-sticky {
    width: 100%;
    justify-content: center;
  }
}

.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.checkout-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal-box {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(50px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.checkout-modal-overlay.active .checkout-modal-box {
  transform: translateY(0);
}
.checkout-modal-box .btn-close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #b2bec3;
  cursor: pointer;
  transition: color 0.3s;
}
.checkout-modal-box .btn-close-modal:hover {
  color: #2d3436;
}
.checkout-modal-box h3 {
  font-weight: 900;
  color: #2d3436;
  margin-bottom: 0.5rem;
}
.checkout-modal-box p {
  color: #636e72;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.checkout-modal-box .modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.checkout-modal-box .modal-actions .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.2rem;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  width: 100%;
}
.checkout-modal-box .modal-actions .btn-action i {
  font-size: 1.4rem;
}
.checkout-modal-box .modal-actions .btn-action.btn-card {
  background: #1a1a1a;
  color: #fff;
  border: 2px solid #1a1a1a;
}
.checkout-modal-box .modal-actions .btn-action.btn-card:hover {
  background: transparent;
  color: #1a1a1a;
}
.checkout-modal-box .modal-actions .btn-action.btn-wpp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.checkout-modal-box .modal-actions .btn-action.btn-wpp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
}

.about-page {
  background-color: #fff;
}
.about-page .manifesto-section {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
}
.about-page .manifesto-section .marquee-container {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.about-page .manifesto-section .marquee-container .marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-size: 14vw;
  font-weight: 900;
  text-transform: uppercase;
  color: #000 !important;
  line-height: 1;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about-page .manifesto-section .hero-text-content {
  position: relative;
  z-index: 2;
}
.about-page .manifesto-section .hero-text-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.about-page .manifesto-section .stats-row {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.about-page .manifesto-section .stats-row .counter-box {
  text-align: center;
  transition: transform 0.3s ease;
}
.about-page .manifesto-section .stats-row .counter-box:hover {
  transform: translateY(-5px);
}
.about-page .manifesto-section .stats-row .counter-box .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111111;
  display: block;
}
.about-page .manifesto-section .stats-row .counter-box .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #636e72;
  font-weight: 700;
}
.about-page .social-proof-section {
  background-color: #0f0f13;
  color: #fff !important;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.about-page .social-proof-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: 0;
}
.about-page .social-proof-section .proof-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 991px) {
  .about-page .social-proof-section .proof-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.about-page .social-proof-section .google-card-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-page .social-proof-section .google-card-wrapper .google-review-card {
  background: #fff;
  color: #111;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-width: 450px;
  width: 100%;
  transform: rotate(-3deg);
  transition: all 0.4s ease;
}
.about-page .social-proof-section .google-card-wrapper .google-review-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 35px 60px -12px rgba(255, 255, 255, 0.15);
}
.about-page .social-proof-section .google-card-wrapper .google-review-card .card-header-g {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.about-page .social-proof-section .google-card-wrapper .google-review-card .card-header-g .g-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}
.about-page .social-proof-section .google-card-wrapper .google-review-card .score-display {
  text-align: center;
  margin-bottom: 2rem;
}
.about-page .social-proof-section .google-card-wrapper .google-review-card .score-display .score {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}
.about-page .social-proof-section .google-card-wrapper .google-review-card .score-display .stars {
  color: #fbbc05;
  font-size: 1.2rem;
  margin: 10px 0;
}
.about-page .social-proof-section .google-card-wrapper .google-review-card .quote {
  font-style: italic;
  color: #555;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  border-left: 4px solid #34a853;
}
.about-page .social-proof-section .text-side {
  flex: 1;
}
.about-page .social-proof-section .text-side h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff !important;
}
.about-page .social-proof-section .text-side p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem !important;
}
.about-page .social-proof-section .text-side .trust-list {
  list-style: none;
  padding: 0;
}
.about-page .social-proof-section .text-side .trust-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.about-page .social-proof-section .text-side .trust-list li i {
  color: #34a853;
  font-size: 1.3rem;
}
.about-page .team-section {
  padding: 8rem 0;
  background-color: #f8f9fa;
}
.about-page .team-section .section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.about-page .team-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
.about-page .team-section .bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}
@media (max-width: 991px) {
  .about-page .team-section .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.about-page .team-section .bento-grid .bento-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.about-page .team-section .bento-grid .bento-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.about-page .team-section .bento-grid .bento-item:hover {
  transform: translateY(-5px);
}
.about-page .team-section .bento-grid .bento-item:hover img {
  transform: scale(1.05);
}
.about-page .team-section .bento-grid .bento-item:hover .overlay {
  opacity: 1;
}
.about-page .team-section .bento-grid .bento-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease !important;
}
.about-page .team-section .bento-grid .bento-item .overlay h4 {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
}
.about-page .team-section .bento-grid .bento-item .overlay span {
  font-size: 0.9rem;
  opacity: 0.8;
}
.about-page .team-section .bento-grid .bento-item.span-2-col {
  grid-column: span 2;
}
.about-page .team-section .bento-grid .bento-item.span-2-row {
  grid-row: span 2;
}
.about-page .team-section .bento-grid .bento-item.text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #ff4b42, #d63027);
  color: #fff !important;
}

.system-window-wrapper {
  perspective: 1000px;
}
.system-window-wrapper .browser-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 80px -20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.system-window-wrapper .browser-window:hover {
  transform: translateY(-5px) rotateX(1deg);
  box-shadow: 0 30px 90px -25px rgba(0, 0, 0, 0.2);
}
.system-window-wrapper .browser-window .browser-header {
  background: #f1f3f5;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.system-window-wrapper .browser-window .browser-header .traffic-lights {
  display: flex;
  gap: 6px;
}
.system-window-wrapper .browser-window .browser-header .traffic-lights .light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.system-window-wrapper .browser-window .browser-header .traffic-lights .red {
  background: #ff5f57;
}
.system-window-wrapper .browser-window .browser-header .traffic-lights .yellow {
  background: #febc2e;
}
.system-window-wrapper .browser-window .browser-header .traffic-lights .green {
  background: #28c840;
}
.system-window-wrapper .browser-window .browser-header .address-bar {
  flex: 1;
  background: #fff;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #888 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}
.system-window-wrapper .browser-window .browser-header .address-bar i {
  color: #28c840;
  font-size: 0.7rem;
}
.system-window-wrapper .browser-window .viewport-container {
  position: relative;
  aspect-ratio: 16/9;
  background: #1e272e;
}
.system-window-wrapper .browser-window .viewport-container .main-system-img {
  width: 100%;
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
  transition: opacity 0.3s ease;
}
.system-window-wrapper .thumbnails-nav {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: inline-flex;
}
.system-window-wrapper .thumbnails-nav .thumb {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.system-window-wrapper .thumbnails-nav .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.system-window-wrapper .thumbnails-nav .thumb:hover {
  opacity: 0.8;
}
.system-window-wrapper .thumbnails-nav .thumb.active {
  opacity: 1;
  border-color: #ff4b42;
  transform: scale(1.1);
}

.team-section {
  padding: 8rem 0;
  background-color: #f8f9fa !important;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 75, 66, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.team-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
  text-align: center;
}
.team-section .section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  color: #111;
}
.team-section .section-header p {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}
.team-section .bento-grid-futuristic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .team-section .bento-grid-futuristic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.team-section .bento-grid-futuristic .bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.team-section .bento-grid-futuristic .bento-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.team-section .bento-grid-futuristic .bento-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 50%;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.team-section .bento-grid-futuristic .bento-card .card-content h4 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  transform: translateY(10px);
  transition: transform 0.4s;
  color: #fff !important;
}
.team-section .bento-grid-futuristic .bento-card .card-content span {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.1s;
}
.team-section .bento-grid-futuristic .bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
}
.team-section .bento-grid-futuristic .bento-card:hover img {
  transform: scale(1.08);
}
.team-section .bento-grid-futuristic .bento-card:hover .card-content h4 {
  transform: translateY(0);
}
.team-section .bento-grid-futuristic .bento-card:hover .card-content span {
  opacity: 0.8;
  transform: translateY(0);
}
.team-section .bento-grid-futuristic .bento-card.span-2-col {
  grid-column: span 2;
}
.team-section .bento-grid-futuristic .bento-card.span-2-row {
  grid-row: span 2;
}
.team-section .bento-grid-futuristic .bento-card.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.team-section .bento-grid-futuristic .bento-card.info-card i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.team-section .bento-grid-futuristic .bento-card.info-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}
.team-section .bento-grid-futuristic .bento-card.info-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
.team-section .bento-grid-futuristic .bento-card.info-card:hover i {
  transform: scale(1.1) rotate(5deg);
}
.team-section .bento-grid-futuristic .bento-card.info-card.brand-bg {
  background: linear-gradient(135deg, #ff5e57, #ff4757);
  border: none;
}
.team-section .bento-grid-futuristic .bento-card.info-card.brand-bg h4, .team-section .bento-grid-futuristic .bento-card.info-card.brand-bg p, .team-section .bento-grid-futuristic .bento-card.info-card.brand-bg i {
  color: #fff !important;
}
.team-section .bento-grid-futuristic .bento-card.info-card.brand-bg p {
  opacity: 0.9;
}
.team-section .bento-grid-futuristic .bento-card.info-card.tech-bg {
  background: #f1f2f6;
}
.team-section .bento-grid-futuristic .bento-card.info-card.tech-bg i {
  color: #2f3542;
}

.register-body {
  margin: 0;
  padding: 0;
  background-color: #0f0f13;
  overflow-x: hidden;
}

.register-split-layout {
  display: flex;
  min-height: 100vh;
  width: 100vw;
}

.register-form-side {
  width: 50%;
  background-color: #0f0f13;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 10;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
}
.register-form-side .form-container {
  width: 100%;
  max-width: 480px;
}
.register-form-side .form-header {
  margin-bottom: 1.5rem;
}
.register-form-side .form-header .back-link {
  color: #a4b0be;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.register-form-side .form-header .back-link:hover {
  color: #fff;
}
.register-form-side .form-header h2 {
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 1.6rem;
  margin-top: 1rem !important;
  margin-bottom: 0.2rem;
}
.register-form-side .form-header p {
  color: #636e72;
  font-size: 0.85rem;
  margin-bottom: 0;
}
.register-form-side .honeypot-field {
  display: none !important;
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.register-form-side .form-group {
  margin-bottom: 1rem;
}
.register-form-side .form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #a4b0be;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.register-form-side .form-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.register-form-side .form-group .input-wrapper .icon-input {
  position: absolute;
  left: 15px;
  color: #636e72;
  font-size: 1rem;
}
.register-form-side .form-group .input-wrapper .spinner-border {
  position: absolute;
  right: 15px;
  width: 1rem;
  height: 1rem;
}
.register-form-side .form-group .input-wrapper .btn-toggle-password {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: #636e72;
  cursor: pointer;
  transition: color 0.3s;
}
.register-form-side .form-group .input-wrapper .btn-toggle-password:hover {
  color: #ff4b42;
}
.register-form-side .form-group .form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.register-form-side .form-group .form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: #ff4b42;
  box-shadow: 0 0 15px rgba(255, 75, 66, 0.2);
  outline: none;
}
.register-form-side .form-group .form-control::-moz-placeholder {
  color: #4b5358;
}
.register-form-side .form-group .form-control::placeholder {
  color: #4b5358;
}
.register-form-side .form-group .form-control.readonly-input {
  background: rgba(0, 0, 0, 0.4);
  border-style: dashed;
  color: #a4b0be;
  cursor: not-allowed;
  padding-left: 1rem;
}
.register-form-side .form-group .form-text {
  font-size: 0.75rem;
}
.register-form-side .btn-submit-register {
  background: #ff4b42;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 10px;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.register-form-side .btn-submit-register:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 75, 66, 0.3);
}
.register-form-side .btn-submit-register:disabled {
  background: #1f2326;
  color: #4b5358;
  cursor: not-allowed;
}
.register-form-side .login-link {
  color: #636e72;
  font-size: 0.85rem;
  margin-top: 1.5rem !important;
  margin-bottom: 0;
}
.register-form-side .login-link a {
  color: #ff4b42;
  font-weight: 700;
  text-decoration: none;
}
.register-form-side .login-link a:hover {
  text-decoration: underline;
}

.form-control.is-valid {
  border-color: #00e676 !important;
  background-image: none !important; /* Remove o ícone padrão do bootstrap se desejar */
}

.form-control.is-invalid {
  border-color: #ff4b42 !important;
  background-image: none !important;
}

#password-checklist {
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.check-item {
  font-size: 0.75rem;
  color: #636e72;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.check-item i {
  font-size: 0.8rem;
}

/* Quando a regra for cumprida */
.check-item.valid {
  color: #00e676;
}

.check-item.valid i {
  color: #00e676;
}

.form-text {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  min-height: 1rem;
}

/* Spinner dentro do input */
.input-wrapper {
  position: relative;
}

#cnpj-spinner {
  position: absolute;
  right: 15px;
  top: calc(50% - 8px);
  z-index: 5;
}

.register-brand-side {
  width: 50%;
  background-color: #0f0f13;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-brand-side .tech-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  box-shadow: inset 0 0 150px 50px #0f0f13;
}
.register-brand-side .energy-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.register-brand-side .blob-1 {
  width: 250px;
  height: 250px;
  top: -60px;
  left: -60px;
  background: radial-gradient(circle at 30% 30%, #ffb3af 0%, #ff4b42 40%, #7a110a 100%);
  box-shadow: 0 0 60px 15px rgba(255, 75, 66, 0.25);
  animation: floatCorner_1 10s infinite ease-in-out alternate;
}
.register-brand-side .blob-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -40px;
  background: radial-gradient(circle at 30% 30%, #a5f5cc 0%, #00e676 40%, #006b37 100%);
  box-shadow: 0 0 50px 15px rgba(0, 230, 118, 0.2);
  animation: floatCorner_2 12s infinite ease-in-out alternate;
}
.register-brand-side .blob-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: -60px;
  background: radial-gradient(circle at 30% 30%, #d5b8ff 0%, #8e2de2 40%, #3a0088 100%);
  box-shadow: 0 0 50px 15px rgba(142, 45, 226, 0.2);
  animation: floatCorner_3 14s infinite ease-in-out alternate;
}
@keyframes floatCorner_1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 30px) scale(1.05);
  }
  100% {
    transform: translate(10px, 50px) scale(0.95);
  }
}
@keyframes floatCorner_2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -20px) scale(1.1);
  }
  100% {
    transform: translate(-10px, -40px) scale(0.9);
  }
}
@keyframes floatCorner_3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(0.9);
  }
  100% {
    transform: translate(15px, -40px) scale(1.1);
  }
}
.register-brand-side .brand-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  max-width: 500px;
  background: transparent;
}
.register-brand-side .brand-content .brand-logo {
  font-size: 3.5rem !important;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.register-brand-side .brand-content .brand-logo span {
  color: #ff4b42 !important;
  text-shadow: 0 0 25px rgba(255, 75, 66, 0.6);
}
.register-brand-side .brand-content .brand-tagline {
  color: #a4b0be;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 1rem;
}
.register-brand-side .brand-content .feature-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem !important;
}
.register-brand-side .brand-content .feature-badges .badge {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e1e6e9;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: transform 0.3s, border-color 0.3s;
}
.register-brand-side .brand-content .feature-badges .badge i {
  color: #00e676;
  margin-right: 6px;
  font-size: 1rem;
}
.register-brand-side .brand-content .feature-badges .badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
  .register-split-layout {
    flex-direction: column;
  }
  .register-brand-side {
    display: none;
  }
  .register-form-side {
    width: 100%;
    padding: 2rem 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */