/* Estilos Globais */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #9146FF;
    --secondary-color: #7B34D9;
    --dark-bg: #0F1129;
    --darker-bg: #080B19;
    --text-color: #FFFFFF;
    --text-secondary: #B4B4B4;
    --card-bg: #161B35;
    --gradient-start: #9146FF;
    --gradient-end: #7000FF;
    --highlight-color: #BD76FF;
    --section-bg-alt: #1e0a3c;
    --text-muted: #B4B4B4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--darker-bg) 0%, #1e0a3c 40%, #1e0a3c 60%, var(--darker-bg) 100%);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Garantir que o conteúdo principal preencha a altura da página */
body > * {
    flex-shrink: 0;
}

/* Garantir que o rodapé fique no fim do conteúdo */
footer {
    margin-top: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%239146FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="4"/></svg>') 12 12, pointer;
}

ul {
    list-style: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Remover transformação vertical no hover */
    transform: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.6);
    /* Não mover para cima */
    transform: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid var(--text-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Remover transformação vertical no hover */
    transform: none;
}

.btn-secondary:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /* Não mover para cima */
    transform: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: -1;
    transform-origin: center;
}

.btn-outline i {
    margin-left: 8px;
}

.btn-outline:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
    padding: 15px 0;
    background-color: rgba(8, 11, 25, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(145, 70, 255, 0.1) 0%, transparent 60%);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.8;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    word-break: keep-all;
    word-wrap: normal;
    white-space: normal;
}

