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

:root {
    --primary-color: #1a56db;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --text-color: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 18px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo-img {
    height: 38px;
    width: auto;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* Hide mobile-only links in desktop */
.mobile-only {
    display: none;
}

/* Hero Section */
.hero {
    background: #0f0f1e;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

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

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #1a56db;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.cta-button:hover {
    background: #0f3d9e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even):not(.hero):not(.clients) {
    background: var(--bg-light);
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    text-align: center;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Problem Section */
.problem {
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.problem h3 {
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem ul {
    list-style: none;
    margin-top: 20px;
}

.problem li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.problem li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 24px;
}

.problem strong {
    color: #991b1b;
}

.problem-result {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #fca5a5;
    font-weight: 600;
    color: #991b1b;
}

/* Pillars Grid */
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

.pillar {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.pillar h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Tech Stack */
.tech-stack {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.tech-stack h3 {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-stack ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tech-stack li {
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.tech-stack strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

/* Client Logos */
.clients {
    text-align: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    margin: 60px 0 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.logo-placeholder {
    height: 80px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.logo-placeholder:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Profile Section */
.profile-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.profile-item h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.profile-item ul {
    list-style: none;
}

.profile-item li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.profile-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.profile-note {
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.profile-note strong {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.step ul {
    list-style: none;
}

.step li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.step li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Results */
/* Cases Carousel - Design Corporativo */
.results-carousel-container {
    position: relative;
    margin-top: 35px;
    padding: 0 80px;
    overflow: hidden;
}

.results-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 10px 0;
}

.result-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    width: calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-height: 420px;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.result-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.result-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

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

.result-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
    line-height: 1.6;
}

.result-card li:last-child {
    border-bottom: none;
}

.result-card strong {
    font-weight: 700;
    color: inherit;
}

.result-card li:last-child strong {
    color: #10b981;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-nav:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.carousel-nav:hover svg {
    stroke: var(--white);
}

.carousel-nav svg {
    stroke: var(--secondary-color);
    transition: stroke 0.3s ease;
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    border-radius: 16px;
    margin: 40px 0;
}

.cta-section h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h3 {
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.differentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.differential {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.differential strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 60px auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1e40af;
}

.lgpd-notice {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 18px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 20px;
}

.legal-highlight {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin: 30px 0;
}

.legal-highlight strong {
    color: #92400e;
}

/* Footer - Design Corporativo */
footer {
    background: #000000;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 35px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 15px;
    filter: invert(1) brightness(2);
}

.footer-section h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    opacity: 0.95;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    line-height: 1.6;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Estilo para ícones do footer */
.footer-section svg {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section a:hover svg {
    opacity: 1;
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Footer mobile - ESCONDER APENAS NO DESKTOP (> 768px) */
@media (min-width: 769px) {
    .footer-mobile {
        display: none;
    }
}

/* Footer mobile styles moved to mobile-base.css */

/* Page Navigation */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .logo-img {
        height: 40px;
        flex-shrink: 0;
    }

    header {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Carousel Mobile - 1 card visível */
    .results-carousel-container {
        padding: 0 50px;
    }

    .result-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .carousel-nav.prev {
        left: -10px;
    }

    .carousel-nav.next {
        right: -10px;
    }
}

/* Tablet - 2 cards visíveis */
@media (min-width: 769px) and (max-width: 1024px) {
    .result-card {
        width: calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .results-carousel-container {
        padding: 0 60px;
    }
}

/* Perfil de Cliente Ideal - Responsive */
@media (max-width: 768px) {
    /* Card unificado do Perfil */
    section .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Esconder divisores verticais em mobile */
    section .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] > div[style*="position: relative"] > div[style*="position: absolute"] {
        display: none !important;
    }

    /* Ajustar padding do card principal em mobile */
    section .container > div[style*="linear-gradient(135deg, #ffffff 0%, #f8fafc 100%)"] {
        padding: 35px 25px !important;
    }
}
    </style>
