/* ======= Base Styles ======= */
:root {
    /* Cores principais */
    --primary: #2a2d43;
    --secondary: #16171f;
    --accent: #5c5eff;
    --accent-dark: #4240b3;
    --accent-light: #7678ff;
    --text-light: #e6e7ff;
    --text-dark: #16171f;
    --gray-light: #f4f5fb;
    --gray-medium: #c0c2d8;
    --gray-dark: #6c6f8a;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #5c5eff 0%, #8067ff 50%, #b15dff 100%);
    --gradient-dark: linear-gradient(135deg, #2a2d43 0%, #16171f 100%);
    --gradient-accent: linear-gradient(135deg, #5c5eff 0%, #4240b3 100%);

    /* Sombras */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Bordas */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--secondary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-header p {
    font-size: 1.8rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

/* ======= Buttons ======= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 1rem;
    white-space: nowrap;
}

.btn i {
    font-size: 1.4rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md), 0 0 10px rgba(92, 94, 255, 0.5);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 15px rgba(92, 94, 255, 0.7);
}

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

.btn-secondary:hover {
    background-color: rgba(92, 94, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--gray-medium);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-block {
    width: 100%;
}

.pulse-btn {
    position: relative;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* ======= Header ======= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(22, 23, 31, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(22, 23, 31, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ======= Logo Personalizada ======= */
.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-symbol {
    position: relative;
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-inner {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm), 0 0 10px rgba(92, 94, 255, 0.3);
    transform: rotate(45deg);
    z-index: 1;
}

.logo-inner::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background-color: var(--secondary);
    border-radius: var(--border-radius-sm);
    z-index: 2;
}

.logo-inner::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    top: 32.5%;
    left: 32.5%;
    background: var(--gradient-primary);
    border-radius: 2px;
    z-index: 3;
}

.logo-orbit {
    position: absolute;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid transparent;
    border-radius: 50%;
    animation: rotate 8s linear infinite;
}

.logo-orbit::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-light);
    border-radius: 50%;
    top: -3px;
    left: calc(50% - 3px);
    box-shadow: 0 0 8px var(--accent-light);
    z-index: 10;
}

.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-light);
    opacity: 0;
    animation: twinkle 2s ease-in-out infinite;
}

.sparkle:nth-child(3) {
    top: 20%;
    left: 20%;
    animation-delay: 0.2s;
}

.sparkle:nth-child(4) {
    top: 20%;
    right: 20%;
    animation-delay: 0.7s;
}

.sparkle:nth-child(5) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1.1s;
}

.sparkle:nth-child(6) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.logo-text {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-light);
}

.logo-text .accent {
    color: var(--accent);
}

/* Adicione essas animações se não existirem no seu CSS */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Para garantir responsividade em telas menores */
@media (max-width: 768px) {
    .logo {
        gap: 0.8rem;
    }

    .logo-symbol {
        width: 3rem;
        height: 3rem;
    }

    .logo-inner {
        width: 2rem;
        height: 2rem;
    }

    .logo-orbit {
        width: 3rem;
        height: 3rem;
    }
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gray-medium);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    cursor: pointer;
}

/* ======= Hero Section ======= */
#hero {
    padding: 20rem 0 10rem;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(92, 94, 255, 0.1), transparent 40%);
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.4rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-content p {
    font-size: 1.8rem;
    color: var(--gray-medium);
    margin-bottom: 4rem;
    max-width: 540px;
}

.cta-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-container {
    display: none; /* Remove o container de código */
}