.changing-text {
    display: inline-block;
    transition: opacity 0.5s ease;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(145, 70, 255, 0.2);
    font-size: 80px;
    font-weight: 600;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Estilo para o texto estático */
.static-text {
    transition: opacity 0.5s ease;
    color: #9146FF;
    font-size: 80px;
    font-weight: 600;
    will-change: opacity;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero .highlight {
    font-weight: 600;
    color: var(--highlight-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    overflow: visible;
    height: auto;
    /* Garantir que não haja mudança de altura */
    min-height: 55px;
    margin-bottom: 20px;
}

/* Soluções */
.solutions {
    padding: 60px 0; /* Reduzido de 80px para 60px */
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: rgba(8, 11, 25, 0.85);
    backdrop-filter: blur(10px);
}

.solutions h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
}

.solution-card {
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
    box-sizing: border-box;
}

.solution-card.animate {
    animation: fadeInUp 0.6s forwards;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.solution-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.solution-card .icon i {
    font-size: 24px;
    color: var(--text-color);
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    width: 100%;
}

/* Métricas */
.metrics {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: transparent;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.metrics-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
    position: relative;
}

.metrics-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.metrics-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: rgba(8, 11, 25, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.metric {
    opacity: 0;
    transform: translateY(20px);
}

.metric.animate {
    animation: fadeInUp 0.6s forwards;
}

.metric h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.metric p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Seção de Integrações Interativa (Logo Wall / Atom) */
.integrations-wall {
    position: relative;
    padding: 80px 0;
    overflow: visible;
    background: rgba(8, 11, 25, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2;
    margin-top: 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
}

.integrations-wall h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.integration-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* Grade de plataformas integradas */
.platforms-grid {
    padding: 20px 0;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.platforms-grid h2 {
    text-align: center;
    margin-bottom: 30px;
}

.logos-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.logos-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    padding: 10px;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.right-to-left {
    animation: scroll-right-to-left 60s linear infinite;
}

.left-to-right {
    animation: scroll-left-to-right 60s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 5px;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.logo-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item p {
    font-size: 0.8rem;
    margin-top: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    background: rgba(145, 70, 255, 0.1);
    box-shadow: 0 5px 15px rgba(145, 70, 255, 0.2);
}

.logo-item:hover img {
    transform: scale(1.1);
}

.logo-item:hover p {
    color: var(--primary-color);
}

.integration-footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Remover container do botão load-more */
.load-more-container {
    display: none;
}

/* --- Responsividade para telas menores --- */
@media (max-width: 768px) {
    /* Ajustes para telas médias */
    .right-to-left {
        animation: scroll-right-to-left 40s linear infinite;
    }
    
    .left-to-right {
        animation: scroll-left-to-right 40s linear infinite;
    }
    
    .logos-container {
        gap: 20px;
    }
    
    .logo-item {
        margin: 0 3px;
    }
}

@media (max-width: 576px) {
    /* Ajustes para telas pequenas */
    .integrations-wall h2 { font-size: 28px; }
    .integration-subtitle { font-size: 16px; margin-bottom: 40px; }
    
    .right-to-left {
        animation: scroll-right-to-left 30s linear infinite;
    }
    
    .left-to-right {
        animation: scroll-left-to-right 30s linear infinite;
    }
    
    .logos-container {
        gap: 15px;
    }
}

/* Página de Preços */
.pricing-section {
    padding: 100px 0 80px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing-subheading {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
}

.solutions-personalizadas {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
}

.solutions-personalizadas h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.solutions-personalizadas p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-pricing-card {
    background-color: rgba(22, 27, 53, 0.4);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transform: rotate(15deg);
}

.solution-pricing-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.solution-pricing-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: left;
}

.solution-pricing-card ul {
    margin-bottom: 25px;
}

.solution-pricing-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.solution-pricing-card li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.pricing-info {
    background-color: rgba(22, 27, 53, 0.4);
    border-radius: 15px;
    padding: 50px 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--highlight-color);
}

.pricing-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pricing-column-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-column ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.pricing-column ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
}

/* Seção de Contato/Agendamento */
.contact-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-details .contact-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    width: 24px;
}

.contact-details .contact-item a {
    color: var(--text-secondary);
}

.contact-details .contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: rgba(8, 11, 25, 0.85);
    backdrop-filter: blur(10px);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    background: rgba(8, 11, 25, 0.3);
    backdrop-filter: blur(5px);
    padding: 60px 0 0;
    margin-top: auto;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-column p, 
.footer-column li {
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-column ul li a {
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    background: rgba(8, 11, 25, 0.2);
}

.footer-bottom p {
    color: var(--text-color);
    font-size: 14px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    transition: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float:before,
.whatsapp-float:after {
    display: none !important;
}

.whatsapp-float a {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Animações */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação para o delay sequencial nos cards */
.solutions-grid .solution-card:nth-child(1),
.carousel-item:nth-child(1) {
    animation-delay: 0.1s;
}

.solutions-grid .solution-card:nth-child(2),
.carousel-item:nth-child(2) {
    animation-delay: 0.2s;
}

.solutions-grid .solution-card:nth-child(3),
.carousel-item:nth-child(3) {
    animation-delay: 0.3s;
}

.solutions-grid .solution-card:nth-child(4),
.carousel-item:nth-child(4) {
    animation-delay: 0.4s;
}

.metrics-grid .metric:nth-child(1) {
    animation-delay: 0.1s;
}

.metrics-grid .metric:nth-child(2) {
    animation-delay: 0.2s;
}

.metrics-grid .metric:nth-child(3) {
    animation-delay: 0.3s;
}

/* Media Queries */
@media (max-width: 1200px) {
    .solutions-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-columns {
        grid-template-columns: 1fr;
    }
    
    .pricing-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .metrics-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .solutions-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .text-animation-container {
        width: 180px;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Seção interativa de preços */
.pricing-interactive {
    margin: 40px 0;
}

.pricing-factors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.factor-card {
    background-color: rgba(22, 27, 53, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.factor-card:hover, .factor-card.active {
    background-color: rgba(145, 70, 255, 0.2);
    transform: translateY(-15px) rotateX(10deg);
    border-color: var(--primary-color);
    box-shadow: 
        0 15px 30px rgba(145, 70, 255, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.factor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.factor-card:hover::before, .factor-card.active::before {
    opacity: 1;
}

.factor-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 5%;
    width: 90%;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 60%);
    filter: blur(5px);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.factor-card:hover::after, .factor-card.active::after {
    opacity: 0.8;
}

.factor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(20px);
    position: relative;
}

.factor-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.factor-card:hover .factor-icon::after, 
.factor-card.active .factor-icon::after {
    opacity: 0.5;
}

.factor-card:hover .factor-icon, 
.factor-card.active .factor-icon {
    transform: scale(1.1) translateZ(30px);
    box-shadow: 0 15px 35px rgba(145, 70, 255, 0.6);
}

.factor-icon i {
    font-size: 30px;
    color: white;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.factor-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    transform: translateZ(10px);
}

.factor-card:hover h4, 
.factor-card.active h4 {
    color: var(--highlight-color);
    transform: translateZ(15px);
}

.factor-description {
    background-color: rgba(22, 27, 53, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.factor-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.05), transparent);
    z-index: -1;
}

.factor-description p {
    font-size: 17px;
    color: var(--text-color);
    max-width: 800px;
    transition: all 0.4s ease;
    transform: translateZ(5px);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .pricing-factors {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-factors {
        grid-template-columns: 1fr;
    }
}

/* Adicionar margem superior onde necessário */
.margin-top {
    margin-top: 80px;
}

/* Estilos para o Logo 3D */
.logo-3d-container {
    width: 150px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--mouse-y, 0deg)) rotateY(var(--mouse-x, 0deg));
    transition: transform 0.1s ease-out;
}

.logo-sphere {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 5px;
    top: 10px;
    transform-style: preserve-3d;
}

.sphere-core {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    left: 10px;
    top: 10px;
    box-shadow: 0 0 15px rgba(145, 70, 255, 0.7);
    animation: pulse-core 3s infinite alternate;
}

.sphere-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--highlight-color);
    left: 0;
    top: 0;
    animation: rotate-ring 8s linear infinite;
}

.sphere-particles {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
}

.sphere-particles::before {
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    animation: rotate 4s linear infinite;
}

.sphere-particles::after {
    width: 4px;
    height: 4px;
    background-color: var(--highlight-color);
    animation: rotate 5s linear infinite reverse;
}

.logo-text {
    position: absolute;
    left: 55px;
    top: 20px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 2px rgba(145, 70, 255, 0.3));
}

.text-auto {
    opacity: 0;
    animation: fade-in 0.5s forwards 0.5s;
}

.text-mabo {
    opacity: 0;
    animation: fade-in 0.5s forwards 0.8s;
}

.data-flow {
    position: absolute;
    width: 150px;
    height: 60px;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: -1;
}

.data-particle {
    position: absolute;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.6;
    animation: flow-data 4s linear infinite;
}

.data-particle:nth-child(2) {
    top: 25px;
    width: 15px;
    animation-duration: 3s;
}

.data-particle:nth-child(3) {
    top: 40px;
    width: 25px;
    animation-duration: 5s;
}

.data-particle:nth-child(4) {
    top: 15px;
    width: 10px;
    animation-duration: 2.5s;
}

.data-particle:nth-child(5) {
    top: 50px;
    width: 18px;
    animation-duration: 4.5s;
}

@keyframes pulse-core {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(145, 70, 255, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(145, 70, 255, 0.9);
    }
}

@keyframes rotate-ring {
    0% {
        transform: rotateZ(0deg) rotateX(60deg) rotateY(0deg);
    }
    100% {
        transform: rotateZ(360deg) rotateX(60deg) rotateY(0deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) translateX(15px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(15px) rotate(-360deg);
    }
}

@keyframes fade-in {
    0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes flow-data {
    0% {
        transform: translateY(-30px) translateX(0) scale(0.7);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(30px) translateX(30px) scale(1);
        opacity: 0;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    z-index: 9999;
    box-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
}

/* Cursor Personalizado */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%239146FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="2"/></svg>') 12 12, auto;
}

a, button, .btn-primary, .btn-secondary, .btn-outline, .factor-card {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%239146FF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="4"/></svg>') 12 12, pointer;
}

/* Efeitos de hover nos botões */
.btn-primary::before, .btn-secondary::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: -1;
    transform-origin: center;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-outline:hover::before {
    transform: scale(1);
}

.btn-primary:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.6);
}

.btn-secondary:hover, .btn-outline:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Melhorias de menu */
nav ul li a {
    position: relative;
    padding: 8px 0;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Círculos de fundo premium */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -3;
    opacity: 0.3;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(145, 70, 255, 0.3) 0%, rgba(145, 70, 255, 0) 70%);
}

.circle-1 {
    width: 1000px;
    height: 1000px;
    top: -400px;
    right: -300px;
    animation: float-circle 25s infinite alternate ease-in-out;
}

.circle-2 {
    width: 800px;
    height: 800px;
    bottom: -300px;
    left: -200px;
    animation: float-circle 20s infinite alternate-reverse ease-in-out;
}

.circle-3 {
    width: 600px;
    height: 600px;
    top: 40%;
    right: 30%;
    animation: float-circle 30s infinite alternate ease-in-out;
    opacity: 0.3;
}

@keyframes float-circle {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Animação de fundo - Partículas Flutuantes */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    min-height: 100%;
    min-width: 100vw;
}

/* Estilos para a animação de texto */
.text-animation-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    min-height: 1.2em;
    width: 230px;
    vertical-align: bottom;
    margin-right: 5px;
}

.text-animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: block;
    transition: opacity 0.5s ease-in-out;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .text-animation {
        font-size: 2.5rem;
    }
}

/* Animações para o texto */
@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px);
        opacity: 0;
    }
}

