* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary-dark: #050505;
    --primary-blue: #1a73e8;
    --secondary-blue: #0d47a1;
    --accent-blue: #4285f4;
    --neon-blue: #00d4ff;
    --light-text: #f5f5f5;
    --gray-text: #9e9e9e;
    --silver-gray: #666666;
    --title: white;
    --neon-yellow: #fbbf24;
    --neon-pink: #ff00ff;
    --neon-green: #00ff00;
    --neon-purple: #8a2be2;
    --neon-orange: #f59e0b;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
    --gradient-secondary: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}
h2{
    font-size: 3.1rem;
    line-height: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
    color:var(--text-primary);
    animation: lights 5s 750ms linear infinite;
    font-family: "Outfit", sans-serif;
}
.title-product{
    margin: 0 auto;
    display: table;
    max-width: 800px;
    text-align: center;
    padding-bottom: 30px;
}
.title-product h2{
    margin-top: 2rem;
}
.title-product h3{
    font-size: 28px;
    font-weight: 200;
    color: var(--text-secondary);
}
.title-product span{
    border: 1px solid var(--gray-text);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(36, 165, 251, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 81, 255, 0.2) 50%, transparent 70%);
    animation: heroGlow 3s ease-in-out infinite alternate;
    /*background: 
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite alternate;        
        */
    z-index: -2;
}

@keyframes backgroundPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-yellow);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 6px var(--neon-yellow);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
}
.container-nav {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-fluid {
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Header - Styled like the reference image */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.21);
    border-radius: 30px;
}
nav.scrolled {
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.22);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}
.logo h1{
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 1px;
}
.logo h1 span{
    font-weight: 400;
}
.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-family: ";
}
.logo-icon img{
    width: 32px;
    height: 32px;
}


.nav-center {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-center a:hover {
    color: var(--accent-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.button-nav{
    border: 1px solid var(--text-secondary);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    padding: 0.53rem 1.1rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Outfit", sans-serif;
}
.button-nav:hover {
    background-color: var(--secondary-blue);
    border-color: var(--neon-blue);
    transform: translateY(-1px);
}
.button-nav:hover i{
    color: #fff;
}

.cta-button {
    background: var(--secondary-blue);
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background-color: var(--secondary-blue);
    border-color: var(--neon-blue);
    transform: translateY(-1px);
}

.cta-button i {
    font-size: 0.8rem;
}
.cta-button:hover i {
    color: #fff;
}


/* Hero Section */
h1{
    color: var(--title);
}
.hero {
    color: var(--text-primary);
    padding: 150px 0 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /*background: var(--darker-bg);*/
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: 
        linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 255, 0.1) 50%, transparent 70%);
    animation: heroGlow 4s ease-in-out infinite alternate;*/
}
@keyframes heroGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    font-family: "Outfit", sans-serif;
    width: 800px;
    margin: 0 auto;
}
.title-hero{
    margin-bottom: 10px;
    font-size: 65px;
    line-height: 115%;
}

/*
.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    animation: titleGlow 3s ease-in-out infinite alternate;
    font-family: "Outfit", sans-serif;
    margin-left: 100px;
    margin-right: 100px;
    letter-spacing: -1px;
}
*/
.hero-title-desk {
    text-align: center;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 35px;
    font-family: "Outfit", sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 115%;
}
.hero-title-text {
    color: var(--title);
    font-weight: 400;
}
.gradient-text {
    background-image: linear-gradient(90deg, var(--title), #a7a7a7);
    letter-spacing: -1px;
    -webkit-text-stroke-width: 0px;
    overflow-wrap: normal;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 300;
}
.hero-tags{
    margin: 35px 0;
}

.hero-tags span{
    margin: 0px 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.tag-boxe3{
    font-weight: 400;
}
.tag-boxe3{
    border: 1px solid var(--text-secondary);
    padding: 6px;
    border-radius: 5px;
    font-weight: 500;
}

.hero-tags .destaque-yellow {
    background: linear-gradient(
    65deg,
    rgba(206, 129, 49, 1) 7%,
    rgba(253, 212, 1, 1) 57%);
    background-blend-mode: normal;
    padding: 6px;
    border-radius: 5px;
    border:none;
}
.hero-tags span p{
    display: contents;
    color: #000 !important;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;

}
.tag-boxe4{
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: 600;
    background: var(--neon-blue);
    color: #0d47a1 !important;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

.hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-pink);
    font-family: "Outfit", sans-serif;
    animation: subtitlePulse 2s ease-in-out infinite alternate;
}

@keyframes subtitlePulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.hero .description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.9rem;
}