/* Novo elemento visual surreal */
.digital-universe {
    width: 100%;
    height: 400px;
    position: relative;
    background-color: rgba(42, 45, 67, 0.4);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(92, 94, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(92, 94, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.core {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(92, 94, 255, 0.6);
    animation: pulse 3s ease-in-out infinite;
    z-index: 10;
}

.core-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    line-height: 1.2;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(92, 94, 255, 0.3);
    border-radius: 50%;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    animation: rotate 15s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    margin-left: -150px;
    margin-top: -150px;
    animation: rotate 25s linear infinite reverse;
}

.orbit-3 {
    width: 380px;
    height: 380px;
    margin-left: -190px;
    margin-top: -190px;
    animation: rotate 35s linear infinite;
}

.planet {
    position: absolute;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(92, 94, 255, 0.5);
}

.planet-1 {
    width: 50px;
    height: 50px;
    top: 0;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

.planet-2 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 0;
    margin-right: -20px;
    margin-top: -20px;
}

.planet-3 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
}

.planet i {
    font-size: 2rem;
    color: var(--text-light);
}

.particle {
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(3px);
}

.particle-1 {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite, glow 4s ease-in-out infinite alternate;
}

.particle-2 {
    width: 15px;
    height: 15px;
    bottom: 30%;
    right: 20%;
    animation: float 12s ease-in-out infinite reverse, glow 6s ease-in-out infinite alternate;
}

.particle-3 {
    width: 8px;
    height: 8px;
    top: 40%;
    right: 30%;
    animation: float 7s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

.particle-4 {
    width: 12px;
    height: 12px;
    bottom: 20%;
    left: 25%;
    animation: float 9s ease-in-out infinite reverse, glow 5s ease-in-out infinite alternate;
}

.particle-5 {
    width: 6px;
    height: 6px;
    top: 15%;
    right: 15%;
    animation: float 6s ease-in-out infinite, glow 4s ease-in-out infinite alternate;
}

.particle-6 {
    width: 9px;
    height: 9px;
    bottom: 15%;
    left: 40%;
    animation: float 10s ease-in-out infinite reverse, glow 7s ease-in-out infinite alternate;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(10px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(15px);
    }
    75% {
        transform: translateY(-10px) translateX(5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.digital-universe .star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.5);
    }
}

.shape-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(92, 94, 255, 0.2), rgba(177, 93, 255, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(30px);
    z-index: 1;
    animation: blob-animation 15s linear infinite alternate;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shape-blob-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(177, 93, 255, 0.15), rgba(92, 94, 255, 0.1));
    border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
    filter: blur(30px);
    z-index: 1;
    animation: blob-animation-2 18s linear infinite alternate;
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
}

@keyframes blob-animation {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes blob-animation-2 {
    0% {
        border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
    }
    50% {
        border-radius: 30% 70% 50% 50% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
    }
}

.hero-clients {
    margin-top: 8rem;
    border-top: 1px solid rgba(108, 111, 138, 0.3);
    padding-top: 4rem;
}

.hero-clients p {
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

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

.client-logo {
    font-size: 1.6rem;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.client-logo i {
    font-size: 2rem;
}

.client-logo:hover {
    color: var(--gray-light);
    transform: translateY(-3px);
}

/* ======= Soluções Section ======= */
#solucoes {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

#solucoes::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(92, 94, 255, 0.05), transparent 60%);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.card {
    background-color: rgba(22, 23, 31, 0.5);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 111, 138, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 8px 20px rgba(92, 94, 255, 0.15);
    border-color: rgba(92, 94, 255, 0.2);
}

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

.card-icon {
    width: 6.4rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-circle);
    background: linear-gradient(135deg, rgba(92, 94, 255, 0.1), rgba(66, 64, 179, 0.05));
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
    color: var(--accent);
}

.card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    color: var(--text-light);
}

.card p {
    color: var(--gray-medium);
    margin-top: auto;
}

/* ======= Como Funciona Section ======= */
#como-funciona {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

#como-funciona::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--primary), transparent);
    z-index: 1;
}

#como-funciona .container {
    position: relative;
    z-index: 2;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2.4rem;
    align-items: flex-start;
    padding: 3rem;
    background-color: rgba(42, 45, 67, 0.5);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(108, 111, 138, 0.1);
    position: relative;
}

.step:hover {
    background-color: rgba(42, 45, 67, 0.7);
    transform: translateX(8px);
    border-color: rgba(92, 94, 255, 0.2);
}

.step::after {
    content: '';
    position: absolute;
    bottom: -3.5rem;
    left: 3rem;
    width: 2px;
    height: 3.5rem;
    background: linear-gradient(to bottom, var(--accent), transparent);
    display: none;
}

.step:not(:last-child)::after {
    display: block;
}

.step-number {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.step-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.step-content p {
    color: var(--gray-medium);
}

.cta-center {
    text-align: center;
    margin-top: 6rem;
}

/* ======= Benefícios Section ======= */
#beneficios {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.benefits-container {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.benefits-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
}

.tech-icon {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(22, 23, 31, 0.6);
    border-radius: var(--border-radius-lg);
    font-size: 4rem;
    color: var(--accent);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(108, 111, 138, 0.2);
}

.tech-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg), 0 0 15px rgba(92, 94, 255, 0.3);
    color: var(--text-light);
    border-color: var(--accent);
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(92, 94, 255, 0.1), rgba(66, 64, 179, 0.05));
    border-radius: var(--border-radius-circle);
    font-size: 2rem;
    color: var(--accent);
}