@keyframes rotateIn {
    0% {
        transform: rotateX(90deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: rotateX(0) scale(1);
        opacity: 1;
    }
}

/* Remover os estilos antigos que causavam problemas */
.changing-text, .static-text {
    display: none !important;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    overflow: visible;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

section, header, footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* Adicionar espaço extra no final da página para evitar problemas com o scroll */
.container:last-of-type {
    margin-bottom: 0;
    padding-bottom: 1px;
}

/* Ajustar scroll para Locomotive Scroll */
[data-scroll-container] {
    min-height: 100vh;
    overflow-x: hidden !important;
    overflow-y: auto;
}

.titulo-estatico {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-weight: normal;
}

/* Remover barras de rolagem indesejadas */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(25, 15, 45, 0.2);
    border-radius: 10px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Ocultar barras de rolagem de elementos que não precisam delas */
.solution-card, 
.carousel-container,
.carousel-row,
.metric,
.solutions-grid {
    overflow: hidden !important;
    scrollbar-width: none; /* Firefox */
}

.solution-card::-webkit-scrollbar,
.carousel-container::-webkit-scrollbar,
.carousel-row::-webkit-scrollbar,
.metric::-webkit-scrollbar,
.solutions-grid::-webkit-scrollbar {
    display: none;
}

/* Ajustes no conteúdo de textos para evitar overflow */
.solution-card, .metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.metric h2, 
.solution-card h3,
.footer-column h3 {
    overflow-wrap: break-word;
    word-break: normal;
    max-width: 100%;
}

/* Garantir que os ícones não causem overflow */
.solution-card .icon i,
.metric i {
    font-size: 1.8rem;
    max-width: 100%;
}

/* Forçar overflow: hidden para todos os elementos que poderiam ter problemas */
.container, 
.solution-card, 
.metric, 
.hero-content,
.integration,
.solutions,
.metrics,
.cta,
section {
    max-width: 100%;
    overflow-x: hidden;
}

/* Novo design para a página de contato */
.contact-hero {
    background: linear-gradient(120deg, var(--darker-bg) 0%, #2a0f5e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(145, 70, 255, 0.05)"/></svg>');
    background-size: 400px;
    opacity: 0.3;
    z-index: 0;
}

.contact-title {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 5px 20px rgba(145, 70, 255, 0.5);
}

.contact-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.contact-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    border-radius: 5px;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Layout da página de contato */
.contact-page {
    padding: 80px 0;
    background-color: rgba(20, 10, 40, 0.7);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

/* Coluna de Informações */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.info-card {
    background: rgba(25, 15, 45, 0.7);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 15px 30px rgba(145, 70, 255, 0.2);
    transform: translateY(-5px);
    border-color: rgba(145, 70, 255, 0.2);
}

.info-card h3 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card h3 i {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(145, 70, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--primary-color);
}

.social-box {
    background: rgba(25, 15, 45, 0.7);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.social-icons-contact {
    display: flex;
    gap: 15px;
}

.social-icons-contact a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons-contact a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(145, 70, 255, 0.3);
}

.contact-image {
    text-align: center;
    margin-top: 30px;
}

.contact-robot {
    max-width: 250px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(145, 70, 255, 0.5));
    animation: float 4s ease-in-out infinite;
}

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

/* Coluna do Formulário */
.contact-form-column {
    background: rgba(25, 15, 45, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.form-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-new .form-group {
    margin-bottom: 0;
}

.contact-form-new label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 1;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(15, 7, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(145, 70, 255, 0.2);
    outline: none;
}

.input-with-icon textarea {
    resize: none;
    height: 150px;
}

.textarea-container {
    align-items: flex-start;
}

.textarea-container i {
    margin-top: 15px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.form-privacy input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background: rgba(15, 7, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
}

.form-privacy label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    text-decoration: underline;
}

.btn-contact-submit {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.4);
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(145, 70, 255, 0.6);
}

.btn-contact-submit:hover::before {
    left: 100%;
}

/* Seção de FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    position: relative;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: rgba(25, 15, 45, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(145, 70, 255, 0.2);
    border-color: rgba(145, 70, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-column {
        position: static;
        top: 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.8rem;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-form-column {
        padding: 30px 20px;
    }
    
    .contact-hero {
        padding: 70px 0;
    }
}

/* Seção de Integrações */
.integration {
    padding: 80px 0;
    background-color: rgba(8, 11, 25, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.integration h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Carrossel Infinito */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    padding: 0;
}

/* Gradientes para ocultar o início e fim do carrossel */
.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 11, 25, 0.9) 0%, rgba(8, 11, 25, 0) 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(8, 11, 25, 0.9) 0%, rgba(8, 11, 25, 0) 100%);
}

.carousel-row {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: fit-content;
}

.carousel-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    margin: 0 20px;
    padding: 20px;
    background-color: rgba(22, 27, 53, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.05), rgba(145, 70, 255, 0.2));
    border-radius: 10px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.3);
}