.cta-button {
    font-size: 1rem;
    padding: 1rem 1rem;
    margin-top: 0.5rem;
    background-color: var(--dark-bg);
    animation: ctaPulse 2s ease-in-out infinite;
}
.b-small{
    border: 1px solid var(--blue-orange);
    font-size: 1rem;
    padding: 0.66rem 1.2rem;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 15px var(--neon-blue); }
    50% { box-shadow: 0 0 25px var(--accent-blue); }
}

/* Glitch effect for hero title - reduced intensity */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--neon-yellow);
    z-index: -1;
    opacity: 0.3;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--neon-pink);
    z-index: -2;
    opacity: 0.3;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-1px, 1px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(1px, -1px); }
}

/* Sections */
section {
    padding: 50px 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}
section p{
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
}
.about-display p{
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}
.about{
    padding-top: 0px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
}
.img-sobre{
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}
.img-sobre img{
    width: 100%;
    height: auto;
}

.about h1 {
    font-size: 3.1rem;
    line-height: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
}
.about p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-visual {
    background: var(--gradient-primary);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-yellow), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/***** Sobre ***/
/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--neon-blue);
}

.card-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    display: block;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.card p {
    color: var(--gray-text);
    line-height: 1.6;
}
/**** misão ****/
.missoes{
    background: radial-gradient(56.00000000000001% 127% at 6% -53.1%, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {"name":"Dark/300"} */ 0%, var(--token-4d67072c-df86-41a3-8260-1a48b41c6ca7, rgb(17, 17, 17)) /* {"name":"Dark/400"} */ 100%);
    border-radius: 16px;
    opacity: 1;
    flex: none;
    height: auto;
    position: relative;
    width: auto;
}
.missoes .icones{
    background: linear-gradient(135deg, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) /* {"name":"Dark/200"} */ 0%, var(--token-4d67072c-df86-41a3-8260-1a48b41c6ca7, rgb(17, 17, 17)) /* {"name":"Dark/400"} */ 100%);
    border-radius: 40px;
    opacity: 1;
}
.scroll-down-arrow {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2hldnJvbl90aGluX2Rvd24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiBmaWxsPSJ3aGl0ZSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE3LjQxOCw2LjEwOWMwLjI3Mi0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwYzAuMjcsMC4yNjgsMC4yNzEsMC43MDEsMCwwLjk2OWwtNy45MDgsNy44M2MtMC4yNywwLjI2OC0wLjcwNywwLjI2OC0wLjk3OSwwbC03LjkwOC03LjgzYy0wLjI3LTAuMjY4LTAuMjctMC43MDEsMC0wLjk2OWMwLjI3MS0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwTDEwLDEzLjI1TDE3LjQxOCw2LjEwOXoiLz48L3N2Zz4=);
  background-size: contain;
  background-repeat: no-repeat;
}
.scroll-down-link {
    cursor:none;
  position: absolute;
  z-index: 100;
  cursor:pointer;
  height: 60px;
  width: 64px;
  margin: 0px 0 0 -30px;
  line-height: 60px;
  left: 50%;
  bottom: 10px;
  color: #FFF;
  text-align: center;
  font-size: 70px;
  text-decoration: none;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  -webkit-animation: fade_move_down 2s ease-in-out infinite;
  -moz-animation:    fade_move_down 2s ease-in-out infinite;
  animation:         fade_move_down 2s ease-in-out infinite;
}
  /*animated scroll arrow animation*/
  @-webkit-keyframes fade_move_down {
    0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -webkit-transform:translate(0,20px); opacity: 0; }
  }
  @-moz-keyframes fade_move_down {
    0%   { -moz-transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { -moz-transform:translate(0,20px); opacity: 0; }
  }
  @keyframes fade_move_down {
    0%   { transform:translate(0,-20px); opacity: 0;  }
    50%  { opacity: 1;  }
    100% { transform:translate(0,20px); opacity: 0; }
  }


/***** Soluçõpe ***/

.tab-content {
    display: none; /* Esconde todos os conteúdos por padrão */
}
.tab-content.active {
    display: block; /* Mostra o conteúdo da aba ativa */
}

.tab-content img {
     max-width: 100%; /* Garante que a imagem seja responsiva */
    height: auto;
}
.tabs-container {
    display: flex;
    border-radius: 0.25rem;
    overflow: hidden;
}

.tab-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    min-width: 150px; /* Largura mínima da lista de abas */
    width: 45%; /* Define a largura da tab-list */
}

.tab-item {
    background-color: transparent;
    border: none;
    padding: 1.25rem 1.50rem;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: background-color 0.3s, color 0.3s;
    border-left: 1px solid rgba(31, 31, 31, 0.55);
    border-top: 1px solid rgba(31, 31, 31, 0.55);
}
.tab-item:hover {
    color: var(--light-text);
}

