/* ============================================
   RESET E VARIÁVEIS GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #7900E5;
    --color-secondary: #F9C214;
    --color-accent: #EF107E;
    --color-dark: #0A0E27;
    --color-darker: #050812;
    --color-light: #F5F5F5;
    --color-white: #FFFFFF;
    --color-gray: #888888;
    --color-gray-light: #E5E5E5;
    --color-border: #2A2A3E;
    --color-card-dark: #1A1A2E;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: #D0D0D0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

/* ============================================
   CONTAINER E LAYOUT
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-tight-top {
    padding-top: 3rem;
}

/* Seções com fundo escuro */
.section-dark {
    background-color: var(--color-dark);
    color: #D0D0D0;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

/* Seções com fundo claro */
.section-light {
    background-color: var(--color-light);
    color: #333333;
}

.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--color-dark);
}

.section-light p {
    color: #555555;
}

.section-light .opacity-75 {
    color: #777777;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.navbar-logo img {
    height: 50px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.navbar-menu a {
    color: var(--color-light);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.navbar-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    min-width: 220px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.navbar-dropdown:hover .dropdown-menu,
.navbar-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: rgba(121, 0, 229, 0.1);
    color: var(--color-secondary);
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .navbar-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0;
        border: none;
        border-top: 1px solid var(--color-border);
        border-radius: 0;
        background-color: rgba(10, 14, 39, 0.5);
        box-shadow: none;
    }
    
    .navbar-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding-left: 2rem;
    }
}

.navbar-btn {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    color: var(--color-dark);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(249, 194, 20, 0.3);
}