.carousel-item:hover::before {
    opacity: 1;
}

.carousel-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.carousel-item p {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.carousel-item:hover p {
    color: var(--highlight-color);
}

/* Estilo para o texto com efeito de brilho */
.glow-text {
    font-size: 5rem;
    color: #ffffff;
    text-shadow: 0 0 10px #9146FF, 0 0 20px #9146FF, 0 0 30px #9146FF, 0 0 40px #9146FF;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    animation: pulse 2s infinite alternate;
}

/* Destaque roxo para "soluções personalizadas" */
.highlight {
    color: #9146FF;
    font-weight: 700;
    position: relative;
}

/* Animações para o carrossel de logos */
@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Spline Animation */
.spline-animation {
    display: none;
}

/* Container do Spline */
.spline-container {
    position: fixed;
    width: 100%;
    height: calc(100vh + 40px);
    top: -40px;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

#canvas3d {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(0.85);
    transform-origin: center center;
}

/* Ajuste responsivo para o título das métricas */
@media (max-width: 768px) {
    .metrics-title {
        font-size: 2rem;
        padding: 0 20px;
    }
}

/* Newsletter no Rodapé */
.newsletter-form {
    margin: 20px 0;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
}

.newsletter-text {
    font-size: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.newsletter-signup {
    flex: 1;
    max-width: 550px;
    margin-left: auto;
}

.newsletter-signup .input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 6px 12px;
    color: var(--text-color);
    font-size: 0.95rem;
    min-width: 280px;
}

.newsletter-signup input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-signup input[type="email"]:focus {
    outline: none;
}

.newsletter-signup button {
    background: var(--primary-color);
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.9rem;
}

.newsletter-signup button:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
}

