 :root {
     --primary-gold: #F3C462;
     --dark-base: #333333;
     --dark-deep: #1a1a1a;
     --text-light: #f8f9fa;
     --nr-gold: #F3C462;
     --nr-dark-bg: #2e2e2e;
     --atlanta-cyan: #18A696;
     --aquiles-blue: #00A0C4;
     --hermes-red: #A50E15;

     /* Themeable variables */
     --bg-main: #333333;
     --bg-secondary: #262626;
     --bg-deep: #1a1a1a;
     --text-main: #f8f9fa;
     --text-secondary: rgba(255, 255, 255, 0.7);
     --navbar-bg: rgba(51, 51, 51, 0.95);
     --border-color: rgba(255, 255, 255, 0.1);
     --glass-bg: rgba(255, 255, 255, 0.03);
     --glass-border: rgba(255, 255, 255, 0.05);

     /* Specific Section Gradients */
     --assistant-grad-1: #5a4e32;
     --assistant-grad-2: #3a362d;
     --assistant-grad-3: #262626;
     --assistant-grad-4: #1c1c1c;

     --comfort-grad-1: #2b2b2b;
     --comfort-grad-2: #b8b2a5;
     --comfort-grad-3: #CCC7BD;
 }

 body.light-theme {
     --bg-main: #ffffff;
     --bg-secondary: #f4f4f4;
     --bg-deep: #eeeeee;
     --text-main: #333333;
     --text-secondary: #666666;
     --navbar-bg: rgba(255, 255, 255, 0.95);
     --nr-dark-bg: #f8f9fa;
     --border-color: rgba(0, 0, 0, 0.1);
     --glass-bg: rgba(0, 0, 0, 0.03);
     --glass-border: rgba(0, 0, 0, 0.05);

     --assistant-grad-1: #fff9e6;
     --assistant-grad-2: #fffcf2;
     --assistant-grad-3: #ffffff;
     --assistant-grad-4: #fafafa;

     --comfort-grad-1: #ffffff;
     --comfort-grad-2: #f2efe9;
     --comfort-grad-3: #e8e4db;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     background-color: var(--bg-main);
     color: var(--text-main);
     overflow-x: hidden;
     transition: background-color 0.3s ease, color 0.3s ease;
 }

 p {
     font-size: 1.2rem !important;
 }

 .amarelo {
     color: var(--primary-gold) !important;
 }

 .preto {
     color: var(--dark-base) !important;
 }

 .aquiles {
     color: var(--aquiles-blue) !important;
 }

 .atlanta {
     color: var(--atlanta-cyan) !important;
 }

 .hermes {
     color: var(--hermes-red) !important;
 }

 /* --- Custom Scrollbar --- */
 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background: var(--dark-base);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--primary-gold);
     border-radius: 5px;
 }

 /* --- Typography --- */
 h1,
 h2,
 h3,
 h4,
 h5 {
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .text-gold {
     color: var(--primary-gold) !important;
 }

 .display-huge {
     font-size: 3.5rem;
     line-height: 1.1;
 }

 @media (min-width: 992px) {
     .display-huge {
         font-size: 5rem;
     }
 }

 /* --- Buttons --- */
 .btn-custom {
     padding: 15px 40px;
     border-radius: 50px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
 }

 .btn-primary-nr {
     background-color: var(--text-light);
     color: var(--dark-base);
     border: 2px solid var(--text-light);
 }

 .btn-primary-nr:hover {
     background-color: var(--primary-gold);
     border-color: var(--primary-gold);
     color: var(--dark-base);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(243, 196, 98, 0.3);
 }

 .btn-outline-nr {
     background-color: transparent;
     color: var(--text-light);
     border: 2px solid var(--text-light);
 }

 .btn-outline-nr:hover {
     background-color: rgba(255, 255, 255, 0.1);
     color: var(--primary-gold);
     border-color: var(--primary-gold);
 }

 /* --- Navbar --- */
 .navbar {
     padding: 20px 0;
     transition: all 0.4s ease;
     background: transparent;
 }

 .navbar.scrolled {
     background: var(--navbar-bg);
     backdrop-filter: blur(10px);
     padding: 10px 0;
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
 }

 .navbar-brand {
     font-weight: 900;
     font-size: 1.5rem;
     color: var(--text-light) !important;
 }

 .nav-link {
     color: rgba(255, 255, 255, 0.8) !important;
     font-weight: 400;
     margin-left: 20px;
     position: relative;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--primary-gold);
     transition: width 0.3s;
 }

 .nav-link:hover::after {
     width: 100%;
 }


 /* --- HERO SECTION --- */
 .hero-section {
     position: relative;
     height: 100vh;
     display: flex;
     align-items: center;
     overflow: hidden;
     /* Garantir que o conteúdo fique sobre o vídeo */
     z-index: 1;
 }

 /* Vídeo de Fundo */
 #scroll-video {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100vw;
     height: 100vh;
     object-fit: cover;
     transform: translate(-50%, -50%);
     z-index: -1;
     /* Filtro escuro para legibilidade do texto */
     filter: brightness(0.4);
 }

 /* --- Tipografia e Estilos --- */
 .display-huge {
     font-size: 3.5rem;
     line-height: 1.1;
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 @media (min-width: 992px) {
     .display-huge {
         font-size: 5rem;
     }
 }

 .text-gold {
     color: var(--primary-gold) !important;
 }

 /* --- Botões --- */
 .btn-custom {
     padding: 15px 40px;
     border-radius: 50px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .btn-primary-nr {
     background-color: var(--text-light);
     color: var(--dark-base);
     border: 2px solid var(--text-light);
 }

 .btn-primary-nr:hover {
     background-color: var(--primary-gold);
     border-color: var(--primary-gold);
     color: var(--dark-base);
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(243, 196, 98, 0.3);
 }

 .btn-outline-nr {
     background-color: transparent;
     color: var(--text-light);
     border: 2px solid var(--text-light);
 }

 .btn-outline-nr:hover {
     background-color: rgba(255, 255, 255, 0.1);
     color: var(--primary-gold);
     border-color: var(--primary-gold);
 }

 /* Seta animada */
 .animate__animated.animate__bounce {
     animation: bounce 2s infinite;
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-10px);
     }

     60% {
         transform: translateY(-5px);
     }
 }

 /* --- Feature Cards --- */
 .feature-box {
     background: var(--dark-deep);
     padding: 40px;
     border-radius: 20px;
     border: 1px solid var(--glass-border);
     transition: transform 0.3s ease;
     height: 100%;
 }

 .feature-box:hover {
     transform: translateY(-10px);
     border-color: var(--primary-gold);
 }

 /* --- Generic Card Hover Effect --- */
 .benefit-card,
 .subscription-card,
 .persona-card {
     transition: all 0.3s ease;
     border: 1px solid transparent;
     /* Invisible border by default */
     border-radius: 20px;
 }

 /* Ensure benefit-card keeps its separator but can also have a hover border */
 .benefit-card {
     border-right: 1px solid rgba(255, 255, 255, 0.05);
     padding-bottom: 24px;
 }

 .benefit-card:hover,
 .subscription-card:hover,
 .persona-card:hover {
     border-color: #F3C462 !important;
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     background-color: rgba(255, 255, 255, 0.02);
     /* Slight highlight */
 }

 .icon-circle {
     width: 70px;
     height: 70px;
     background: rgba(243, 196, 98, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     color: var(--primary-gold);
     font-size: 1.8rem;
 }

 /* --- Product Show --- */
 .product-section {
     background: var(--dark-deep);
     padding: 100px 0;
     position: relative;
     overflow: hidden;
 }

 .floating-watch {
     animation: float 6s ease-in-out infinite;
     max-width: 100%;
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 /* --- Stats/Specs --- */
 .stat-item {
     text-align: center;
     padding: 30px;
     border-right: 1px solid rgba(255, 255, 255, 0.1);
 }

 .stat-item:last-child {
     border-right: none;
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 900;
     color: var(--primary-gold);
     display: block;
 }

 /* --- Gallery --- */
 .gallery-img {
     height: 400px;
     width: 100%;
     object-fit: cover;
     transition: opacity 0.3s;
     filter: grayscale(30%);
 }

 .gallery-img:hover {
     filter: grayscale(0%);
     opacity: 0.9;
 }

 /* --- Footer --- */
 footer {
     background-color: var(--bg-deep);
     padding: 80px 0 30px;
     border-top: 1px solid var(--glass-border);
 }

 .social-link {
     color: var(--text-main);
     margin-right: 20px;
     font-size: 1.5rem;
     transition: color 0.3s;
 }

 .social-link:hover {
     color: var(--primary-gold);
 }

 /* --- A SESSÃO EXATA --- */
 .section-assistant {
     position: relative;
     min-height: 100vh;
     padding: 60px 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
     overflow: hidden;

     /* O Gradiente "Spotlight" exato da referência */
     background: radial-gradient(circle at 50% 20%,
             var(--assistant-grad-1) 0%,
             var(--assistant-grad-2) 30%,
             var(--assistant-grad-3) 60%,
             var(--assistant-grad-4) 100%);
     color: var(--text-main);
     text-align: center;
 }

 /* Logo no topo */
 .assistant-logo {
     width: 120px;
     /* Ajuste conforme necessário */
     margin-bottom: 20px;
     display: block;
     margin-left: auto;
     margin-right: auto;
 }

 /* Tipografia */
 .assistant-title {
     font-size: 3.5rem;
     font-weight: 600;
     /* Medium/Semi-Bold */
     line-height: 1.1;
     margin-bottom: 30px;
     letter-spacing: -1px;
 }

 .assistant-desc {
     font-size: 0.95rem;
     max-width: 600px;
     margin: 0 auto 40px auto;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
     font-weight: 300;
 }

 /* Botão Pílula */
 .btn-pill-outline {
     border: 1px solid rgba(255, 255, 255, 0.6);
     border-radius: 50px;
     padding: 10px 35px;
     color: var(--text-main);
     background: transparent;
     font-size: 1.1rem;
     font-weight: 500;
     transition: all 0.3s;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .btn-pill-outline:hover {
     background: #fff;
     color: #000;
     border-color: var(--border-color);
 }

 /* Imagem dos Relógios */
 .watches-showcase {
     width: 100%;
     max-width: 1000px;
     margin: 50px auto 60px auto;
     display: block;
     /* Filtro sutil para integrar a imagem recortada ao fundo escuro */
     filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
 }

 /* Grid de Features (Ícones na parte inferior) */
 .features-grid {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     background: rgba(0, 0, 0, 0.2);
     padding: 40px 0;
     margin-top: auto;
     /* Empurra para baixo se houver espaço sobrando */
     border-radius: 20px;
     margin-left: 20px;
     margin-right: 20px;
 }

 .feature-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 0 15px;
 }

 .feature-icon {
     color: var(--gold-accent);
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 .feature-title {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 5px;
     color: var(--text-main);
 }

 .feature-subtitle {
     font-size: 0.9rem;
     color: rgba(255, 255, 255, 0.5);
     max-width: 200px;
 }

 /* Responsividade */
 @media (max-width: 768px) {
     .assistant-title {
         font-size: 2.5rem;
     }

     .features-grid .col-6 {
         margin-bottom: 30px;
     }
 }

 .section-lifestyle {
     padding: 80px 0;
     background-color: var(--bg-main);
     /* Cor base escura da imagem */
 }

 /* Tipografia Geral */
 .section-title {
     color: var(--nr-gold);
     font-weight: 700;
     margin-bottom: 20px;
 }

 .section-lead {
     color: var(--text-main);
     font-weight: 400;
     max-width: 800px;
     margin: 0 auto 60px;
     line-height: 1.6;
 }

 .highlight-text {
     color: var(--nr-gold);
     font-weight: 600;
 }

 /* Card 'Sem Assinatura' */
 .subscription-card {
     background-color: var(--bg-secondary);
     /* Um tom mais escuro que o fundo */
     border-radius: 20px;
     padding: 60px 40px;
     text-align: center;
     margin-bottom: 60px;
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 .sub-icon {
     font-size: 3rem;
     color: var(--nr-gold);
     margin-bottom: 20px;
 }

 .sub-title {
     color: var(--nr-gold);
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .sub-text {
     color: var(--nr-text-gray);
     font-size: 0.95rem;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 /* Grid de Personas */
 .persona-card {
     margin-bottom: 30px;
 }

 .persona-img-wrapper {
     border-radius: 20px;
     overflow: hidden;
     margin-bottom: 25px;
     /* Mantém a proporção vertical das fotos */
     aspect-ratio: 3/4;
 }

 .persona-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .persona-card:hover .persona-img {
     transform: scale(1.05);
 }

 .persona-title {
     color: var(--nr-gold);
     font-size: 1.4rem;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .persona-desc {
     color: var(--nr-text-gray);
     font-size: 0.9rem;
     line-height: 1.6;
 }

 /* Responsividade */
 @media (max-width: 768px) {
     .section-lifestyle {
         padding: 80px 0;
         text-align: center;
     }

     .subscription-card {
         padding: 30px 20px;
         text-align: center;
     }

     .persona-desc {
         text-align: center !important;
     }

     .sub-title {
         font-size: 2rem;
     }
 }


 .img-multiply {
     display: inline-block;
     position: relative;
     overflow: hidden;
 }

 /* imagem normal */
 .img-multiply img {
     display: block;
     width: 100%;
     height: auto;
 }

 /* pseudo overlay com a cor que você quiser */
 .img-multiply::after {
     content: "";
     position: absolute;
     inset: 0;
     /* top:0; right:0; bottom:0; left:0; */
     background: rgba(40, 90, 200, 0.8);
     /* altere a cor/alpha */
     mix-blend-mode: multiply;
     pointer-events: none;
 }

 /* --- SESSÃO MONITORAMENTO --- */
 .section-monitoring {
     min-height: 100vh;
     display: flex;
     align-items: stretch;
     /* Permite que os elementos estiquem */
     position: relative;
     background: linear-gradient(90deg, #1a1a1a 0%, #2b2b2b 50%, #333333 100%);
     overflow: hidden;
     padding: 0;
 }

 /* Coluna da Imagem (Esquerda) */
 .monitoring-img-col {
     position: relative;
     z-index: 1;
     padding: 0;
     /* Centralizando a imagem */
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .monitoring-img {
     width: 70%;
     /* 70% da largura da coluna */
     height: auto;
     /* Altura automática para manter proporção */
     max-height: 100vh;
     /* Limite de altura para não estourar */
     object-fit: cover;
     display: block;
     border-radius: 20px;
     /* Borda suave já que a imagem agora flutua */
     /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); */
     /* Sombra para destaque */

     /* Máscara ajustada ou removida dependendo da preferência. 
               Como está centralizada, removi a máscara lateral para ficar um quadro limpo, 
               mas mantive o filtro para blending de cor */
     filter: contrast(1.1) brightness(0.9);
 }

 /* Coluna do Texto (Direita) */
 .monitoring-text-col {
     z-index: 2;
     padding-left: 60px;
     padding-right: 40px;
     align-self: center;
     /* Centraliza o texto verticalmente */
 }

 .pre-title {
     color: var(--text-main);
     font-size: 1.2rem;
     font-weight: 500;
     margin-bottom: 10px;
     display: block;
 }

 .main-title {
     color: var(--nr-gold);
     font-size: 4rem;
     font-weight: 600;
     line-height: 1.1;
     margin-bottom: 30px;
     letter-spacing: -1px;
 }

 .monitoring-desc {
     color: #dcdcdc;
     font-size: 1rem;
     line-height: 1.6;
     max-width: 500px;
     font-weight: 400;
 }

 /* Responsividade */
 @media (max-width: 991px) {
     .section-monitoring {
         flex-direction: column;
         text-align: center;
         height: auto;
         min-height: auto;
         padding-bottom: 50px;
     }

     .monitoring-text-col {
         padding: 60px 20px 40px;
         order: 1;
         /* Texto em cima no mobile */
     }

     .monitoring-img-col {
         order: 2;
         width: 100%;
         height: auto;
         padding-bottom: 40px;
     }

     .monitoring-img {
         width: 70%;
         max-height: 50vh;
         /* Sem máscara no mobile também */
     }

     .main-title {
         font-size: 2.5rem;
     }
 }

 /* --- SESSÃO SONO E RECUPERAÇÃO --- */
 .section-sleep {
     padding: 100px 0;
     background-color: var(--bg-main);
     /* Cor de fundo base idêntica à referência */
 }

 /* Cabeçalho da Sessão */
 .sleep-header {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 80px;
 }

 .sleep-title {
     color: var(--nr-gold);
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 .sleep-subtitle {
     color: var(--text-main);
     font-size: 1rem;
     line-height: 1.6;
     font-weight: 300;
 }

 /* Cards/Colunas */
 .benefit-card {
     height: 100%;
     /* Borda sutil para separar as colunas se desejar, ou apenas espaçamento */
     border-right: 1px solid rgba(255, 255, 255, 0.05);
     padding: 0 30px;
 }

 /* Remover borda da última coluna */
 .col-lg-4:last-child .benefit-card {
     border-right: none;
 }

 .card-title {
     color: var(--nr-gold);
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .card-desc {
     color: var(--nr-text-gray);
     font-size: 0.95rem;
     line-height: 1.6;
     font-weight: 300;
     margin-bottom: 25px;
     min-height: 60px;
 }

 .btn-outline-gold {
     border: 2px solid var(--nr-gold);
     color: var(--nr-gold);
     font-weight: 600;
     border-radius: 50px;
     padding: 12px 20px;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-outline-gold:hover {
     background-color: var(--nr-gold);
     color: #000;
     box-shadow: 0 5px 15px rgba(243, 196, 98, 0.3);
 }

 /* Imagens */
 .card-img-container {
     width: 100%;
     height: 300px;
     /* Altura fixa para manter alinhamento */
     overflow: hidden;
     border-radius: 15px;
     position: relative;
     background: var(--bg-secondary);
     /* Placeholder escuro caso a imagem demore */
 }

 .card-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .card-img-container:hover .card-img {
     transform: scale(1.05);
 }

 /* Responsividade */
 @media (max-width: 991px) {
     .sleep-title {
         font-size: 2.2rem;
     }

     .benefit-card {
         border-right: none;
         border-bottom: 1px solid rgba(255, 255, 255, 0.05);
         padding: 0 0 50px 0;
         margin-bottom: 50px;
     }

     .col-lg-4:last-child .benefit-card {
         border-bottom: none;
         margin-bottom: 0;
         padding-bottom: 0;
     }
 }

 /* --- SESSÃO SONO E RECUPERAÇÃO --- */
 .section-sleep {
     padding: 100px 0;
     background-color: var(--bg-main);
     /* Cor de fundo base idêntica à referência */
 }

 /* Cabeçalho da Sessão */
 .sleep-header {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 80px;
 }

 .sleep-title {
     color: var(--nr-gold);
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 20px;
     letter-spacing: -1px;
 }

 .sleep-subtitle {
     color: var(--text-main);
     font-size: 1rem;
     line-height: 1.6;
     font-weight: 300;
 }

 /* Cards/Colunas */
 .benefit-card {
     height: 100%;
     /* Borda sutil para separar as colunas se desejar, ou apenas espaçamento */
     border-right: 1px solid rgba(255, 255, 255, 0.05);
     padding: 0 30px;
     display: flex;
     flex-direction: column;
 }

 /* Remover borda da última coluna */
 .col-lg-4:last-child .benefit-card {
     border-right: none;
 }

 .card-title {
     color: var(--nr-gold);
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .card-desc {
     color: var(--nr-text-gray);
     font-size: 0.9rem;
     line-height: 1.6;
     font-weight: 300;
     margin-bottom: 40px;
     flex-grow: 1;
     /* Garante que o texto ocupe o espaço e alinhe as imagens embaixo */
 }

 /* Imagens */
 .card-img-container {
     width: 100%;
     height: 300px;
     /* Altura fixa para manter alinhamento */
     overflow: hidden;
     border-radius: 15px;
     position: relative;
     background: var(--bg-secondary);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .card-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* Preenchimento estilo crop */
     transition: transform 0.5s ease;
 }

 .card-img-container:hover .card-img {
     transform: scale(1.05);
 }

 /* Responsividade */
 @media (max-width: 991px) {
     .sleep-title {
         font-size: 2.2rem;
     }

     .benefit-card {
         border-right: none;
         border-bottom: 1px solid rgba(255, 255, 255, 0.05);
         padding: 0 0 50px 0;
         margin-bottom: 50px;
     }

     .col-lg-4:last-child .benefit-card {
         border-bottom: none;
         margin-bottom: 0;
         padding-bottom: 0;
     }
 }


 /* --- SESSÃO CONFORTO --- */
 .section-comfort {
     position: relative;
     padding: 80px 0 60px;
     /* Gradiente idêntico à imagem: Escuro em cima, Claro em baixo */
     background: linear-gradient(to bottom, var(--comfort-grad-1) 0%, var(--comfort-grad-1) 30%, var(--comfort-grad-2) 80%, var(--comfort-grad-3) 100%);
     color: var(--text-main);
     text-align: center;
 }

 /* Tipografia */
 .comfort-pre-title {
     font-size: 1.1rem;
     font-weight: 500;
     color: var(--text-main);
     margin-bottom: 15px;
     display: block;
 }

 .comfort-title {
     color: var(--nr-gold);
     font-size: 3rem;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 30px;
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
 }

 .comfort-desc {
     font-size: 1.25rem;
     line-height: 1.6;
     color: #e0e0e0;
     max-width: 700px;
     margin: 0 auto 60px;
     font-weight: 400;
 }

 /* Imagem Central */
 .comfort-main-img-container {
     margin-bottom: 60px;
     padding: 0 20px;
 }

 .comfort-main-img {
     max-width: 100%;
     height: auto;
     max-height: 500px;
     border-radius: 20px;
     /* Arredondamento suave se necessário */
     /* A imagem do relógio já tem fundo? Se for PNG transparente é ideal.
               Se for JPG como na referência, ela se mistura com o fundo bege */
     mix-blend-mode: multiply;
     /* Tenta misturar se o fundo da img não for transparente */
 }

 /* Se a imagem enviada (relogio-vert.jpg) tiver fundo sólido, removemos o mix-blend-mode */
 .comfort-main-img.solid {
     mix-blend-mode: normal;
     border-radius: 30px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
 }

 /* Features (Rodapé) */
 .features-row {
     color: var(--nr-text-dark);
     /* Texto escuro na parte clara do fundo */
     text-align: left;
     max-width: 1100px;
     margin: 0 auto;
 }

 .feature-box {
     padding: 0 20px;
     margin-bottom: 30px;
 }

 .feature-header {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     font-weight: 700;
     font-size: 1.4rem;
     color: #1a1a1a;
 }

 .feature-icon-img {
     width: 24px;
     height: 24px;
     margin-right: 10px;
     object-fit: contain;
 }

 .feature-text {
     font-size: 1.25rem;
     line-height: 1.5;
     color: #444;
 }

 /* Responsividade */
 @media (max-width: 768px) {
     .comfort-title {
         font-size: 2rem;
     }

     .features-row {
         text-align: center;
     }

     .feature-header {
         justify-content: center;
     }
 }

 /* --- SESSÃO FÁCIL DE USAR --- */
 .section-easy {
     padding: 200px;
     /* Padding top grande, zero embaixo para a imagem tocar ou flutuar */
     /* Gradiente vertical suave idêntico à referência */
     background: linear-gradient(358.56deg, #F5F5F5 50.08%, #CCC7BD 59.51%);
     text-align: center;
     overflow: hidden;
     /* Para conter a imagem se ela for cortada na base */
 }

 /* Tipografia */
 .easy-pre-title {
     color: #4a4a4a;
     font-size: 1.1rem;
     font-weight: 500;
     margin-bottom: 20px;
     display: block;
     letter-spacing: 0.5px;
 }

 .easy-title {
     color: var(--nr-text-dark);
     font-size: 3.5rem;
     font-weight: 800;
     /* Peso extra bold */
     line-height: 1.1;
     margin-bottom: 30px;
     letter-spacing: -1px;
 }

 .easy-desc {
     color: #555555;
     font-size: 1.25rem;
     line-height: 1.6;
     max-width: 600px;
     margin: 0 auto 60px;
     font-weight: 400;
 }

 /* Imagem do Relógio */
 .easy-img-container {
     position: relative;
     margin: 0 auto;
     text-align: center;
 }

 .easy-img {
     width: 100%;
     height: auto;
     display: block;
     /* Filtro de sombra para dar a profundidade de "pousado" no chão */
     filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.3));

     /* Animação suave de entrada (opcional) */
     animation: float-in 1.5s ease-out;
 }

 @keyframes float-in {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsividade */
 @media (max-width: 768px) {
     .easy-title {
         font-size: 2.5rem;
     }

     .section-easy {
         padding: 60px 20px;
     }

     .easy-img {
         width: 90% !important;
         max-width: 300px;
         margin: 0 auto;
     }
 }

 /* --- SESSÃO ATLANTA --- */
 .section-atlanta {
     padding: 80px 0;
     background-color: var(--nr-dark-bg);
     overflow: hidden;
     /* Para brilhos ou efeitos */
 }

 /* Topo Centralizado */
 .atlanta-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 60px;
 }

 .top-label {
     color: rgba(255, 255, 255, 0.6);
     font-size: 1rem;
     margin-bottom: 10px;
     display: block;
 }

 .atlanta-logo-title {
     color: var(--atlanta-cyan);
     text-shadow: 0 0 10px #000, 0 0 20px #fff;
     font-size: 3.5rem;
     font-weight: 800;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 25px;
     letter-spacing: -1px;
 }

 .atlanta-logo-img {
     width: 50px;
     height: auto;
 }

 .atlanta-intro-text {
     color: #e0e0e0;
     font-size: 0.95rem;
     line-height: 1.6;
     font-weight: 400;
 }

 /* Layout Dividido (Esfera x Texto) */
 .atlanta-content-row {
     align-items: top;
     margin-top: 40px;
 }

 /* Coluna da Esfera (Esquerda) */
 .sphere-container {
     display: flex;
     justify-content: flex-end;
     /* Alinha à direita */
     align-items: flex-start;
     /* Alinha no topo */
     height: 100%;
     /* Garante área para alinhar */
 }

 .sphere-container img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 .atlanta-sphere {
     width: 100%;
     max-width: 450px;
     height: auto;
     /* Efeito de brilho "Glow" atrás da esfera usando drop-shadow */
     filter: drop-shadow(0 0 40px rgba(38, 198, 218, 0.2));
     animation: pulse-glow 3s infinite alternate;
 }

 @keyframes pulse-glow {
     from {
         filter: drop-shadow(0 0 30px rgba(38, 198, 218, 0.15));
     }

     to {
         filter: drop-shadow(0 0 50px rgba(38, 198, 218, 0.3));
     }
 }

 /* Coluna de Informações (Direita) */
 .info-col {
     padding-left: 40px;
 }

 .info-subtitle {
     color: var(--atlanta-cyan);
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 10px;
     text-transform: uppercase;
 }

 .info-title {
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .info-desc {
     color: #b0b0b0;
     font-size: 0.9rem;
     line-height: 1.6;
     margin-bottom: 40px;
     max-width: 500px;
 }

 /* Stats Grid (3 colunas pequenas) */
 .stats-grid {
     display: flex;
     gap: 30px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .stat-item {
     flex: 1;
     min-width: 120px;
     height: auto;
     padding: 0;
 }

 .stat-val {
     font-weight: 700;
     color: var(--text-main);
     display: block;
     margin-bottom: 5px;
     font-size: 0.9rem;
 }

 .stat-label {
     font-size: 0.8rem;
     color: #888;
     line-height: 1.3;
 }

 /* Privacy Lock Block */
 .privacy-block {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-top: 25px;
     margin-bottom: 40px;
     background: var(--glass-bg);
     padding: 20px;
     border-radius: 12px;
     max-width: 450px;
     width: 100%;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .privacy-text {
     flex: 1;
     line-height: 1.4;
 }

 .lock-icon {
     color: var(--atlanta-cyan);
     font-size: 1.5rem;
 }

 .privacy-text strong {
     display: block;
     color: var(--text-main);
     font-size: 0.9rem;
 }

 .privacy-text span {
     color: #888;
     font-size: 0.8rem;
 }

 /* Botão Dourado */
 .btn-atlanta {
     background-color: var(--nr-gold);
     color: #000;
     font-weight: 700;
     padding: 12px 35px;
     border-radius: 50px;
     text-decoration: none;
     transition: transform 0.3s, box-shadow 0.3s;
     display: inline-block;
     font-size: 0.9rem;
 }

 .btn-atlanta:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(243, 196, 98, 0.3);
     color: var(--text-main);
 }

 /* Responsividade */
 @media (max-width: 991px) {
     .info-col {
         padding-left: 15px;
         margin-top: 40px;
         text-align: center;
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .info-desc {
         margin-left: auto;
         margin-right: auto;
     }

     .stats-grid {
         justify-content: center;
     }

     .privacy-block {
         margin-left: auto;
         margin-right: auto;
         align-items: flex-start;
     }

     .atlanta-logo-title {
         font-size: 2.5rem;
     }

     .stats-grid {
         gap: 20px;
     }

     /* Ajuste para centralizar e aumentar as imagens holográficas no mobile */
     .sphere-container {
         justify-content: center;
         margin-bottom: 30px;
     }
 }

 .assistant-sphere-img {
     width: 30vw;
 }

 @media (max-width: 991px) {
     .assistant-sphere-img {
         width: 80vw;
         max-width: 350px;
     }
 }


 /* --- SESSÃO aquiles --- */
 .section-aquiles {
     padding: 80px 0;
     background-color: var(--nr-dark-bg);
     overflow: hidden;
     /* Para brilhos ou efeitos */
 }

 /* Topo Centralizado */
 .aquiles-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 60px;
 }

 .top-label {
     color: rgba(255, 255, 255, 0.6);
     font-size: 1rem;
     margin-bottom: 10px;
     display: block;
 }

 .aquiles-logo-title {
     color: var(--aquiles-blue);
     text-shadow: 0 0 10px #000, 0 0 20px #fff;
     font-size: 3.5rem;
     font-weight: 800;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 25px;
     letter-spacing: -1px;
 }

 .aquiles-logo-img {
     width: 50px;
     height: auto;
 }

 .aquiles-intro-text {
     color: #e0e0e0;
     font-size: 0.95rem;
     line-height: 1.6;
     font-weight: 400;
 }

 /* Layout Dividido (Esfera x Texto) */
 .aquiles-content-row {
     align-items: top;
     margin-top: 40px;
 }

 /* Coluna da Esfera (Esquerda) */
 .sphere-container {
     display: flex;
     justify-content: flex-end;
     /* Alinha à direita */
     align-items: flex-start;
     /* Alinha no topo */
     height: 100%;
     /* Garante área para alinhar */
 }

 .sphere-container img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 .aquiles-sphere {
     width: 100%;
     max-width: 450px;
     height: auto;
     /* Efeito de brilho "Glow" atrás da esfera usando drop-shadow */
     filter: drop-shadow(0 0 40px rgba(38, 198, 218, 0.2));
     animation: pulse-glow 3s infinite alternate;
 }

 @keyframes pulse-glow {
     from {
         filter: drop-shadow(0 0 30px rgba(38, 198, 218, 0.15));
     }

     to {
         filter: drop-shadow(0 0 50px rgba(38, 198, 218, 0.3));
     }
 }

 /* Coluna de Informações (Direita) */
 .info-col {
     padding-left: 40px;
 }

 .info-subtitle {
     color: var(--aquiles-cyan);
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 10px;
     text-transform: uppercase;
 }

 .info-title {
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .info-desc {
     color: #b0b0b0;
     font-size: 0.9rem;
     line-height: 1.6;
     margin-bottom: 40px;
     max-width: 500px;
 }

 /* Stats Grid (3 colunas pequenas) */
 .stats-grid {
     display: flex;
     gap: 30px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .stat-item {
     flex: 1;
     min-width: 120px;
     height: auto;
     padding: 0;
 }

 .stat-val {
     font-weight: 700;
     color: var(--text-main);
     display: block;
     margin-bottom: 5px;
     font-size: 0.9rem;
 }

 .stat-label {
     font-size: 0.8rem;
     color: #888;
     line-height: 1.3;
 }

 /* Privacy Lock Block */
 .privacy-block {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-top: 25px;
     margin-bottom: 40px;
     background: var(--glass-bg);
     padding: 20px;
     border-radius: 12px;
     max-width: 450px;
     width: 100%;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .privacy-text {
     flex: 1;
     line-height: 1.4;
 }

 .lock-icon {
     color: var(--aquiles-cyan);
     font-size: 1.5rem;
 }

 .privacy-text strong {
     display: block;
     color: var(--text-main);
     font-size: 0.9rem;
 }

 .privacy-text span {
     color: #888;
     font-size: 0.8rem;
 }

 /* Botão Dourado */
 .btn-aquiles {
     background-color: var(--nr-gold);
     color: #000;
     font-weight: 700;
     padding: 12px 35px;
     border-radius: 50px;
     text-decoration: none;
     transition: transform 0.3s, box-shadow 0.3s;
     display: inline-block;
     font-size: 0.9rem;
 }

 .btn-aquiles:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(243, 196, 98, 0.3);
     color: var(--text-main);
 }

 /* Responsividade */
 @media (max-width: 991px) {
     .info-col {
         padding-left: 15px;
         margin-top: 40px;
         text-align: center;
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .info-desc {
         margin-left: auto;
         margin-right: auto;
     }

     .stats-grid {
         justify-content: center;
     }

     .privacy-block {
         margin-left: auto;
         margin-right: auto;
         align-items: flex-start;
     }

     .aquiles-logo-title {
         font-size: 2.5rem;
     }

     .stats-grid {
         gap: 20px;
     }
 }

 /* --- SESSÃO hermes --- */
 .section-hermes {
     padding: 80px 0;
     background-color: var(--nr-dark-bg);
     overflow: hidden;
     /* Para brilhos ou efeitos */
 }

 /* Topo Centralizado */
 .hermes-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 60px;
 }

 .top-label {
     color: rgba(255, 255, 255, 0.6);
     font-size: 1rem;
     margin-bottom: 10px;
     display: block;
 }

 .hermes-logo-title {
     color: var(--hermes-red);
     text-shadow: 0 0 10px #999, 0 0 20px #fff;
     font-size: 3.5rem;
     font-weight: 800;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 25px;
     letter-spacing: -1px;

 }

 .hermes-logo-img {
     width: 50px;
     height: auto;
 }

 .hermes-intro-text {
     color: #e0e0e0;
     font-size: 0.95rem;
     line-height: 1.6;
     font-weight: 400;
 }

 /* Layout Dividido (Esfera x Texto) */
 .hermes-content-row {
     align-items: top;
     margin-top: 40px;
 }

 /* Coluna da Esfera (Esquerda) */
 .sphere-container {
     display: flex;
     justify-content: flex-end;
     /* Alinha à direita */
     align-items: flex-start;
     /* Alinha no topo */
     height: 100%;
     /* Garante área para alinhar */
 }

 .sphere-container img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 .hermes-sphere {
     width: 100%;
     max-width: 450px;
     height: auto;
     /* Efeito de brilho "Glow" atrás da esfera usando drop-shadow */
     filter: drop-shadow(0 0 40px rgba(38, 198, 218, 0.2));
     animation: pulse-glow 3s infinite alternate;
 }

 @keyframes pulse-glow {
     from {
         filter: drop-shadow(0 0 30px rgba(38, 198, 218, 0.15));
     }

     to {
         filter: drop-shadow(0 0 50px rgba(38, 198, 218, 0.3));
     }
 }

 /* Coluna de Informações (Direita) */
 .info-col {
     padding-left: 40px;
 }

 .info-subtitle {
     color: var(--hermes-cyan);
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 10px;
     text-transform: uppercase;
 }

 .info-title {
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .info-desc {
     color: #b0b0b0;
     font-size: 0.9rem;
     line-height: 1.6;
     margin-bottom: 40px;
     max-width: 500px;
 }

 /* Stats Grid (3 colunas pequenas) */
 .stats-grid {
     display: flex;
     gap: 30px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .stat-item {
     flex: 1;
     min-width: 120px;
     height: auto;
     padding: 0;
 }

 .stat-val {
     font-weight: 700;
     color: var(--text-main);
     display: block;
     margin-bottom: 5px;
     font-size: 0.9rem;
 }

 .stat-label {
     font-size: 0.8rem;
     color: #888;
     line-height: 1.3;
 }

 /* Privacy Lock Block */
 .privacy-block {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-top: 25px;
     margin-bottom: 40px;
     background: var(--glass-bg);
     padding: 20px;
     border-radius: 12px;
     max-width: 450px;
     width: 100%;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .privacy-text {
     flex: 1;
     line-height: 1.4;
 }

 .lock-icon {
     color: var(--hermes-cyan);
     font-size: 1.5rem;
 }

 .privacy-text strong {
     display: block;
     color: var(--text-main);
     font-size: 0.9rem;
 }

 .privacy-text span {
     color: #888;
     font-size: 0.8rem;
 }

 /* Botão Dourado */
 .btn-hermes {
     background-color: var(--nr-gold);
     color: #000;
     font-weight: 700;
     padding: 12px 35px;
     border-radius: 50px;
     text-decoration: none;
     transition: transform 0.3s, box-shadow 0.3s;
     display: inline-block;
     font-size: 0.9rem;
 }

 .btn-hermes:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(243, 196, 98, 0.3);
     color: var(--text-main);
 }

 /* Responsividade */
 @media (max-width: 991px) {
     .info-col {
         padding-left: 15px;
         margin-top: 40px;
         text-align: center;
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .info-desc {
         margin-left: auto;
         margin-right: auto;
     }

     .stats-grid {
         justify-content: center;
     }

     .privacy-block {
         margin-left: auto;
         margin-right: auto;
         align-items: flex-start;
     }

     .hermes-logo-title {
         font-size: 2.5rem;
     }

     .stats-grid {
         gap: 20px;
     }
 }

 .blend-wrapper {
     background-color: #00A0C4;
     /* Sua cor específica */
     display: inline-block;
     /* Garante que a div abrace a imagem */
     line-height: 0;
     /* Remove espaços verticais indesejados */
     mix-blend-mode: exclusion;
 }

 .aquiles-logo-img {
     /* Opções comuns de blend-mode:
     - multiply: Ótimo para escurecer/tingir (brancos ficam da cor do fundo).
     - screen: Ótimo para clarear (pretos ficam da cor do fundo).
     - overlay: Aumenta o contraste misturando as cores.
     - color: Mantém a luminosidade da imagem, mas troca a cor (tingimento puro).
     - luminosity: Mantém a cor do fundo, usa a imagem como textura de luz.
  */
     mix-blend-mode: overlay;
     /* filter: brightness(0.5); */

     /* Garante que a imagem preencha o container se necessário */
     /* display: block; */
 }

 /* --- ORBIT VALUES SECTION --- */
 .section-orbit {
     position: relative;
     background-color: var(--bg-main);
     overflow: hidden;
     padding: 100px 0;
     min-height: auto;
 }

 .orbit-section-header {
     position: relative;
     text-align: center;
     z-index: 2;
     margin-bottom: 60px;
     width: 100%;
 }

 .orbit-background {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 600px;
     height: 600px;
     z-index: 0;
     pointer-events: none;
 }

 /* O anel central grande */
 .orbit-ring {
     position: absolute;
     inset: 0;
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     /* Gradient mask or stroke if possible, simpler border for now */
 }

 /* O Glow Roxo/Dourado central */
 .orbit-glow {
     position: absolute;
     top: 0;
     /* Aligned to ellipse top as in image */
     left: 50%;
     transform: translateX(-50%);
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background: radial-gradient(circle at 50% 0%, rgba(243, 196, 98, 0.4) 0%, transparent 60%);
     opacity: 0.8;
 }

 /* Bolinha branca orbitando (decorativa) */
 .orbit-dot {
     position: absolute;
     top: -10px;
     /* On the ring */
     left: 50%;
     transform: translateX(-50%);
     width: 20px;
     height: 20px;
     background-color: #fff;
     /* or var(--text-light) */
     border-radius: 50%;
     box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
 }

 /* Content Container relative to the ring center */
 .orbit-content-wrapper {
     position: relative;
     width: 100%;
     max-width: 1200px;
     height: 800px;
     /* Fixed height to manage absolute positions relative to this frame */
     margin: 0 auto;
     z-index: 1;
 }

 /* Generic Item Style */
 .orbit-item {
     position: absolute;
     width: 350px;
     max-width: 90%;
 }

 .orbit-label {
     display: block;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--primary-gold) !important;
 }

 .orbit-title {
     font-size: 2rem;
     font-weight: 700;
     color: var(--text-main);
     margin-bottom: 15px;
     line-height: 1.1;
 }

 .orbit-desc {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.6);
     line-height: 1.5;
 }

 /* Specific Positions - Staggered layout "Zig Zag" */
 /* Top Left - Value 1 */
 .pos-top-left {
     top: 50px;
     left: 0;
     text-align: left;
 }

 /* Top Right - Value 2 */
 .pos-top-right {
     top: 150px;
     right: 0;
     text-align: right;
 }

 /* Middle Left - Value 3 */
 .pos-mid-left {
     top: 350px;
     left: 50px;
     /* Indented slightly */
     text-align: left;
 }

 /* Middle Right - Value 4 */
 .pos-mid-right {
     top: 450px;
     right: 50px;
     text-align: right;
 }

 /* Bottom Center - Value 5 */
 .pos-bot-center {
     bottom: 0;
     left: 0;
     right: 0;
     margin: 0 auto;
     /* Removed transform to avoid conflict with AOS */
     text-align: center;
     width: 500px;
 }

 /* Mobile: Stack them */
 @media (max-width: 991px) {
     .section-orbit {
         height: auto;
         min-height: auto;
         padding: 80px 0;
         display: block !important;
     }

     @media (max-width: 767px) {
         .orbit-background {
             display: none !important;
         }
     }

     .orbit-section-header {
         position: relative;
         transform: none;
         left: auto;
         top: auto;
         padding-top: 0;
         margin-bottom: 60px;
         z-index: 2;
     }

     .orbit-background {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         z-index: 0;
         opacity: 0.8;
     }

     .orbit-glow {
         background: radial-gradient(circle at 50% 20%, rgba(243, 196, 98, 0.5) 0%, transparent 70%);
     }

     .orbit-content-wrapper {
         height: auto;
         display: flex;
         flex-direction: column;
         gap: 60px;
         padding: 0 20px;
     }

     .orbit-item,
     .pos-top-left,
     .pos-top-right,
     .pos-mid-left,
     .pos-mid-right,
     .pos-bot-center {
         position: relative !important;
         top: auto !important;
         left: auto !important;
         right: auto !important;
         bottom: auto !important;
         transform: none !important;
         width: 100% !important;
         max-width: 100% !important;
         text-align: center !important;
         margin: 0 !important;
     }

     /* Centralizar CTAs (Botões) */
     .btn-atlanta,
     .btn-aquiles,
     .btn-hermes {
         display: block;
         width: fit-content;
         margin: 0 auto;
     }

     /* Mobile Video Centering */
     #scroll-video {
         width: 100%;
         height: 100%;
         top: 0;
         left: 0;
         transform: none;
         object-position: center;
     }
 }

 /* --- Custom Tooltip Styles --- */
 .tooltip-inner {
     background-color: #333 !important;
     border: 1px solid #fff;
     font-size: 1.2rem;
     padding: 15px 20px;
     max-width: 300px;
     border-radius: 10px;
     color: var(--text-main);
 }

 .tooltip-arrow::before {
     border-top-color: #333 !important;
     /* Match background color */
 }

 /* --- Typewriter Cursor --- */
 #typewriter-text::after {
     content: '|';
     animation: blink-cursor 0.75s step-end infinite;
     color: var(--primary-gold);
     margin-left: 2px;
 }

 @keyframes blink-cursor {

     from,
     to {
         opacity: 1;
     }

     50% {
         opacity: 0;
     }
 }

 /* --- Centered Tooltip on Image --- */
 .tooltip-center {
     position: absolute !important;
     top: 50% !important;
     left: 50% !important;
     transform: translate(-50%, -50%) !important;
     margin: 0 !important;
     inset: auto !important;
     /* Reset popper */
 }

 .tooltip-center .tooltip-arrow {
     display: none !important;
 }

 /* --- Partner Logo Slider --- */
 .logo-slider {
     overflow: hidden;
     padding: 40px 0;
     /* More padding for larger logos */
     background: transparent;
     white-space: nowrap;
     position: relative;
     width: 100%;
 }

 .logo-slider::before,
 .logo-slider::after {
     content: "";
     height: 100%;
     position: absolute;
     width: 15%;
     z-index: 2;
     pointer-events: none;
 }

 .logo-slider::before {
     left: 0;
     top: 0;
     /* background: linear-gradient(to right, #F3C462 0%, rgba(243, 196, 98, 0) 100%); */
 }

 .logo-slider::after {
     right: 0;
     top: 0;
     /* background: linear-gradient(to left, #F3C462 0%, rgba(243, 196, 98, 0) 100%); */
 }

 .logo-track {
     display: flex;
     width: fit-content;
     animation: scroll-logos 30s linear infinite;
 }

 .logo-slide {
     width: 200px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0 30px;
 }

 @keyframes scroll-logos {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-1600px);
     }
 }

 .partner-logo {
     max-height: 75px;
     /* Bigger logos */
     width: auto;
     filter: none;
     /* Original colors */
     opacity: 1;
     /* Original visibility */
     transition: all 0.3s ease;
 }

 .partner-logo:hover {
     filter: grayscale(0) brightness(1);
     opacity: 1;
     transform: scale(1.1);
 }

 /* --- FAQ Section --- */
 .faq-section {
     padding: 100px 0;
     background-color: var(--nr-dark-bg, #2e2e2e);
     color: var(--text-main);
 }

 .faq-title {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 50px;
     text-align: center;
 }

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

 .faq-item {
     background: rgba(255, 255, 255, 0.05);
     margin-bottom: 15px;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     border-color: var(--nr-gold, #F3C462);
     background: rgba(255, 255, 255, 0.08);
 }

 .faq-item.active {
     border-color: var(--nr-gold, #F3C462);
     background: rgba(255, 255, 255, 0.1);
 }

 .faq-question {
     padding: 20px 25px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     cursor: pointer;
     user-select: none;
 }

 .faq-question-text {
     display: flex;
     align-items: center;
     gap: 15px;
     font-size: 1.1rem;
     font-weight: 600;
     text-align: left;
 }

 .faq-question-text i {
     color: var(--nr-gold, #F3C462);
     font-size: 1.2rem;
     width: 25px;
     text-align: center;
 }

 .faq-icon {
     font-size: 1.2rem;
     color: var(--nr-gold, #F3C462);
     transition: transform 0.3s ease;
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     flex-shrink: 0;
 }

 /* Icon Animation */
 .faq-icon::before,
 .faq-icon::after {
     content: '';
     position: absolute;
     background-color: currentColor;
     transition: transform 0.3s ease;
 }

 /* Horizontal line */
 .faq-icon::before {
     width: 14px;
     height: 2px;
 }

 /* Vertical line */
 .faq-icon::after {
     width: 2px;
     height: 14px;
 }

 .faq-item.active .faq-icon::after {
     transform: rotate(90deg);
     opacity: 0;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     background: rgba(0, 0, 0, 0.1);
 }

 .faq-answer-content {
     padding: 20px 25px 25px 65px;
     color: #ccc;
     line-height: 1.6;
     font-size: 1rem;
 }

 .faq-cta-btn {
     display: inline-block;
     margin-top: 15px;
     background-color: var(--nr-gold, #F3C462);
     color: #000;
     padding: 10px 25px;
     border-radius: 50px;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .faq-cta-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(243, 196, 98, 0.3);
     color: #000;
 }

 @media (max-width: 768px) {
     .faq-title {
         font-size: 2rem;
     }

     .faq-question-text {
         font-size: 1rem;
     }

     .faq-answer-content {
         padding: 20px 20px 20px 20px;
     }
 }

 /* --- Integrations Section --- */
 #integracoes {
     background-color: #2e2e2e;
     position: relative;
 }

 .integration-card {
     background: var(--glass-bg);
     border: 1px solid var(--glass-border);
     border-radius: 20px;
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(10px);
 }

 .integration-card:hover {
     background: rgba(243, 196, 98, 0.05);
     border-color: var(--nr-gold);
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
 }

 .integration-img-container {
     height: 80px;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
 }

 /* --- Orbit Enhanced Styles --- */
 .orbit-icon-header {
     width: 80px;
     height: 80px;
     background-color: var(--nr-gold);
     color: #333;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 30px;
     font-size: 2.2rem;
     box-shadow: 0 0 30px rgba(243, 196, 98, 0.4);
 }

 .orbit-intro-text {
     font-size: 1.25rem !important;
     color: var(--text-secondary);
     line-height: 1.8;
     max-width: 950px;
     margin-left: auto;
     margin-right: auto;
 }

 .how-we-help-box {
     background-color: var(--bg-secondary);
     border: 1px solid var(--border-color);
     border-radius: 20px;
     padding: 45px 30px;
     margin: 60px auto 40px;
     max-width: 1000px;
     text-align: center;
     backdrop-filter: blur(10px);
 }

 .how-we-help-title {
     color: var(--nr-gold);
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .how-we-help-text {
     font-size: 1.2rem !important;
     color: var(--text-main);
     margin-bottom: 0;
     line-height: 1.6;
 }

 .integration-logo {
     max-height: 60px;
     max-width: 80%;
     object-fit: contain;
     transition: all 0.3s ease;
 }

 .integration-card:hover .integration-logo {
     transform: scale(1.1);
     opacity: 1;
 }

 /* --- Cookie Banner --- */
 .cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background-color: var(--bg-deep);
     border-top: 2px solid var(--nr-gold);
     z-index: 9999;
     color: var(--text-main);
     box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
 }

 /* --- Accessibility Wrapper --- */
 .accessibility-wrapper {
     position: fixed;
     right: 20px;
     bottom: 100px;
     z-index: 10000;
 }

 .acc-btn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: var(--nr-gold);
     color: #000;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
     transition: transform 0.3s ease;
 }

 .acc-btn:hover {
     transform: scale(1.1);
 }

 .acc-panel {
     position: absolute;
     bottom: 60px;
     right: 0;
     width: 200px;
     background: #333;
     border: 1px solid var(--nr-gold);
     padding: 15px;
     border-radius: 10px;
     color: var(--text-main);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
 }

 .acc-panel h6 {
     color: var(--nr-gold);
     font-weight: 700;
     margin-bottom: 15px;
     text-align: center;
 }

 /* --- High Contrast Mode --- */
 body.high-contrast {
     filter: contrast(1.5) brightness(0.9);
 }

 body.high-contrast * {
     background-color: #000 !important;
     color: #fff !important;
     border-color: #fff !important;
 }

 body.high-contrast .amarelo,
 body.high-contrast .text-gold {
     color: #ffff00 !important;
 }

 /* --- Theme Toggle button custom --- */
 #theme-toggle {
     color: var(--text-color);
     font-size: 1.2rem;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 #theme-toggle:hover {
     transform: rotate(20deg);
     color: var(--nr-gold);
 }


 /* --- Stats Impact Section --- */
 .section-stats {
     position: relative;
     overflow: hidden;
     background-color: var(--bg-main);
     color: var(--text-main);
     padding: 110px 0;
     text-align: center;
 }

 .section-stats .container {
     position: relative;
     z-index: 2;
 }

 .ecg-animation {
     position: absolute;
     top: 50%;
     left: 0;
     width: 100%;
     height: 160px;
     z-index: 1;
     opacity: 0.12;
     pointer-events: none;
     transform: translateY(-50%);
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='100' viewBox='0 0 1000 100'%3E%3Cpath d='M0,50 L200,50 L210,40 L220,60 L230,50 L250,50 L260,10 L275,90 L290,50 L350,50 L360,45 L370,55 L380,50 L500,50 L700,50 L710,40 L720,60 L730,50 L750,50 L760,10 L775,90 L790,50 L850,50 L860,45 L870,55 L880,50 L1000,50' fill='none' stroke='%23F3C462' stroke-width='2'/%3E%3C/svg%3E");
     background-repeat: repeat-x;
     background-size: 1000px 100%;
     animation: ecg-scroll 12s linear infinite;
 }

 @keyframes ecg-scroll {
     from {
         background-position: 0 center;
     }

     to {
         background-position: -1000px center;
     }
 }

 .stats-header-title {
     color: var(--nr-gold);
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 25px;
     letter-spacing: -1px;
 }

 .stats-header-desc {
     font-size: 1.15rem !important;
     color: rgba(255, 255, 255, 0.85);
     max-width: 950px;
     margin: 0 auto 50px;
     line-height: 1.7;
 }

 .results-headline {
     text-transform: uppercase;
     font-size: 0.95rem;
     letter-spacing: 3px;
     color: var(--nr-gold);
     margin-bottom: 70px;
     font-weight: 700;
     opacity: 0.9;
 }

 .section-stats .stat-item {
     padding: 25px 15px;
     height: 100%;
     transition: transform 0.3s ease;
 }

 .stat-item:hover {
     transform: translateY(-5px);
 }

 .stat-icon {
     font-size: 2rem;
     color: var(--nr-gold);
     margin-bottom: 30px;
     display: block;
 }

 .stat-number {
     font-size: 3.8rem;
     font-weight: 800;
     color: var(--nr-gold);
     margin-bottom: 15px;
     display: block;
     line-height: 1;
 }

 .stat-title {
     font-size: 1.15rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.4;
     min-height: 3.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .stat-desc {
     font-size: 0.95rem !important;
     color: rgba(255, 255, 255, 0.65);
     line-height: 1.6;
 }

 .stats-footer-text {
     font-style: italic;
     font-size: 1.2rem !important;
     color: rgba(255, 255, 255, 0.8);
     max-width: 1000px;
     margin: 90px auto 0;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding-top: 50px;
     line-height: 1.8;
 }

 @media (max-width: 991px) {
     .stat-title {
         min-height: auto;
     }

     .stat-item {
         margin-bottom: 30px;
     }
 }

 @media (max-width: 768px) {
     .stat-number {
         font-size: 3rem;
     }

     .stats-header-title {
         font-size: 2.2rem;
     }

     .section-stats {
         padding: 80px 0;
     }

     /* Orbit Section Responsive Adjustments */
     .orbit-section-header .orbit-title {
         font-size: 2.2rem !important;
     }

     .orbit-intro-text {
         font-size: 1.1rem !important;
     }

     .how-we-help-box {
         padding: 30px 20px;
         margin-top: 40px;
     }

     .how-we-help-title {
         font-size: 1.5rem;
     }
 }

 /* --- Final CTA Section --- */
 .final-cta-section {
     background-color: var(--bg-main);
     padding: 120px 0;
     border-top: 1px solid var(--border-color);
     text-align: center;
 }

 .final-cta-title {
     font-size: 3.5rem;
     font-weight: 700;
     color: var(--text-main);
     margin-bottom: 20px;
 }

 .final-cta-desc {
     font-size: 1.35rem !important;
     color: var(--text-secondary);
     margin-bottom: 50px;
 }

 .btn-final-cta {
     background-color: var(--nr-gold);
     color: #000 !important;
     font-weight: 700;
     padding: 20px 60px;
     border-radius: 50px;
     font-size: 1.2rem;
     display: inline-block;
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     border: none;
     text-decoration: none;
     box-shadow: 0 10px 30px rgba(243, 196, 98, 0.1);
 }

 .btn-final-cta:hover {
     transform: translateY(-5px) scale(1.05);
     background-color: #fce3a4;
     box-shadow: 0 20px 40px rgba(243, 196, 98, 0.3);
 }

 @media (max-width: 768px) {
     .final-cta-title {
         font-size: 2.5rem;
     }

     .final-cta-desc {
         font-size: 1.1rem !important;
     }

     .btn-final-cta {
         padding: 15px 40px;
         font-size: 1.1rem;
     }
 }