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

:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --accent-purple: #8B5CF6;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    --gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    --border-color: #2A2A2A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.btn-primary-nav {
    background: var(--gradient);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    padding: 2rem;
    transition: right 0.3s;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 3rem;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.philosophy-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 1.4rem !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    margin-top: 2rem !important;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}

.tool-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.tool-card:hover .tool-logo {
    filter: brightness(1.1);
}

.tool-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.module-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.module-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.audience-card:hover {
    background: var(--gradient);
    transform: scale(1.05);
}

/* Project Info */
.project-info {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.project-highlight {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    text-align: center;
}

.project-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.project-steps {
    margin-top: 3rem;
}

.project-steps h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-steps ol {
    background: var(--bg-card);
    padding: 2rem 2rem 2rem 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.project-steps li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Project Final Section */
.project-final {
    max-width: 900px;
    margin: 0 auto;
}

.project-workflow {
    margin-top: 4rem;
    padding: 3rem;
    /* Usamos um gradiente de fundo bem sutil, como na seção CTA */
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 20px;
    border: 1px solid var(--border-color);
    /* Adiciona um brilho sutil na borda para destacar */
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-left: 1px solid rgba(139, 92, 246, 0.3);
    /* Sombra para dar profundidade, como nos outros cards */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Efeito hover para combinar com os .tool-card */
.project-workflow:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.project-workflow h3 {
    font-size: 1.8rem; /* Aumentei um pouco para mais impacto */
    text-align: center;
    margin-bottom: 3rem;
    /* A linha 'color: var(--accent-cyan);' FOI REMOVIDA */
    /* Agora o estilo virá do <span class="gradient-text"> */
}

/* New clean workflow design with vertical layout and numbered badges */
.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0;
    transition: all 0.3s;
}

.workflow-step:hover {
    padding-left: 1rem;
}

.workflow-step:hover .workflow-badge {
    transform: scale(1.15);
    background: var(--gradient);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.workflow-badge {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-purple);
    flex-shrink: 0;
    transition: all 0.3s;
}

.workflow-step span {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.workflow-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-cyan));
    margin-left: 21px;
    opacity: 0.5;
}

/* Remove old workflow styles */
.workflow-list,
.workflow-item,
.workflow-arrow {
    display: none;
}

/* Remove old project styles */
.project-info,
.large-text,
.project-highlight,
.project-steps {
    display: none;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-purple);
}

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

.faq-question:hover {
    color: var(--accent-purple);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p,
.faq-answer ul {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul {
    list-style: none;
    margin-top: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Flowchart */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    gap: 0;
    overflow-x: auto;
    padding: 2rem 0;
}

.chevron-step {
    position: relative;
    min-width: 180px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    margin-left: -30px;
}

.chevron-step:first-child {
    margin-left: 0;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
}

.chevron-step:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
}

.chevron-step:nth-child(2) {
    background: linear-gradient(135deg, #06B6D4, #0EA5E9);
}

.chevron-step:nth-child(3) {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.chevron-step:nth-child(4) {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.chevron-step:nth-child(5) {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.chevron-step:nth-child(6) {
    background: linear-gradient(135deg, #EF4444, #F87171);
}

.chevron-content {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.step-badge {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 0.8rem;
    border: 2px solid white;
}

.chevron-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: white;
}

.chevron-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Remove old styles */
.flowchart,
.flow-item,
.flow-circle,
.flow-number,
.flow-arrow {
    display: none;
}

/* Audience Section */
.target-audience {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.check-item:last-child {
    border-bottom: none;
}

.check-item:hover {
    padding-left: 1rem;
}

.check-item:hover .check-icon {
    transform: scale(1.2);
    color: var(--accent-cyan);
}

.check-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-purple);
    flex-shrink: 0;
    transition: all 0.3s;
}

.check-item span {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.check-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Remove old styles */
.audience-wrapper,
.audience-intro,
.audience-list,
.audience-item,
.audience-icon,
.audience-grid,
.audience-card {
    display: none;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

/* Fixed footer grid layout */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-section p,
.footer-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu,
    .btn-primary-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: 90vh;
    }

    .section {
        padding: 4rem 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tools-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* Updated responsive layout for new chevron process */
    .process-flow {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .chevron-step {
        min-width: 100%;
        height: 120px;
        margin-left: 0;
        clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 50%, 100% 100%, 0 100%);
    }

    .chevron-step:first-child {
        clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 50%, 100% 100%, 0 100%);
    }

    /* Updated responsive layout for audience check list */
    .target-audience {
        padding: 0 1rem;
    }

    .check-item {
        gap: 1rem;
        padding: 1.2rem 0;
    }

    .check-icon {
        width: 28px;
        height: 28px;
    }

    .check-item span {
        font-size: 1.05rem;
    }

    .workflow-step {
        gap: 1rem;
        padding: 1rem 0;
    }

    .workflow-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .workflow-step span {
        font-size: 1.05rem;
    }

    .workflow-connector {
        margin-left: 19px;
        height: 15px;
    }

    .workflow-list {
        flex-direction: column;
        align-items: stretch;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

    .project-workflow {
        padding: 2rem 1.5rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.section-kicker {
  text-align:center;
  margin-top: .75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
}