.tab-item.active {
    border-left-color: #0d6efd; /* Cor do indicador de aba ativa */
    color: var(--text-primary);
}
.tab-item.active h3 {
    color: var(--accent-blue);
}
.tab-item.active p{
    display: block;
}
.tab-item p{
    font-family: 'Inter', sans-serif;
    font-size: 0.91rem;
    line-height: 1.5;
    font-weight: 300;
    display: none;
}
.tab-item h3{
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tab-content-container {
    padding: 1.5rem;
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Benefits Section */

.tab-content-container {
    padding: 1.5rem;
    width: 100%;
}
.benefits {
    background: none;
}

.benefits h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 212, 212, 0.11);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 154, 251, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(36, 154, 251, 0.15);
    border-color: var(--neon-blue);
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-icon {
    font-size: 2rem;
    background: var(--text-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
    float: right;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.88rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.metric {
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--accent-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 238, 255, 0.2);
}

/* Success Cases */
.success-cases {
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.success-cases h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--neon-pink);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 25px rgba(255, 0, 255, 0.15);
    border-left-color: var(--neon-yellow);
}

.case-card:hover::before {
    opacity: 1;
}

.case-industry {
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.case-result {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.case-metric {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Social Proof */
.social-proof {
    background: var(--dark-bg);
    text-align: center;
}

.social-proof h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    width: 150px;
    height: 80px;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.client-logo:hover {
    transform: scale(1.1);
    border-color: var(--neon-yellow);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.2);
    color: var(--neon-yellow);
}
.trusted-data{
    opacity: 0.5;
    position: relative;
}
.trust-wrap {
    grid-column-gap: 80px;
    filter: grayscale();
    justify-content: space-between;
    display: flex;
}
.trust-logo{
    opacity: 1;
    width: 140px;
    height: 40px;
}
.poweredbySec{
    position: relative;
}
.poweredbySec p{
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    background: var(--card-bg);
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}
.img-about{
    width: 110%;
    border-radius: 15px;
    margin: -5%;
    padding-bottom: 28px;
}
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
.txt-about h3{
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.1rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    animation: stepPulse 2s ease-in-out infinite alternate;
}

@keyframes stepPulse {
    0% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
    100% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.5); }
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--darker-bg);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.2) 0%, transparent 50%);
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.cta-section .cta-button {
    background: var(--gradient-secondary);
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    position: relative;
    z-index: 2;
}

/* FAQ */
.faq {
    background: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.faq-item button{
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
}
.faq-item:hover {
    box-shadow: 0 4px 15px rgba(36, 172, 251, 0.15);
    background: rgba(26, 115, 232, 0.1);
    color: var(--neon-blue);
}

.faq-question {
    padding: 1.5rem;
    background: transparent;
    cursor: pointer;
    font-weight: 300;
    color: var(--text-primary);
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--neon-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-secondary);
    line-height: 1.6;
}
.faq-answer p{
    font-size: 1.2rem;
}
.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Footer */
footer {
    background: var(--darker-bg);
    color: var(--text-primary);
    padding: 40px 0;
    border-top: 1px solid rgba(36, 147, 251, 0.2);
}
.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.div1 { 
    grid-area: 1 / 1 / 2 / 2; 
}
.div1 .ico-dragon{
    float: left;
    height: 37px;
    margin-right: 10px;
}
.div1 .logo-dragon{
    height: 35px;
}
.div1 p{
    margin:1rem;
}
.div2 { 
    grid-area: 1 / 2 / 2 / 3; 
}
.div3 { 
    grid-area: 1 / 3 / 2 / 4; 
}
.div4 { 
    grid-area: 1 / 4 / 2 / 5; 
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--white);
    text-decoration: none;
}

