        /**
        CSS STYLE NEXXOPAY
        AUTOR: Luciano Zannet
        SITE:  DESIGNMP.NET
        DATE: 07/04/2026

        INDICE:

       -- HEADER
       -- BANNER
       -- CALCULADORA
       -- DETALHES NA HOME
       -- RODAPÉ
        */

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }

        /* Header Styles */
        .header {
            background-color: #FFFFFF;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a2e;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo span {
            color: #4a6cf7;
        }

        .nav-link {
            font-weight: 500;
            color: #4a5568;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: #4a6cf7;
        }

        /* Botão Acessar minha conta (outline) */
        .btn-outline-custom {
            border: 1.5px solid #4a6cf7;
            color: #4a6cf7;
            background: transparent;
            padding: 0.5rem 1.25rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: #4a6cf7;
            color: white;
            transform: translateY(-1px);
        }

        /* Botão Seja NEXXOPAY*/
        .btn-primary-custom {
            background: linear-gradient(135deg, #4a6cf7 0%, #6c5ce7 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(74, 108, 247, 0.2);
        }

        .btn-primary-custom:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
            background: linear-gradient(135deg, #3a5ce5 0%, #5b4dd5 100%);
        }

        /* Separador vertical */
        .separator {
            width: 1px;
            height: 30px;
            background-color: #e2e8f0;
            margin: 0 0.5rem;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 1rem 0;
            }

            .btn-outline-custom,
            .btn-primary-custom {
                width: 100%;
                text-align: center;
                margin: 0.5rem 0;
            }

            .separator {
                display: none;
            }

            .nav-link {
                padding: 0.75rem 0 !important;
            }
        }


        /** HERO BANNER, ENTRADA */
        /* ===== HERO BANNER ===== */
        .hero-banner {
            background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 60%, #0d2d5a 100%);
            border-radius: 16px;
            overflow: hidden;
            padding: 60px 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            min-height: 450px;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

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

        .hero-title {
            font-size: 2.6rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 20px;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.6;
            margin: 0 0 36px;
            max-width: 520px;
        }

        .hero-subtitle strong {
            color: #fff;
            font-weight: 700;
        }

        .hero-cta {
            display: inline-block;
            background: transparent;
            border: 2px solid #4ea8f0;
            color: #fff;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.2s;
        }

        .hero-cta:hover {
            background: rgba(78, 168, 240, 0.15);
        }

        .hero-image {
            flex: 0 0 340px;
            max-width: 400px;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: flex-end;
        }

        .hero-image img {
            width: 100%;
            object-fit: contain;
            display: block;
            mix-blend-mode: screen;
            filter: contrast(1.1) brightness(1.05);
            border-radius: 25px;
        }

        /* ===== RESPONSIVO ===== */
        @media (max-width: 768px) {
            .hero-banner {
                flex-direction: column;
                padding: 40px 28px 0;
                text-align: center;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                max-width: 100%;
            }

            .hero-image {
                flex: none;
                max-width: 100%;
                width: 100%;
            }

            .hero-image img {
                border-radius: 12px 12px 0 0;
                max-height: 280px;
            }
        }


        /** CALCULADORA */

        /* Estilos personalizados */
        .bg-gradient-primary {
            background: linear-gradient(135deg, #4a6cf7 0%, #6c5ce7 100%);
        }

        .bg-gradient-light {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .bg-gradient-success {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .input-group-text {
            background-color: #f8f9fa;
            color: #4a6cf7;
            font-weight: 600;
        }

        .form-control,
        .form-select {
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #4a6cf7;
            box-shadow: 0 0 0 0.2rem rgba(74, 108, 247, 0.25);
        }

        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
        }

        .resultados .card {
            transition: all 0.3s ease;
            cursor: default;
        }

        .resultados .card:hover {
            transform: translateY(-3px);
        }

        .breadcrumb-item a {
            color: #4a6cf7;
            font-weight: 500;
        }

        .breadcrumb-item.active {
            color: #6c757d;
        }

        /* Remover setas do input number */
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type="number"] {
            -moz-appearance: textfield;
        }

        @media (max-width: 768px) {
            .display-6 {
                font-size: 1.5rem;
            }

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


        /* ================================================================
   NEXXOPAY — sections.css
   Cobre: benefícios · depoimentos · recursos · por que escolher
   · botão flutuante WhatsApp
   ================================================================ */

        /* ----------------------------------------------------------------
   0. VARIÁVEIS & RESET GLOBAL
---------------------------------------------------------------- */
        @import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

        :root {
            /* Paleta */
            --clr-primary: #0A2540;
            /* azul-marinho profundo */
            --clr-accent: #00C2FF;
            /* ciano elétrico */
            --clr-accent-2: #0066FF;
            /* azul médio */
            --clr-surface: #F5F8FF;
            /* fundo suave */
            --clr-dark-bg: #060F1E;
            /* fundo escuro seções alternadas */
            --clr-card-bg: #FFFFFF;
            --clr-text: #1A2B45;
            --clr-muted: #607898;
            --clr-white: #FFFFFF;
            --clr-star: #F5A623;

            /* Tipografia */
            --font-display: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;

            /* Espaçamentos */
            --section-py: 96px;
            --container: 1200px;
            --radius-card: 20px;
            --radius-sm: 8px;

            /* Sombras */
            --shadow-card: 0 4px 32px rgba(0, 102, 255, 0.08);
            --shadow-hover: 0 12px 48px rgba(0, 194, 255, 0.18);
            --shadow-btn: 0 6px 24px rgba(0, 102, 255, 0.32);
        }

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

        body {
            font-family: var(--font-body);
            color: var(--clr-text);
            background: var(--clr-white);
            -webkit-font-smoothing: antialiased;
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ----------------------------------------------------------------
   1. UTILITÁRIOS COMPARTILHADOS
---------------------------------------------------------------- */
        .container {
            width: min(var(--container), 100% - 48px);
            margin-inline: auto;
        }

        /* Cabeçalho de seção reutilizável */
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 64px;
        }

        .section-header--light .section-title,
        .section-header--light .section-subtitle {
            color: var(--clr-white);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            font-weight: 800;
            line-height: 1.15;
            color: var(--clr-primary);
            letter-spacing: -0.02em;
        }

        .section-title span {
            color: var(--clr-accent-2);
            position: relative;
        }

        .section-subtitle {
            margin-top: 16px;
            font-size: 1.0625rem;
            line-height: 1.7;
            color: var(--clr-muted);
        }

        /* Botões */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--clr-accent-2), var(--clr-accent));
            color: var(--clr-white);
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 100px;
            box-shadow: var(--shadow-btn);
            transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(0, 102, 255, 0.42);
            opacity: 0.92;
        }

        /* ----------------------------------------------------------------
   2. SEÇÃO BENEFÍCIOS
---------------------------------------------------------------- */
        .benefits-section {
            padding: var(--section-py) 0;
            background: var(--clr-surface);
            position: relative;
            overflow: hidden;
        }

        /* Detalhe geométrico de fundo */
        .benefits-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0, 194, 255, 0.07) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 10% 90%, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Grid 3 × 2 */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        /* Card */
        .benefit-card {
            position: relative;
            background: var(--clr-card-bg);
            border-radius: var(--radius-card);
            padding: 36px 32px 40px;
            box-shadow: var(--shadow-card);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 102, 255, 0.06);

            /* Entrada escalonada via JS / CSS animation-delay */
            opacity: 0;
            animation: cardReveal 0.5s ease forwards;
        }

        .benefit-card:nth-child(1) {
            animation-delay: 0.05s;
        }

        .benefit-card:nth-child(2) {
            animation-delay: 0.15s;
        }

        .benefit-card:nth-child(3) {
            animation-delay: 0.25s;
        }

        .benefit-card:nth-child(4) {
            animation-delay: 0.35s;
        }

        .benefit-card:nth-child(5) {
            animation-delay: 0.45s;
        }

        .benefit-card:nth-child(6) {
            animation-delay: 0.55s;
        }

        @keyframes cardReveal {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

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

        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        /* Linha superior colorida ao hover */
        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--clr-accent-2), var(--clr-accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .benefit-card:hover::after {
            transform: scaleX(1);
        }

        /* Número decorativo */
        .benefit-card__number {
            position: absolute;
            bottom: -16px;
            right: 20px;
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 800;
            color: rgba(0, 102, 255, 0.05);
            line-height: 1;
            user-select: none;
            pointer-events: none;
            transition: color 0.3s ease;
        }

        .benefit-card:hover .benefit-card__number {
            color: rgba(0, 194, 255, 0.10);
        }

        /* Ícone/imagem */
        .benefit-card__icon-wrap {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 194, 255, 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            flex-shrink: 0;
        }

        .benefit-card__icon-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Corpo do card */
        .benefit-card__body {
            flex: 1;
        }

        .benefit-card__title {
            font-family: var(--font-display);
            font-size: 1.0625rem;
            font-weight: 700;
            color: var(--clr-primary);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .benefit-card__desc {
            font-size: 0.9375rem;
            line-height: 1.65;
            color: var(--clr-muted);
        }

        /* ----------------------------------------------------------------
   3. SEÇÃO DEPOIMENTOS
---------------------------------------------------------------- */
        .testimonials-section {
            padding: var(--section-py) 0;
            background: var(--clr-dark-bg);
            position: relative;
            overflow: hidden;
        }

        /* Fundo com grade sutil */
        .testimonials-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 194, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 194, 255, 0.04) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 180px;
            background: linear-gradient(to top, var(--clr-dark-bg), transparent);
            pointer-events: none;
        }

        /* Wrapper com overflow oculto para carrossel */
        .testimonials-wrapper {
            overflow: hidden;
            position: relative;
        }

        /* Track deslizante */
        .testimonials-track {
            display: flex;
            gap: 16px;
            transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        /* Card de depoimento */
        .testimonial-card {
            flex: 0 0 calc((100% - 32px) / 3);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            backdrop-filter: blur(12px);
            transition: background 0.3s, border-color 0.3s, transform 0.3s;
        }

        .testimonial-card:hover {
            background: rgba(0, 194, 255, 0.06);
            border-color: rgba(0, 194, 255, 0.2);
            transform: translateY(-4px);
        }

        /* Estrelas */
        .testimonial-card__stars {
            display: flex;
            gap: 4px;
        }

        .testimonial-card__stars span {
            color: var(--clr-star);
            font-size: 1rem;
        }

        /* Texto */
        .testimonial-card__text {
            font-size: 0.9375rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            font-style: italic;
            quotes: "\201C" "\201D";
            flex: 1;
        }

        /* Autor */
        .testimonial-card__author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .testimonial-card__avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid var(--clr-accent);
        }

        .testimonial-card__name {
            display: block;
            font-family: var(--font-display);
            font-size: 0.9375rem;
            font-weight: 700;
            color: var(--clr-white);
        }

        .testimonial-card__role {
            display: block;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 2px;
        }

        /* Dots */
        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 32px;
            position: relative;
            z-index: 2;
        }

        .testimonials-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            padding: 0;
            transition: background 0.3s, width 0.3s, border-radius 0.3s;
        }

        .testimonials-dot.active {
            background: var(--clr-accent);
            width: 28px;
            border-radius: 4px;
        }

        /* ----------------------------------------------------------------
   4. SEÇÃO RECURSOS AVANÇADOS
---------------------------------------------------------------- */
        .features-section {
            padding: var(--section-py) 0;
            background: var(--clr-white);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 480px;
            height: 480px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .features-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        /* Conteúdo textual */
        .features-title {
            font-family: var(--font-display);
            font-size: clamp(1.625rem, 3.5vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            color: var(--clr-primary);
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .features-title span {
            color: var(--clr-accent-2);
        }

        .features-desc {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--clr-muted);
            max-width: 480px;
        }

        .features-divider {
            border: none;
            border-top: 1px solid rgba(0, 102, 255, 0.12);
            margin: 32px 0;
        }

        /* Checklist */
        .features-checklist {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .features-checklist__item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--clr-text);
        }

        .features-check {
            display: grid;
            place-items: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--clr-accent-2), var(--clr-accent));
            color: var(--clr-white);
            font-size: 0.8125rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        /* CTA row */
        .features-cta-row {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .features-contact {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .features-contact__avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--clr-accent);
        }

        .features-contact__label {
            display: block;
            font-size: 0.8125rem;
            color: var(--clr-muted);
            margin-bottom: 2px;
        }

        .features-contact__phone {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--clr-primary);
        }

        /* Imagem lateral */
        .features-image-wrap {
            position: relative;
        }

        .features-image-wrap::before {
            content: '';
            position: absolute;
            inset: -24px;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(0, 194, 255, 0.06));
            z-index: 0;
        }

        .features-image {
            position: relative;
            z-index: 1;
            border-radius: 24px;
            width: 100%;
            object-fit: cover;
            box-shadow: 0 24px 64px rgba(0, 10, 40, 0.12);
        }

        /* ----------------------------------------------------------------
   5. SEÇÃO POR QUE ESCOLHER
---------------------------------------------------------------- */
        .why-section {
            padding: var(--section-py) 0;
            background: var(--clr-dark-bg);
            position: relative;
            overflow: hidden;
        }

        /* Glow de fundo */
        .why-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Cabeçalho da seção: título à esq, botão à dir */
        .why-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: 64px;
            flex-wrap: wrap;
        }

        .why-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 800;
            line-height: 1.2;
            color: var(--clr-white);
            letter-spacing: -0.02em;
            max-width: 560px;
        }

        .why-title span {
            color: var(--clr-accent);
        }

        /* Layout 2 colunas */
        .why-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        /* Passos */
        .why-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .why-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 28px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            position: relative;
            transition: padding-left 0.3s ease;
        }

        .why-step:first-child {
            padding-top: 0;
        }

        .why-step:last-child {
            border-bottom: none;
        }

        .why-step:hover {
            padding-left: 8px;
        }

        .why-step__badge {
            width: 72px;
            height: 72px;
            flex-shrink: 0;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            transition: background 0.3s, border-color 0.3s;
        }

        .why-step:hover .why-step__badge {
            background: rgba(0, 194, 255, 0.1);
            border-color: rgba(0, 194, 255, 0.3);
        }

        .why-step__badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .why-step__title {
            font-family: var(--font-display);
            font-size: 1.0625rem;
            font-weight: 700;
            color: var(--clr-white);
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }

        .why-step__desc {
            font-size: 0.9375rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Imagem */
        .why-image-wrap {
            position: relative;
        }

        .why-image-wrap::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 26px;
            background: linear-gradient(135deg, var(--clr-accent-2), var(--clr-accent));
            z-index: 0;
            opacity: 0.5;
        }

        .why-image {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 24px;
            object-fit: cover;
            display: block;
        }

        /* ----------------------------------------------------------------
   6. BOTÃO FLUTUANTE WHATSAPP
---------------------------------------------------------------- */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: grid;
            place-items: center;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            animation: waBounce 2.5s ease-in-out infinite;
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
            fill: #ffffff;
        }

        .whatsapp-float:hover {
            transform: scale(1.12);
            box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        @keyframes waBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-6px);
            }
        }

        /* ----------------------------------------------------------------
   7. RESPONSIVIDADE
---------------------------------------------------------------- */

        /* Tablet (≤ 1024px) */
        @media (max-width: 1024px) {
            :root {
                --section-py: 72px;
            }

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

            .features-inner,
            .why-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .features-image-wrap {
                order: -1;
            }

            .why-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .testimonial-card {
                flex: 0 0 calc((100% - 16px) / 2);
            }
        }

        /* Mobile (≤ 640px) */
        @media (max-width: 640px) {
            :root {
                --section-py: 56px;
            }

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

            .benefit-card__number {
                font-size: 3.5rem;
            }

            .testimonial-card {
                flex: 0 0 100%;
            }

            .features-cta-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .why-inner {
                gap: 32px;
            }

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

            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }
        }

        .rodape{
            margin-top: 50px;
            margin-bottom: 50px;
            align-items: center;
            text-align: center;
        }