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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
    --primary-orange: #F39200;
    --primary-purple: #2D1B4E;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2D1B4E;
    --text-gray: #6C757D;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo {
    font-size: 28px;
    font-weight: bold;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    filter: brightness(0) invert(1); /* Torna a logo branca no footer */
}

.logo-e3 {
    color: var(--primary-orange);
}

.logo-contabil {
    color: var(--primary-purple);
}

.header-cta {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #1a0f30 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('assets/bghero.png') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.badge {
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #d97e00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243,146,0,0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-purple);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: var(--primary-purple);
    margin-bottom: 60px;
}

.section-title-compact {
    text-align: center;
    font-size: 36px;
    color: var(--primary-purple);
    margin-bottom: 50px;
    line-height: 1.2;
}

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

/* Problems Grid - 5 cards in one row */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1400px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.problem-card {
    padding: 25px 15px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-orange);
    transition: all 0.3s ease;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-card:hover .problem-icon svg {
    stroke: #d97e00;
    transform: scale(1.1);
}

.problem-card h3 {
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.problem-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.4;
}

.benefit-card {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-orange);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary-purple);
    margin-bottom: 10px;
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-icon-new {
    width: 60px;
    height: 60px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 5px;
}

.service-icon-new svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-orange);
    transition: all 0.3s ease;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon-new svg {
    stroke: #d97e00;
    transform: scale(1.1) rotate(5deg);
}

/* Check icons for solutions section */
.service-number:has-text("✅") {
    background: transparent;
    color: var(--primary-orange);
    font-size: 30px;
}

.service-card h3 {
    color: var(--primary-purple);
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Journey Section */
.journey {
    padding: 80px 0;
    background: var(--white);
}

.journey-steps {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--primary-orange);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.step h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d97e00 100%);
    color: var(--white);
    text-align: center;
}

.social-proof h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.experience-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.experience-subtitle {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.5;
}

.social-proof p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.audience-item {
    background: var(--light-bg);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

.audience-item:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: scale(1.05);
}

.audience-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: var(--light-bg);
}

.workflow-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.workflow-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.workflow-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.workflow-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.workflow-text {
    color: var(--text-dark);
    font-size: 18px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #1a0f30 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.final-cta .cta-buttons {
    justify-content: center;
}

/* Footer */
footer {
    background: var(--primary-purple);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title-compact {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .hero {
        padding: 60px 0;
    }

    .header-cta {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .journey-steps {
        flex-direction: column;
    }

    .step::after {
        display: none;
    }

    .experience-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .experience-subtitle {
        font-size: 18px;
        line-height: 1.4;
        padding: 0 10px;
    }

    .social-proof h2 {
        font-size: 32px;
    }

    .problem-card {
        padding: 20px;
    }
}