.navbar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 194, 20, 0.4);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    background-image: url('imagens/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Core Web Vitals - Prevent CLS */
img {
    max-width: 100%;
    height: auto;
}

img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(121, 0, 229, 0.1);
    border: 1px solid var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(
        90deg,
        #ff6a00 0%,
        #ff3c7d 30%,
        #8a2be2 55%,
        #00bfff 70%,
        #00bfff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: #B0B0B0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #9D00FF 0%, #FF3C7D 100%);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 20px rgba(157, 0, 255, 0.35);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(157, 0, 255, 0.45);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CARDS E CONTAINERS
   ============================================ */
.card {
    background: rgba(42, 42, 62, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 30px rgba(249, 194, 20, 0.1);
    transform: translateY(-5px);
}

/* Cards em seções claras - Design Moderno */
.section-light .card {
    background: linear-gradient(135deg, #1A1A2E 0%, #2A2A3E 100%);
    border: 2px solid rgba(121, 0, 229, 0.2);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.section-light .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-light .card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(121, 0, 229, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.section-light .card:hover::before {
    transform: scaleX(1);
}

.section-light .card:hover::after {
    opacity: 1;
}

.section-light .card h3,
.section-light .card h4 {
    color: var(--color-white);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.section-light .card:hover h3,
.section-light .card:hover h4 {
    color: var(--color-white);
}

.section-light .card p {
    color: #B0B0B0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.section-light .card:hover p {
    color: #D0D0D0;
}

.section-light .card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 16px 48px rgba(121, 0, 229, 0.3);
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, #1F1F3E 0%, #2F2F4E 100%);
}

/* Botão moderno nos cards */
.card-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    border: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    box-shadow: 0 4px 15px rgba(121, 0, 229, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card-link-btn::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: left 0.5s ease;
}

.card-link-btn:hover::before {
    left: 100%;
}

.card-link-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(121, 0, 229, 0.5);
    background: linear-gradient(135deg, #8A00FF 0%, #FF1C8D 100%);
}

.card-link-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.section-light .card-link-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    box-shadow: 0 4px 15px rgba(121, 0, 229, 0.3);
}

.section-light .card-link-btn:hover {
    background: linear-gradient(135deg, #8A00FF 0%, #FF1C8D 100%);
    box-shadow: 0 8px 25px rgba(121, 0, 229, 0.5);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-icon-professional {
    width: 70px;
    height: 70px;
    background: #FEFCF9;
    border: 2px solid #000000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.card-icon-professional svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-primary);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon-professional {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(121, 0, 229, 0.3);
}

.service-card:hover .card-icon-professional svg {
    stroke: #FFFFFF;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #B0B0B0;
    margin-bottom: 1.5rem;
}

.section-light .about-content p {
    color: #555555;
}

.about-content-dark {
    background: var(--color-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.about-content-dark h2 {
    color: var(--color-white);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.about-content-dark p {
    color: var(--color-white);
    margin-bottom: 0;
}

.about-highlight {
    background: rgba(121, 0, 229, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.section-light .about-highlight {
    background: rgba(121, 0, 229, 0.15);
    color: var(--color-dark);
}

/* Workflow Container */
.workflow-container {
    background: rgba(121, 0, 229, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.workflow-container h3 {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 700;
}

.workflow-step {
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.workflow-step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-secondary), #FF6B35);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 1rem;
    vertical-align: top;
    flex-shrink: 0;
}

.workflow-step-content {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 48px);
}

.workflow-step-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.workflow-step-description {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .workflow-step-content {
        width: calc(100% - 48px);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #FEFCF9;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.section-dark .service-card {
    background: #FEFCF9;
    border: 2px solid #000000;
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-card p {
    color: #333333;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #A0A0A0;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-card {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    cursor: pointer;
    aspect-ratio: 9 / 16; /* Proporção vertical do Instagram Reel */
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(121, 0, 229, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-card:hover .video-play-button {
    background: rgba(239, 16, 126, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card.playing .video-play-button {
    opacity: 0;
    pointer-events: none;
}

.video-card blockquote {
    margin: 0;
    width: 100%;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.platform-card {
    background: rgba(42, 42, 62, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.section-light .platform-card {
    background: var(--color-card-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.platform-card:hover {
    border-color: var(--color-secondary);
    background: rgba(42, 42, 62, 0.9);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 194, 20, 0.15);
}

.section-light .platform-card:hover {
    background: rgba(26, 26, 46, 0.95);
}

.platform-card img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0.9);
    transition: var(--transition);
}

.platform-card:hover img {
    filter: brightness(1.2);
}

.platform-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-weight: 700;
}

.section-light .platform-card h4 {
    color: var(--color-white);
}

.platform-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.section-light .platform-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.result-card {
    background: linear-gradient(135deg, rgba(121, 0, 229, 0.1) 0%, rgba(239, 16, 126, 0.05) 100%);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.section-light .result-card {
    background: linear-gradient(135deg, rgba(121, 0, 229, 0.15) 0%, rgba(239, 16, 126, 0.1) 100%);
    border: 1px solid rgba(121, 0, 229, 0.2);
}

.result-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #B0B0B0;
    font-size: 1rem;
}

.section-light .result-label {
    color: #555555;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Carrossel de Testimonials estilo Trustindex */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
    will-change: transform;
}

.testimonials-carousel .testimonial-card {
    width: calc(35% - 1rem);
    min-width: calc(35% - 1rem);
    max-width: calc(35% - 1rem);
    flex-shrink: 0;
    margin: 0;
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .testimonials-carousel .testimonial-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-card-dark);
    border: 2px solid var(--color-border);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-card {
    background: rgba(42, 42, 62, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.25rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.section-light .testimonial-card {
    background: var(--color-card-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(249, 194, 20, 0.1);
}

.testimonial-text {
    color: #B0B0B0;
    margin-bottom: 0.75rem;
    font-style: italic;
    line-height: 1.5;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.875rem;
}

.section-light .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: bold;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-white);
    font-weight: 600;
}

.section-light .testimonial-info h4 {
    color: var(--color-white);
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--color-secondary);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: rgba(42, 42, 62, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.section-light .faq-item {
    background: var(--color-card-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: var(--color-secondary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
    background: rgba(42, 42, 62, 0.3);
}

.section-light .faq-question {
    background: rgba(26, 26, 46, 0.5);
}

.faq-question:hover {
    background: rgba(42, 42, 62, 0.6);
}

.section-light .faq-question:hover {
    background: rgba(26, 26, 46, 0.8);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(42, 42, 62, 0.2);
}

.section-light .faq-answer {
    background: rgba(26, 26, 46, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem;
    color: #B0B0B0;
    line-height: 1.8;
}

.section-light .faq-answer-content {
    color: #555555;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(121, 0, 229, 0.15) 0%, rgba(239, 16, 126, 0.1) 100%);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.section-light .cta {
    background: linear-gradient(135deg, rgba(121, 0, 229, 0.2) 0%, rgba(239, 16, 126, 0.15) 100%);
    border: 1px solid rgba(121, 0, 229, 0.2);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: #B0B0B0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-light .cta p {
    color: #555555;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-darker);
    border-top: 1px solid var(--color-border);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #B0B0B0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(121, 0, 229, 0.2);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-dark);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .navbar-menu {
        gap: 1.5rem;
    }

    .navbar-menu a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        height: 70px;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(10, 14, 39, 0.98);
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .navbar-menu.active {
        display: flex;
    }

    /* Ícone hambúrguer: 3 linhas horizontais empilhadas */
    .navbar-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }

    .navbar-btn {
        display: none;
    }

    .hero {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 3rem 1rem;
    }

    .services-grid,
    .platforms-grid,
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    .cta {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px;
        padding: 0 1rem;
    }

    .navbar-logo {
        gap: 0.5rem;
        font-size: 1.2rem;
    }

    .navbar-logo img {
        height: 40px;
        width: auto;
    }

    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    }

    .result-number {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 350px) {
    .navbar {
        height: 55px;
        padding: 0 0.75rem;
    }

    .navbar-logo {
        font-size: 1rem;
        gap: 0.4rem;
    }

    .navbar-logo img {
        height: 35px;
    }

    .hero {
        margin-top: 55px;
        padding: 2rem 0.75rem;
    }

    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .section {
        padding: 1.5rem 0.75rem;
    }

    .card {
        padding: 1rem;
    }

    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .result-number {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .faq-question {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .faq-answer-content {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.5; }