.benefit-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-content p {
    color: var(--gray-medium);
}

/* ======= Depoimentos Section ======= */
#depoimentos {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

#depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgba(92, 94, 255, 0.05), transparent 60%);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    flex-direction: column;
    gap: 3rem;
    background-color: rgba(42, 45, 67, 0.5);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    border: 1px solid rgba(108, 111, 138, 0.1);
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(50px);
}

.testimonial.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: -4rem;
    left: -2rem;
}

.testimonial-content p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--gray-light);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(92, 94, 255, 0.1);
    font-size: 3rem;
    color: var(--accent);
}

.author-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 1.4rem;
    color: var(--gray-medium);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: var(--border-radius-circle);
    background-color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

.prev-testimonial,
.next-testimonial {
    background-color: transparent;
    border: none;
    color: var(--gray-medium);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--accent);
    transform: scale(1.2);
}

/* ======= FAQ Section ======= */
#faq {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

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

.accordion-item {
    margin-bottom: 2rem;
    border-radius: var(--border-radius-lg);
    background-color: rgba(22, 23, 31, 0.6);
    overflow: hidden;
    border: 1px solid rgba(108, 111, 138, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(92, 94, 255, 0.2);
}

.accordion-header {
    padding: 2rem 3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.accordion-icon {
    font-size: 1.6rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 3rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 3rem 2rem;
    max-height: 500px;
}

.accordion-content p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* ======= Form Section ======= */
#form {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

#form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(92, 94, 255, 0.08), transparent 50%);
}

.form-container {
    display: flex;
    align-items: stretch;
    gap: 6rem;
    background-color: rgba(42, 45, 67, 0.5);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(108, 111, 138, 0.2);
}

.form-content {
    flex: 1;
    padding: 6rem;
}

.form-content h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.form-content p {
    font-size: 1.6rem;
    color: var(--gray-medium);
    margin-bottom: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 1.4rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.4rem 1.6rem;
    background-color: rgba(22, 23, 31, 0.5);
    border: 1px solid rgba(108, 111, 138, 0.2);
    border-radius: var(--border-radius-md);
    color: var(--text-light);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(92, 94, 255, 0.2);
}

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

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    font-size: 1.4rem;
    color: var(--gray-medium);
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: underline;
}

.form-checkbox a:hover {
    text-decoration: none;
}

.form-image {
    flex: 1;
    position: relative;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.success-message {
    background-color: rgba(22, 23, 31, 0.8);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    display: none;
}

.success-icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.success-message h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.success-message p {
    color: var(--gray-medium);
}

/* ======= CTA Section ======= */
#cta {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(92, 94, 255, 0.08), transparent 60%);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 6rem;
    background-color: rgba(22, 23, 31, 0.6);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(108, 111, 138, 0.2);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-container p {
    font-size: 1.8rem;
    color: var(--gray-medium);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-feature i {
    color: var(--accent);
}

.cta-feature span {
    font-size: 1.6rem;
    color: var(--gray-light);
}

/* ======= Footer ======= */
footer {
    background-color: var(--secondary);
    padding: 8rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-dark), transparent);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 6rem;
    text-align: center;
}

.footer-logo {
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo span {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-light);
}

.footer-logo .accent {
    color: var(--accent);
}

.footer-logo p {
    font-size: 1.6rem;
    color: var(--gray-medium);
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-links a {
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 45, 67, 0.5);
    border-radius: var(--border-radius-circle);
    font-size: 2rem;
    color: var(--gray-medium);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(108, 111, 138, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
    color: var(--gray-dark);
}

/* ======= Responsividade ======= */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }

    #hero .container {
        flex-direction: column;
    }

    .benefits-container {
        flex-direction: column;
    }

    .form-container {
        flex-direction: column;
    }

    .form-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary);
        padding: 2rem;
        flex-direction: column;
        border-bottom: 1px solid rgba(108, 111, 138, 0.1);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 4.2rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
    }

    .client-logos {
        gap: 3rem;
    }

    .testimonial {
        padding: 3rem;
    }

    .form-content {
        padding: 4rem 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 4rem;
    }

    .footer-logo {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }

    .hero-content h1 {
        font-size: 3.6rem;
    }

    .section-header h2 {
        font-size: 3.6rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .cta-container {
        padding: 4rem 2rem;
    }

    .cta-container h2 {
        font-size: 3.2rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-links {
        gap: 4rem;
    }

    .footer-links-column {
        min-width: 100%;
    }
}

/* ======= Animações ======= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}