.newsletter-signup button i {
    font-size: 0.9rem;
}

/* Mensagem de sucesso da Newsletter */
.success-message {
    color: var(--text-color);
    text-align: center;
    width: 100%;
    font-size: 1rem;
    padding: 6px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ajuste responsivo para o formulário de newsletter */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
        min-height: auto;
    }

    .newsletter-signup {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .newsletter-signup .input-group {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-signup input[type="email"] {
        width: 100%;
        text-align: center;
        padding: 8px;
        min-width: auto;
    }

    .newsletter-signup button {
        width: 100%;
        justify-content: center;
        padding: 8px;
    }
}

/* Seção de Demonstração de Eficiência */
.efficiency-demo {
    margin: 60px auto;
    max-width: 800px;
    padding: 0 20px;
}

.efficiency-demo .container {
    position: relative;
    width: 100%;
    height: 360px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    /* Removido o background para mostrar o fundo original */
}

.efficiency-demo .grid {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

.efficiency-demo .piece {
    width: 100px;
    height: 100px;
    position: absolute;
    visibility: hidden;
    border-radius: 6px;
    background: #fff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.efficiency-demo .btn-start {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 16px 32px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: background .2s, transform .2s;
}

.efficiency-demo .btn-start:hover {
    background: var(--highlight-color);
    transform: translate(-50%,-50%) scale(1.05);
}

.efficiency-demo .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 20px;
    backdrop-filter: blur(6px);
    z-index: 10;
    pointer-events: auto;
}

.efficiency-demo .overlay.hidden {
    display: none !important;
}

.efficiency-demo .overlay p {
    margin-bottom: 20px;
    line-height: 1.4;
}

.efficiency-demo #efficiency {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10%);
    background: rgba(0,0,0,0.5);
    z-index: 20;
    pointer-events: none;
}

.efficiency-demo #effValue {
    font-family: 'Courier New', monospace;
    font-size: 64px;
    font-weight: bold;
    color: #fff;
    transition: color .3s;
}

.efficiency-demo .btn-rect {
    margin: 10px;
    padding: 12px 28px;
    background: #550099;
    color: #fff;
    border: 2px solid #9A2EFF;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    animation: glowBtn 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes glowBtn {
    0% { box-shadow: 0 0 5px #9A2EFF; }
    50% { box-shadow: 0 0 20px #E59AFF; }
    100% { box-shadow: 0 0 5px #9A2EFF; }
}

.efficiency-demo .btn-restart {
    font-size: 24px;
}

/* Responsividade para a seção de eficiência */
@media (max-width: 768px) {
    .efficiency-demo {
        margin: 40px auto;
        padding: 0 15px;
    }

    .efficiency-demo .container {
        height: 300px;
    }

    .efficiency-demo .grid {
        height: 240px;
    }

    .efficiency-demo .piece {
        width: 80px;
        height: 80px;
    }

    .efficiency-demo #effValue {
        font-size: 48px;
    }

    .efficiency-demo .btn-start {
        padding: 12px 24px;
        font-size: 16px;
    }
}