.footer-logo span {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-slogan {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.footer-links h4 {
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    font-size: 0.9rem;
}
.footer-bottom p{
    float:left;
}
.footer-bottom ul{
    float: right;
}
.footer-bottom ul li{
    display: inline-block;
    margin-left: 1rem;
}
.footer-bottom ul li a{
    color: var(--white);
    text-decoration: none;
}



/* Footer  old 
.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}

.footer-links a:hover::before {
    opacity: 0.2;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
*/
/* Mobile Responsiveness */
@media screen and (min-width: 1920px) {
    .container,
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content{
        width: auto;
    }
    .tab-list{
        width: 100%;
    }
    .tab-content-container{
        display: none;
    }
    .title-product h2 {
        margin-top: 1.66rem;
        font-size: 2.5rem;
        line-height: 2.7rem;
    }
    .parent{
        display: block;    
    }
    .nav-center,
    .social-icons {
        display: none;
    }
    .hero-tags span {
        margin: 0px 6px;
    }
    .hero-tags span {
        margin: 0px 10px;
        font-size: 1rem;
        color: var(--text-secondary);
        display: inline-block;
        margin: 5px 3px;
    }
    .container-fluid{
        padding: 0 20px;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 1.6rem;
        margin-top: 0.71rem;
        background: var(--neon-blue);
        color: var(--dark-bg);
    }
    .about-visual{
        display: none;
    }
    .about-display{
        margin:20px auto;
        padding: 0;
    }
    .about-content{
        padding: 0;
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .about{
        padding-top: 10px;
    }
    .about h1{
        font-size: 2.9rem;
    }
    .hero .subtitle {
        font-size: 1.3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        height: 250px;
    }

    .benefits-grid,
    .cases-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .logos-container {
        gap: 1rem;
    }

    .client-logo {
        width: 120px;
        height: 60px;
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(36, 172, 251, 0.3);
    border-top: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Carousel Styles for PoweredBy Section */
#poweredby {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.trusted-data {
    position: relative;
    z-index: 2;
}

.trust-wrap {
    display: flex;
    align-items: center;
    animation: carousel-scroll 30s linear infinite;
    width: calc(140px * 18); /* 9 imagens originais + 9 duplicadas */
    gap: 30px;
}

.trust-wrap img {
    width: 140px;
    height: auto;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-wrap img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Keyframes for the continuous carousel scroll */
@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-140px * 9 - 30px * 9)); /* Move exactly the width of the 9 original images + gaps */
    }
}

/* Tabbed Solution Navigation Layout (replaces accordion behavior) */
.solution-nav {
    /* convert to a two-column tab layout */
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Left column: list of tabs */
.solution-nav-list {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Right column: tab content container */
.tab-content-container {
    flex: 1;
    border-radius: 12px;
    padding: 2rem;
    min-height: 300px;
}

/* Individual tab panes */
.tab-content {
    display: none;
    animation: fadeIn 0.45s ease both;
}

.tab-content.active {
    display: block;
}

/* Small media and image within tab content */
.tab-content img {
    margin-bottom: 1rem;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);

}

.tab-content h3 {
    color: var(--text-light);
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.tab-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Simple fade-in animation for tab switches */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Keep most of the existing item styling but ensure tabs are visually clear */
.solution-nav-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin: 0;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
    padding: 0.5rem;
}

/* Active tab highlight */
.solution-nav-item.active {
    background: rgba(0, 123, 255, 0.06);
    border-color: rgba(0, 123, 255, 0.18);
    box-shadow: 0 6px 24px rgba(0, 123, 255, 0.08);
}

/* Preserve header layout inside each tab item */
.solution-nav-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
}

/* Icon sizing for list items (smaller than content icon) */
.solution-nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Arrow indicator adjustments */
.solution-nav-arrow {
    transition: transform 0.25s ease;
    margin-left: auto;
    opacity: 0.9;
}

/* Remove accordion detail collapse behavior (tabbed layout doesn't use it) */
.solution-nav-details {
    /* make details always visible within the tab content area; keep minimal styling */
    display: block;
    max-height: none;
    opacity: 1;
    padding: 0.75rem 1rem;
    margin: 0;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .solution-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    #poweredby {
        padding: 20px 0;
    }

    .solution-nav-list {
        flex: 1;
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    .tab-content-container {
        order: 2;
        width: 100%;
    }

    .solution-nav-header {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .button-nav{
        font-size: 0.7rem;
    }
    
    .tab-content img {
        max-width: 64px;
    }

    .solution-nav-details {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        opacity: 0;
    }
    .solution-nav-details {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        opacity: 0;
    }

    .solution-nav-item.active .solution-nav-details {
        max-height: 200px;
        opacity: 1;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .solution-nav-details p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
        padding-left: 76px; /* Align with content */
    }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .solution-nav {
        padding: 1rem 0;
    }

    .solution-nav-header {
        padding: 1rem;
        gap: 0.75rem;
    }

    .solution-nav-icon {
        width: 50px;
        height: 50px;
    }

    .solution-nav-icon img {
        width: 28px;
        height: 28px;
    }

    .solution-nav-content h3 {
        font-size: 1.1rem;
    }

    .solution-nav-content h4 {
        font-size: 0.85rem;
    }

    .solution-nav-item.active .solution-nav-details {
        padding: 0 1rem 1rem 1rem;
    }

    .solution-nav-details p {
        padding-left: 66px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .solution-nav-details p {
        padding-left: 0;
    }
}

/* Carousel Responsive Styles */
@media (max-width: 768px) {
    .trust-wrap {
        animation-duration: 25s;
        width: calc(120px * 18);
        gap: 20px;
    }

    .trust-wrap img {
        width: 120px;
    }

    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 9 - 20px * 9));
        }
    }
}

@media (max-width: 480px) {
    .solution-nav-details p {
        padding-left: 0;
    }

    .trust-wrap {
        gap: 15px;
        width: calc(100px * 18);
        animation-duration: 20s;
    }

    .trust-wrap img {
        width: 100px;
    }

    @keyframes carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 9 - 15px * 9));
        }
    }
}