/* Styles extracted automatically */

/* From app/views/partials/header.php */
:root {
            --primary-blue: #1e40af;
            --secondary-blue: #3b82f6;
            --accent-orange: #f59e0b;
            --dark-blue: #1e3a8a;
            --light-gray: #f8fafc;
            --medium-gray: #64748b;
            --dark-gray: #1e293b;
            --white: #ffffff;
            --success-green: #10b981;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-gray);
            color: var(--dark-gray);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Logo Sebastião A.Roberto */
        .sisclientes-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: #333;
            letter-spacing: -0.8px;
        }

        .logo-text .si {
            color: #2196F3;
        }

        .logo-text .s-middle {
            color: #333;
        }

        .logo-text .clientes {
            color: #4CAF50;
        }

        /* NAVBAR SIMPLES - FUNCIONAL */
        .navbar {
            background: var(--white);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        /* MENU DESKTOP - Alinhado à direita */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-left: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

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

        .nav-link:hover {
            color: var(--primary-blue);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-outline {
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary-blue);
            color: white;
        }

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

        .btn-primary:hover {
            background: #1e3a8a;
        }

        .btn-warning-outline {
            border: 2px solid #f59e0b;
            color: #f59e0b;
            background: transparent;
        }

        .btn-warning-outline:hover {
            background: #f59e0b;
            color: white;
        }

        .btn-danger-outline {
            border: 2px solid #ef4444;
            color: #ef4444;
            background: transparent;
        }

        .btn-danger-outline:hover {
            background: #ef4444;
            color: white;
        }


        /* MENU MOBILE */
        .hamburger {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            margin-left: auto;
            position: relative;
            z-index: 1001;
            /* Above mobile menu */
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 380px;
            height: 100vh;
            background: white;
            padding: 5.5rem 2rem 2rem;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

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

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
        }

        .mobile-nav-links li {
            margin: 0;
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .mobile-menu.active .mobile-nav-links li {
            transform: translateX(0);
            opacity: 1;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(6) {
            transition-delay: 0.35s;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(7) {
            transition-delay: 0.4s;
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(8) {
            transition-delay: 0.45s;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            padding: 1.1rem 0;
            color: var(--dark-gray);
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #3662D0;
            padding-left: 0.5rem;
        }

        .mobile-nav-link i {
            margin-right: 1rem;
            color: #3662D0;
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover i {
            opacity: 1;
            transform: scale(1.1);
        }

        .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: auto;
            padding-top: 2rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.5s;
        }

        .mobile-menu.active .mobile-buttons {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-buttons .btn {
            width: 100%;
            text-align: center;
            padding: 0.8rem;
            font-weight: 600;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .logo img {
                height: 35px;
            }
        }

        .top-header {
            background-color: #f8f9fa;
            padding: 0.5rem 0;
            font-size: 0.875rem;
            border-bottom: 1px solid #e9ecef;
        }

        .contact-info {
            color: #6c757d;
        }

        .social-links a {
            color: #6c757d;
            font-size: 1.1rem;
        }

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

        /* Estilos adicionais que podem ser necessários */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -0.75rem;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 0.75rem;
        }

        .text-end {
            text-align: right;
        }

        .me-2 {
            margin-right: 0.5rem;
        }

        .me-3 {
            margin-right: 1rem;
        }

        .ms-3 {
            margin-left: 1rem;
        }

        .text-muted {
            color: #6c757d;
        }

        .text-decoration-none {
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .text-end {
                text-align: left;
                margin-top: 0.5rem;
            }

            .contact-info {
                margin-bottom: 0.5rem;
            }
        }

/* From app/views/site/home.php */
/* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        color: var(--white);
        padding: 6rem 0 4rem;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
        opacity: 0.3;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.875rem;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
        opacity: 0.9;
        max-width: 500px;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-hero-primary {
        background: var(--white);
        color: #3662D0;
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-hero-secondary {
        background: transparent;
        color: var(--white);
        padding: 1rem 2.5rem;
        border: 2px solid var(--white);
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        color: #3662D0;
    }

    .btn-hero-secondary:hover {
        background: var(--white);
        color: #3662D0;
    }

    .hero-image {
        position: relative;
        z-index: 2;
    }

    .hero-mockup {
        background: var(--white);
        border-radius: 15px;
        padding: 1rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
        transition: all 0.3s ease;
    }

    .hero-mockup:hover {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }

    .mockup-header {
        background: #f1f5f9;
        height: 40px;
        border-radius: 8px 8px 0 0;
        display: flex;
        align-items: center;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .mockup-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot-red {
        background: #ef4444;
    }

    .dot-yellow {
        background: #eab308;
    }

    .dot-green {
        background: #22c55e;
    }

    .mockup-content {
        background: var(--white);
        height: 300px;
        border-radius: 0 0 8px 8px;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: var(--dark-gray);
    }

    /* Trust Section */
    .trust-section {
        background: var(--white);
        padding: 3rem 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .trust-title {
        text-align: center;
        color: var(--medium-gray);
        font-weight: 500;
        margin-bottom: 2rem;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .trust-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        opacity: 0.6;
        flex-wrap: wrap;
    }

    .trust-logo {
        font-size: 2rem;
        color: var(--medium-gray);
    }

    /* Features Section */
    .services-section {
        padding: 5rem 0;
        background: #fafbfc;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-badge {
        background: #eff6ff;
        color: #3662D0;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.875rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
        color: var(--medium-gray);
        max-width: 600px;
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

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

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

    .service-card {
        background: var(--white);
        border-radius: 20px;
        padding: 2.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.02);
    }

    .service-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #3662D0 0%, #6CB56C 100%);
        color: var(--white);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        margin-bottom: 2rem;
        box-shadow: 0 8px 25px rgba(54, 98, 208, 0.3);
        transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 35px rgba(54, 98, 208, 0.4);
    }

    .service-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--dark-gray);
        margin-bottom: 1rem;
    }

    .service-description {
        color: var(--medium-gray);
        line-height: 1.6;
        margin-bottom: 2rem;
        flex-grow: 1;
        font-size: 0.95rem;
    }

    .service-link {
        color: #3662D0;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .service-link:hover {
        color: #2B4D9E;
        gap: 0.75rem;
    }

    /* Trust Indicators */
    .trust-indicators {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin: 4rem 0;
        padding: 2.5rem;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.02);
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--dark-gray);
        font-weight: 600;
        font-size: 1rem;
    }

    .trust-item i {
        color: #10b981;
        font-size: 1.25rem;
    }

    /* How It Works */
    .how-it-works {
        margin: 5rem 0;
        text-align: center;
    }

    .hiw-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 3rem;
        color: var(--dark-gray);
    }

    .hiw-steps {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }

    @media (max-width: 767px) {
        .hiw-steps {
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }
    }

    .hiw-step {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
        padding: 0 1rem;
    }

    .hiw-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3662D0 0%, #6CB56C 100%);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 15px rgba(54, 98, 208, 0.3);
    }

    .hiw-step p {
        color: var(--medium-gray);
        font-weight: 600;
        line-height: 1.5;
        margin: 0;
    }

    .hiw-line {
        position: absolute;
        top: 25px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: #e5e7eb;
        z-index: 1;
    }

    @media (max-width: 767px) {
        .hiw-line {
            display: none;
        }
    }

    /* Final CTA */
    .services-cta {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 4rem;
        flex-wrap: wrap;
    }

    .btn-services-cta {
        background: linear-gradient(135deg, #3662D0 0%, #6CB56C 100%);
        color: var(--white);
        padding: 1rem 2.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(54, 98, 208, 0.3);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-services-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(54, 98, 208, 0.4);
        color: var(--white);
    }

    .btn-services-whatsapp {
        background: #25D366;
        color: var(--white);
        padding: 1rem 2.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        justify-content: center;
    }

    .btn-services-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        color: var(--white);
    }

    /* Stats Section */
    .stats-section {
        background: var(--light-gray);
        padding: 4rem 0;
    }

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

    .stat-card {
        background: var(--white);
        border: 4px solid transparent;
        background-clip: padding-box;
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        padding: 4px;
        background: linear-gradient(135deg, #3662D0, #6CB56C);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .stat-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: transparent;
    }

    .stat-card:hover::before {
        opacity: 1;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3662D0, #6CB56C);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin: 0 auto 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: var(--medium-gray);
        font-weight: 500;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Testimonials Section */
    .testimonials-section {
        background: var(--white);
        padding: 5rem 0;
    }

    .testimonial-card {
        background: var(--white);
        border: 4px solid transparent;
        background-clip: padding-box;
        border-radius: 20px;
        padding: 2.5rem;
        position: relative;
        margin-bottom: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        padding: 4px;
        background: linear-gradient(135deg, #3662D0, #6CB56C);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: transparent;
    }

    .testimonial-card:hover::before {
        opacity: 1;
    }

    .testimonial-quote {
        font-size: 1.125rem;
        color: var(--dark-gray);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #3662D0, #6CB56C);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-weight: 600;
    }

    .author-info h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark-gray);
    }

    .author-info p {
        margin: 0;
        font-size: 0.875rem;
        color: var(--medium-gray);
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
        color: var(--white);
        padding: 5rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .cta-title {
            font-size: 1.8rem;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
            gap: 10px;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            justify-content: center;
        }

        .services-cta {
            flex-direction: column;
            width: 100%;
            gap: 10px;
            padding: 0 1rem;
        }

        .btn-services-cta,
        .btn-services-whatsapp {
            width: 100%;
            justify-content: center;
            margin: 0;
        }

        .feature-grid {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .hero-section {
            padding: 4rem 0 3rem;
        }

        .services-section {
            padding: 3rem 0;
        }

        .trust-section {
            padding: 2rem 0;
        }

        .how-it-works {
            margin: 3rem 0;
        }

        .cta-section {
            padding: 3rem 0;
        }

        .testimonials-section {
            padding: 3rem 0;
        }

        .mockup-content {
            height: 200px;
            padding: 1rem;
        }

        .trust-logos {
            gap: 1.5rem;
        }

        .hiw-steps {
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }

        .hiw-line {
            display: none;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Grid classes para Bootstrap compatibility */
    .col-lg-6,
    .col-md-4 {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    @media (min-width: 768px) {
        .col-md-4 {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }
    }

    @media (min-width: 992px) {
        .col-lg-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .align-items-center {
        align-items: center !important;
    }

    .text-center {
        text-align: center !important;
    }

    .text-muted {
        color: #6c757d !important;
    }

    .mt-4 {
        margin-top: 1.5rem !important;
    }

    .ms-2 {
        margin-left: 0.5rem !important;
    }

    .col-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

/* From app/views/site/contato.php */
:root {
        --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        --icon-gradient: linear-gradient(135deg, #3662D0 0%, #6CB56C 100%);
        --success-color: #10b981;
        --text-dark: #1e293b;
        --text-medium: #64748b;
        --text-light: #94a3b8;
        --border-color: #e2e8f0;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    /* Header da página */
    .contact-header {
        background: var(--primary-gradient);
        color: white;
        padding: 5rem 0 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    }

    .contact-header .content {
        position: relative;
        z-index: 2;
    }

    .contact-title {
        font-size: 2.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: -0.025em;
    }

    .contact-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    /* Seção principal */
    .contact-section {
        padding: 4rem 0;
        background: #f8fafc;
        min-height: 80vh;
    }

    .contact-wrapper {
        background: white;
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        margin: 0 auto;
        max-width: 1200px;
    }

    .form-section {
        padding: 3rem;
    }

    .sidebar-section {
        background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 3rem 2.5rem;
        position: relative;
        border-left: 1px solid #e2e8f0;
    }

    .form-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .form-subtitle {
        color: var(--text-medium);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        display: block;
        font-size: 0.875rem;
        letter-spacing: 0.025em;
    }

    .form-control {
        border: 2px solid var(--border-color);
        border-radius: 12px;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        background: white;
        font-family: inherit;
    }

    .form-control:focus {
        border-color: #3662D0;
        box-shadow: 0 0 0 4px rgba(54, 98, 208, 0.1);
        outline: none;
        transform: translateY(-1px);
    }

    .form-control:hover {
        border-color: #cbd5e1;
    }

    .form-control::placeholder {
        color: var(--text-light);
    }

    .phone-input-group {
        display: flex;
        gap: 0.75rem;
        align-items: stretch;
    }

    .country-select {
        flex: 0 0 140px;
        font-size: 0.875rem;
    }

    .phone-input {
        flex: 1;
    }

    .btn-submit {
        background: var(--primary-gradient);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: var(--shadow-md);
        position: relative;
        overflow: hidden;
    }

    .btn-submit::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-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(54, 98, 208, 0.3);
    }

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

    .btn-submit:active {
        transform: translateY(0);
    }

    /* Sidebar Melhorada */
    .testimonial-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 2rem;
        position: relative;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .testimonial-badge {
        position: absolute;
        top: -12px;
        left: 20px;
        background: var(--success-color);
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        box-shadow: var(--shadow-md);
    }

    .testimonial-name {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
        font-size: 1.125rem;
    }

    .testimonial-role {
        color: #3662D0;
        font-size: 0.875rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .testimonial-text {
        color: var(--text-medium);
        font-style: italic;
        line-height: 1.6;
        font-size: 0.95rem;
        position: relative;
    }

    .testimonial-text::before {
        content: '"';
        font-size: 2rem;
        color: #3662D0;
        position: absolute;
        top: -0.5rem;
        left: -0.75rem;
        font-family: serif;
    }

    .stats-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .stats-text {
        color: var(--text-medium);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .stats-number {
        color: var(--text-dark);
        font-weight: 700;
        font-size: 1.125rem;
    }

    .client-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .client-logo {
        background: white;
        padding: 0.75rem 0.5rem;
        border-radius: 12px;
        text-align: center;
        box-shadow: var(--shadow-sm);
        font-size: 0.75rem;
        font-weight: 700;
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }

    .client-logo:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .support-section {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.6);
    }

    .support-title {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .support-text {
        color: var(--text-medium);
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .support-link {
        color: #3662D0;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .support-link:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }

    /* Info Cards */
    .info-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }

    .info-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid var(--border-color);
    }

    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .info-icon {
        width: 60px;
        height: 60px;
        background: var(--icon-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 1.5rem;
    }

    .info-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .info-text {
        color: var(--text-medium);
        line-height: 1.6;
        margin: 0;
    }

    /* Responsividade Melhorada */
    @media (max-width: 768px) {
        .contact-title {
            font-size: 2rem;
        }

        .contact-subtitle {
            font-size: 1rem;
        }

        .contact-wrapper {
            margin: 1rem;
            border-radius: 16px;
        }

        .form-section,
        .sidebar-section {
            padding: 2rem 1.5rem;
        }

        .sidebar-section {
            border-left: none;
            border-top: 1px solid #e2e8f0;
        }

        .phone-input-group {
            flex-direction: column;
            gap: 0.5rem;
        }

        .country-select {
            flex: none;
        }

        .client-logos {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }

        .info-cards {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .form-title {
            font-size: 1.75rem;
        }

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

    @media (max-width: 480px) {
        .contact-header {
            padding: 3rem 0 2rem;
        }

        .contact-title {
            font-size: 1.75rem;
        }

        .form-section {
            padding: 1.5rem 1rem;
        }

        .sidebar-section {
            padding: 1.5rem 1rem;
        }

        .btn-submit {
            padding: 0.875rem 1.5rem;
            font-size: 0.95rem;
        }
    }

    /* Animações */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .contact-wrapper {
        animation: fadeInUp 0.6s ease-out;
    }

    .form-group {
        animation: fadeInUp 0.6s ease-out;
        animation-fill-mode: both;
    }

    .form-group:nth-child(1) {
        animation-delay: 0.1s;
    }

    .form-group:nth-child(2) {
        animation-delay: 0.2s;
    }

    .form-group:nth-child(3) {
        animation-delay: 0.3s;
    }

    .form-group:nth-child(4) {
        animation-delay: 0.4s;
    }

    /* Loading state */
    .btn-submit.loading {
        background: #94a3b8;
        cursor: not-allowed;
        transform: none;
    }

    .btn-submit.loading:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }

    /* Success state */
    .form-success {
        background: #f0fdf4;
        border: 2px solid #22c55e;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        color: #166534;
        font-weight: 600;
    }

/* From app/views/partials/footer.php */
/* Footer */
    .footer {
        background: var(--dark-gray);
        color: var(--white);
        padding: 3rem 0 2rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h5 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--white);
    }

    .footer-section p,
    .footer-section a {
        color: #94a3b8;
        text-decoration: none;
        line-height: 1.6;
    }

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

    .footer-bottom {
        border-top: 1px solid #374151;
        padding-top: 2rem;
        text-align: center;
        color: #94a3b8;
    }

    .text-md-end {
        text-align: right;
    }

    @media (max-width: 768px) {
        .text-md-end {
            text-align: center;
            margin-top: 1rem;
        }
    }

