/* Accenture-Style Marketing Cooperado Layout */

:root {
    --primary-color: #ffc107;
    --primary-dark: #e0a800;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --accenture-purple: #ffc107;
    --accenture-dark: #1a1a1a;
    --accenture-light: #f4f4f4;
    --gradient-primary: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-warning: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Accenture-Style Body and Typography */
.accenture-style {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
}

/* Top Bar Styling */
.top-bar {
    font-size: 0.85rem;
    background-color: var(--accenture-dark) !important;
}

.top-bar a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--accenture-purple) !important;
}

/* Navigation Styling */
.navbar {
    padding: 1rem 0;
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-logo {
    height: 45px;
    width: auto;
    max-width: 180px;
}

.navbar-brand {
    margin-right: 3rem;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--accenture-purple) !important;
    background-color: rgba(255, 193, 7, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--accenture-purple) !important;
    background-color: rgba(255, 193, 7, 0.1);
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 0.5rem;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--accenture-purple);
}

/* Button Styling */
.btn-primary {
    background-color: var(--accenture-purple);
    border-color: var(--accenture-purple);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-outline-primary {
    color: var(--accenture-purple);
    border-color: var(--accenture-purple);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accenture-purple);
    border-color: var(--accenture-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Footer Styling */
footer {
    background-color: var(--accenture-dark) !important;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.contact-info i {
    color: var(--accenture-purple);
    width: 20px;
}

.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accenture-purple) !important;
}

.newsletter .input-group .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 0.375rem 0 0 0.375rem;
}

.newsletter .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter .input-group .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accenture-purple);
    box-shadow: none;
    color: #ffffff;
}

.newsletter .btn {
    border-radius: 0 0.375rem 0.375rem 0;
}

/* Scription-style Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.navbar-brand {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

/* Hero Section Optimization */
.hero-section {
    background: linear-gradient(135deg, #6c6bcf 0%, #5a59b8 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Enhanced Hero Section */
.hero-section-optimized {
    background: linear-gradient(135deg, #6c6bcf 0%, #5a59b8 50%, #4a4a9a 100%);
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    box-shadow: 0 20px 60px rgba(108, 107, 207, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, white 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, white 2px, transparent 2px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.hero-bg-pattern::after {
    content: "Sistema 360º • Marketing Integrado • Vendas Estratégicas • Conexão Total • Resultados Multiplicados • Marketing + Vendas + Estratégia • Sistema Rede • Plataforma Completa • Soluções Integradas";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    width: 200%;
    animation: scrollText 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scrollText {
    0% { transform: translate(-50%, -50%) translateX(100%); }
    100% { transform: translate(-50%, -50%) translateX(-100%); }
}

/* Enhanced Background Pattern */
.hero-bg-pattern-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    animation: patternMoveEnhanced 25s linear infinite;
}

/* Glow Effect */
.hero-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Enhanced Animations */
@keyframes patternMoveEnhanced {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 40px) rotate(240deg); }
    100% { transform: translate(60px, 60px) rotate(360deg); }
}

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

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Hero Content Animation */
.hero-content-animated {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title-shadow {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Enhanced Buttons */
.btn-hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::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;
}

.btn-glow:hover::before {
    left: 100%;
}

.hero-buttons {
    animation: slideInLeft 1s ease-out 0.6s both;
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-60 {
    min-height: 60vh;
}

/* Performance Optimizations */
.hero-section-optimized {
    will-change: transform;
    transform: translateZ(0);
}

.hero-bg-pattern-enhanced,
.hero-glow-effect {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .hero-section-optimized {
        min-height: 70vh;
        padding: 3rem 0;
    }
    
    .min-vh-60 {
        min-height: 50vh;
    }
    
    .hero-content-animated h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section-optimized {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-content-animated {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section-optimized {
        border-radius: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-content-animated h1 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    height: 100%;
}

.floating-card {
    position: absolute;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    min-width: 160px;
    z-index: 10;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 35%;
    right: 8%;
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 35%;
    left: 15%;
    animation: float 3s ease-in-out infinite 2s;
}

.card-4 {
    top: 80%;
    right: 35%;
    animation: float 3s ease-in-out infinite 3s;
}

.card-5 {
    top: 2%;
    right: 20%;
    animation: float 3s ease-in-out infinite 4s;
}

.card-6 {
    bottom: 10%;
    right: 1%;
    animation: float 3s ease-in-out infinite 5s;
}

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

.icon-sm {
    width: 12px;
    height: 12px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.bg-primary-gradient {
    background: var(--gradient-primary);
}

.bg-success-gradient {
    background: var(--gradient-success);
}

.bg-warning-gradient {
    background: var(--gradient-warning);
}

.feature-benefits {
    margin-top: 1rem;
}

.benefit-item {
    color: #28a745;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    font-size: 1.2rem;
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.testimonial-author strong {
    color: #333;
}

/* CTA Patterns */
.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(45deg, transparent 40%, white 40%, white 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, white 40%, white 60%, transparent 60%);
    background-size: 20px 20px;
    animation: patternSlide 10s linear infinite;
}

@keyframes patternSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.bg-gradient {
    background: linear-gradient(135deg, #6c6bcf 0%, #5a59b8 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #6c6bcf 0%, #5a59b8 100%);
}

/* Utility Classes */
.bg-primary-subtle {
    background-color: rgba(102, 126, 234, 0.1) !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.lh-1 {
    line-height: 1 !important;
}

/* Custom button styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* Card hover effects */
.card {
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Custom spacing */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Form styling */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Custom icon circles */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Customer Cards */
.customer-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.customer-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Statistics Cards */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Navigation styling */
.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Custom navbar background */
.navbar.bg-primary {
    background-color: #ebf0f6 !important;
}

/* Custom navbar text color */
.navbar.bg-primary .navbar-brand,
.navbar.bg-primary .nav-link {
    color: #000000 !important;
}

.navbar.bg-primary .nav-link:hover {
    color: #333333 !important;
}

/* Footer styling */
footer {
    margin-top: auto;
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

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

.btn {
    will-change: transform;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .hero-stats {
        margin-bottom: 2rem !important;
    }

    .hero-visual {
        height: 350px;
        margin-top: 2rem;
    }

    .floating-card {
        position: absolute !important;
        min-width: 120px !important;
        font-size: 0.8rem;
    }

    .card-1 {
        top: 5%;
        left: 5%;
    }

    .card-2 {
        top: 25%;
        right: 5%;
    }

    .card-3 {
        bottom: 40%;
        left: 10%;
    }

    .card-4 {
        top: 60%;
        right: 15%;
    }

    .card-5 {
        top: 45%;
        left: 45%;
    }

    .card-6 {
        bottom: 15%;
        right: 10%;
    }

    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .py-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 60vh;
    }

    .display-3 {
        font-size: 2rem;
    }

    .hero-stats .col-4 {
        margin-bottom: 1rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }
}

/* High-DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .feature-icon {
        filter: contrast(1.1);
    }

    .hero-bg-pattern {
        background-size: 25px 25px;
    }
}

/* Print Styles */
@media print {
    .hero-bg-pattern,
    .cta-pattern,
    .floating-cards {
        display: none !important;
    }

    .hero-section {
        background: #333 !important;
        color: white !important;
        min-height: auto !important;
        padding: 2rem 0 !important;
    }
}

/* Workflow Infographic Styles */
.workflow-infographic {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-step {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.step-title {
    font-size: 0.9rem;
    line-height: 1.2;
}

.step-desc {
    font-size: 0.75rem;
    line-height: 1.1;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Animation for icons */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-body {
    animation: fadeInUp 0.6s ease-out;
}

.workflow-infographic {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Custom colors */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* Text utilities */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

/* Shadow utilities */
.shadow-sm-custom {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.shadow-custom {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg-custom {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

/* Social Proof */
<section class="py-6" style="background-color: #6c6bcf;">
    <div class="container">
        <div class="row justify-content-center text-center mb-5">
            <div class="col-lg-12 mx">
                <h2 class="h1 fw-bold mb-4 text-white">Empresas que Confiam em Nós</h2>
                <p class="lead text-white-75">Mais de 250 empresas já transformaram seus resultados</p>
            </div>
        </div>
    
        
        
        
                
                
                
            
        
    
</section>

<section class="py-6 bg-light">
    <div class="container">
        <div class="row">
            <div class="col-lg-6">
                
                
                
                
                
                
            </div>
        </div>
    </div>
</section>

<section class="py-6 bg-light">
    <div class="container">
        <div class="row justify-content-center text-center mb-5">
            <div class="col-lg-12 mx">
                
                
            </div>
        </div>
    </div>
</section>

<footer>
    
    
    
    

    
        
            
            
            
        
    
</footer>