        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(224, 17, 95, 0.2);
            font-weight: 500;
            font-size: 13px;
            color: #E0115F;
            margin-bottom: 16px;
            background: transparent;
        }

        .section-badge-icon {
            width: 16px;
            height: 16px;
            display: block;
            flex-shrink: 0;
        }

        .section-badge-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            font-weight: 500;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            background: transparent;
        }

        .section-badge-light .section-badge-icon {
            width: 16px;
            height: 16px;
            display: block;
            flex-shrink: 0;
        }

        /* ============================================
                   HEADER
                ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            column-gap: 24px;
            padding: 14px 48px;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(224, 17, 95, 0.06);
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: #E0115F;
            font-weight: 500;
            font-size: 18px;
            flex-shrink: 0;
        }

        .header-logo .material-symbols-outlined {
            font-size: 24px;
            color: #E0115F;
        }

        .header-right {
            display: contents;
        }

        .header-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            grid-column: 2;
        }

        .header-nav a {
            color: #1f1f1f;
            text-decoration: none;
            font-weight: 300;
            font-size: 14px;
            transition: color 0.2s;
            white-space: nowrap;
        }

        .header-nav a:hover {
            color: #E0115F;
        }

        .header-actions {
            display: flex;
            align-items: center;
            justify-self: end;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            color: #E0115F;
            flex-shrink: 0;
        }

        .menu-toggle-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            line-height: 1;
        }

        /* ============================================
                   BOTÕES
                ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: var(--looply-button-height);
            min-height: var(--looply-button-height);
            padding: 0 var(--looply-button-padding-x);
            border-radius: 8px;
            font-family: var(--looply-font);
            font-weight: 400;
            font-size: 15px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            box-shadow: 0 10px 28px rgba(31, 31, 31, 0.08);
            transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
            white-space: nowrap;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: -120% auto -120% -40%;
            width: 38%;
            transform: translateX(-220%) skewX(-24deg);
            background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
            opacity: 0.65;
            pointer-events: none;
            animation: looply-button-sheen 8.4s ease-in-out infinite;
            z-index: 1;
        }

        .btn:hover {
            transform: none;
            box-shadow: 0 10px 28px rgba(31, 31, 31, 0.08);
        }

        .btn .material-symbols-outlined {
            font-size: 18px;
        }

        .btn-primary {
            background: #E0115F;
            color: #ffffff;
        }

        .btn-primary:hover {
            background: #C91056;
            color: #ffffff;
        }

        .btn-outline-light {
            background: transparent;
            color: #ffffff;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
        }

        .btn-outline-light:hover {
            background: #ffffff;
            border-color: #ffffff;
            color: #E0115F;
        }

        .btn-outline-dark {
            background: transparent;
            color: #E0115F;
            border: 1.5px solid #E0115F;
        }

        .btn-outline-dark:hover {
            background: #E0115F;
            color: #ffffff;
            border-color: #E0115F;
        }

        .btn-white {
            background: #ffffff;
            color: #E0115F;
        }

        .btn-white:hover {
            background: #fbfbfc;
        }
        .feature-card {
            list-style: none;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
            padding: 24px;
            text-align: center;
            box-shadow: none;
        }

        .feature-card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 999px;
            background: #ffffff;
            color: #E0115F;
            font-size: 30px;
            line-height: 1;
        }

        .feature-card-title {
            font-weight: 500;
            font-size: 1.02rem;
            line-height: 1.22;
            color: #ffffff;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            margin: 0;
            min-height: 2.44em;
            max-width: 14ch;
        }
        .tabs-list {
            display: grid;
            gap: 16px;
            width: 100%;
            min-width: 0;
        }

        .tab-item {
            display: grid;
            grid-template-columns: 4px minmax(0, 1fr);
            gap: 20px;
            padding: 20px 0 20px 24px;
            background: transparent;
            border: none;
            border-radius: 0;
            text-align: left;
            cursor: pointer;
            font-family: var(--looply-font);
            opacity: 0.4;
            transition: opacity 0.3s ease;
            width: 100%;
            min-width: 0;
        }

        .tab-item.active {
            opacity: 1;
        }

        .tab-item .tab-line {
            width: 4px;
            height: 100%;
            border-radius: 0;
            background: transparent;
            transition: background 0.3s ease;
        }

        .tab-item.active .tab-line {
            background: #E0115F;
        }

        .tab-item .tab-content {
            display: grid;
            gap: 8px;
            min-width: 0;
        }

        .tab-item h4 {
            font-weight: 500;
            font-size: 1.05rem;
            color: #1f1f1f;
            line-height: 1.2;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .tab-title {
            display: block;
            min-width: 0;
            overflow-wrap: anywhere;
        }

        .tab-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            min-width: 48px;
            height: 48px;
            padding: 0;
            border-radius: 50%;
            background: #E0115F;
            color: #ffffff;
            border: 1px solid rgba(224, 17, 95, 0.18);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
            font-weight: 600;
            font-size: 0.9rem;
            line-height: 1;
            flex-shrink: 0;
        }

        .tab-item p {
            font-weight: 300;
            font-size: 0.92rem;
            color: #5c5c5c;
            line-height: 1.6;
            max-width: 48ch;
            min-width: 0;
        }

        .tab-image {
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            border-radius: 16px;
            background: #ffffff;
            color: #E0115F;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            min-height: 0;
            min-width: 0;
        }

        .tab-image-track {
            display: flex;
            flex-wrap: nowrap;
            width: 100%;
            height: 100%;
            transform: translateX(calc(var(--active-tab, 0) * -100%));
            transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .tab-image-slide {
            flex: 0 0 100%;
            min-width: 100%;
            max-width: 100%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
        }

        .tab-image-slide img {
            display: block;
            width: 94%;
            height: auto;
            max-width: 94%;
            margin: 0 auto;
        }

        .team-card {
            background: var(--looply-surface-alt);
            border-radius: 16px;
            overflow: hidden;
            text-align: left;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .team-card-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: var(--looply-surface-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #E0115F;
            position: relative;
            overflow: hidden;
        }

        .team-card-image img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card-image .material-symbols-outlined {
            font-size: 64px;
        }

        .team-card-body {
            padding: 20px 24px 24px;
            background: var(--looply-surface-alt);
        }

        .team-card-body h3 {
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1.2;
            margin-bottom: 4px;
            color: var(--looply-primary-strong);
        }

        .team-card-body p {
            font-weight: 300;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--looply-primary-strong);
        }
        .plan-card {
            background: var(--looply-surface-alt);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: left;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .plan-card.featured {
            background: #ffffff;
            border: 1px solid rgba(224, 17, 95, 0.06);
        }

        .plan-card .plan-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .plan-card .plan-header h3 {
            font-weight: 500;
            font-size: 1.3rem;
            color: #1f1f1f;
        }

        .plan-card .plan-badge {
            display: inline-block;
            background: #E0115F;
            color: #ffffff;
            font-weight: 500;
            font-size: 11px;
            padding: 4px 14px;
            border-radius: 999px;
            border: none;
            flex-shrink: 0;
            margin-left: 8px;
        }

        .plan-card .plan-price-wrap {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px;
        }

        .plan-card .plan-price {
            font-weight: 500;
            font-size: 2rem;
            color: #E0115F;
        }

        .plan-card .plan-period {
            font-weight: 300;
            font-size: 0.9rem;
            color: #5c5c5c;
        }

        .plan-card .plan-description {
            font-weight: 300;
            font-size: 0.95rem;
            line-height: 1.5;
            color: #5c5c5c;
            margin-bottom: 16px;
            max-width: 40ch;
        }

        .plan-card .plan-divider {
            height: 1px;
            background: rgba(224, 17, 95, 0.06);
            margin: 0 0 16px 0;
        }

        .plan-card .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            flex: 1;
        }

        .plan-card .plan-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 5px 0;
            font-weight: 300;
            font-size: 0.9rem;
            color: #1f1f1f;
        }

        .plan-card .plan-features .material-symbols-outlined {
            font-size: 18px;
            color: #E0115F;
            background: rgba(224, 17, 95, 0.08);
            border-radius: 50%;
            padding: 2px;
        }

        .plan-card .plan-cta {
            margin-top: auto;
        }

        .plan-card .plan-cta .btn {
            width: 100%;
            justify-content: center;
        }

        .bento-item {
            background: var(--looply-surface-alt);
            border-radius: 16px;
            overflow: hidden;
            text-align: left;
            display: flex;
            flex-direction: column;
            min-height: 280px;
        }

        .bento-item.wide {
            grid-column: span 2;
        }

        .bento-item.tall {
            min-height: 340px;
        }

        .bento-image {
            width: 100%;
            flex: 1;
            background: #ffffff;
            min-height: 80px;
        }

        .bento-body {
            padding: 20px 24px 24px;
            background: var(--looply-surface-alt);
            flex-shrink: 0;
        }

        .bento-body.text-top {
            padding: 24px 24px 20px;
            order: -1;
        }

        .bento-body h3 {
            font-weight: 500;
            font-size: 1.05rem;
            line-height: 1.2;
            margin-bottom: 8px;
            color: #1f1f1f;
        }

        .bento-body p {
            font-weight: 300;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #5c5c5c;
        }
        .testimonial-card {
            flex: 0 0 380px;
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card .testimonial-header {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 12px;
        }

        .testimonial-card .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-card .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--looply-surface-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #E0115F;
            flex-shrink: 0;
        }

        .testimonial-card .testimonial-avatar img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .testimonial-card .testimonial-avatar .material-symbols-outlined {
            font-size: 24px;
        }

        .testimonial-card .testimonial-user-info strong {
            font-weight: 500;
            font-size: 0.9rem;
            display: block;
            color: var(--looply-primary-strong);
        }

        .testimonial-card .testimonial-user-info span {
            font-weight: 300;
            font-size: 0.8rem;
            color: var(--looply-primary-strong);
        }

        .testimonial-card .testimonial-studio {
            display: none;
            align-items: center;
            gap: 8px;
            font-weight: 300;
            font-size: 0.85rem;
            color: var(--looply-primary-strong);
        }

        .testimonial-card .testimonial-studio .material-symbols-outlined {
            font-size: 18px;
            color: #E0115F;
        }

        .testimonial-card .testimonial-text {
            font-weight: 300;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--looply-primary-strong);
            margin-bottom: 16px;
            flex: 1;
        }

        .testimonial-card .testimonial-footer {
            border-top: 1px solid rgba(224, 17, 95, 0.06);
            padding-top: 12px;
        }

        .testimonial-card .testimonial-stars {
            display: flex;
            gap: 2px;
        }

        .testimonial-card .testimonial-stars .material-symbols-outlined {
            font-size: 18px;
            color: #f5b301;
        }
        .faq-item {
            border-bottom: 1px solid rgba(224, 17, 95, 0.06);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 16px 0;
            background: transparent;
            border: none;
            text-align: left;
            cursor: pointer;
            font-family: var(--looply-font);
            font-weight: 500;
            font-size: 1rem;
            color: #1f1f1f;
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: #E0115F;
        }

        .faq-question .material-symbols-outlined {
            font-size: 24px;
            color: #E0115F;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.open .faq-question .material-symbols-outlined {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-6px);
            transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.24s ease, transform 0.24s ease;
            padding: 0;
            font-weight: 300;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #5c5c5c;
        }

        .faq-item.open .faq-answer {
            max-height: 320px;
            opacity: 1;
            transform: translateY(0);
            padding: 0 0 16px 0;
        }
        .banner-wrapper {
            max-width: 1120px;
            margin: 0 auto;
            background: #E0115F url('../images/banner_cta.webp') center / cover no-repeat;
            border-radius: 24px;
            padding: 64px 56px 0;
            color: #ffffff;
            display: grid;
            grid-template-columns: 1fr;
            align-items: stretch;
            gap: 24px;
            overflow: hidden;
        }

        .banner-copy {
            display: grid;
            gap: 12px;
            padding-bottom: 64px;
        }

        .banner-wrapper h2 {
            font-weight: 500;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            line-height: 1.2;
            letter-spacing: -0.02em;
            max-width: 14ch;
        }

        .banner-wrapper p {
            font-weight: 300;
            font-size: clamp(0.95rem, 1.2vw, 1.15rem);
            line-height: 1.6;
            max-width: 48ch;
            color: rgba(255, 255, 255, 0.65);
        }

        .banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 4px;
        }

        .banner-visual {
            width: min(100%, 280px);
            justify-self: center;
            align-self: end;
            display: flex;
            align-items: flex-end;
            margin-bottom: -1px;
        }

        .banner-visual img {
            display: block;
            width: 100%;
            height: auto;
        }

        .banner-actions .btn {
            height: var(--looply-button-height);
            min-height: var(--looply-button-height);
            padding: 0 var(--looply-button-padding-x);
            font-size: 15px;
        }

        .footer {
            background: #E0115F;
            padding: 144px 48px 120px;
            color: #ffffff;
        }

        .footer-content {
            max-width: 1120px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 72px;
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            font-size: 20px;
            color: #ffffff;
            text-decoration: none;
        }

        .footer-brand .footer-logo .material-symbols-outlined {
            font-size: 28px;
            color: #ffffff;
        }

        .footer-brand p {
            font-weight: 300;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.72);
            max-width: 36ch;
            line-height: 1.6;
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .footer-links-column {
            display: grid;
            align-content: start;
            gap: 10px;
        }

        .footer-links-column h4 {
            font-weight: 500;
            font-size: 0.95rem;
            color: #ffffff;
            margin: 0 0 2px;
        }

        .footer-links-column a,
        .footer-links-column button,
        .footer-meta {
            display: block;
            font-weight: 300;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.2s ease;
            margin: 0;
        }

        .footer-links-column button {
            padding: 0;
            background: transparent;
            border: none;
            text-align: left;
            cursor: pointer;
            font-family: var(--looply-font);
        }

        .footer-links-column a:hover,
        .footer-links-column button:hover {
            color: #ffffff;
        }

        .footer-legal {
            grid-column: 1 / -1;
            margin: 0;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
            text-align: left;
            font-weight: 300;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.6;
        }

        .seo-modal[hidden] {
            display: none;
        }

        .seo-modal {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: grid;
            place-items: center;
            padding: 24px;
            background: rgba(18, 8, 12, 0.52);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            opacity: 0;
            transition: opacity 0.24s ease;
        }

        .seo-modal.is-open {
            opacity: 1;
        }

        .seo-modal__dialog {
            width: min(760px, 100%);
            max-height: min(80dvh, 860px);
            overflow: hidden;
            border-radius: 24px;
            background: #ffffff;
            box-shadow: 0 30px 80px rgba(31, 31, 31, 0.18);
            padding: 32px;
            color: #1f1f1f;
            display: grid;
            grid-template-rows: auto minmax(0, 1fr);
            transform: translateY(18px) scale(0.98);
            transition: transform 0.24s ease;
        }

        .seo-modal.is-open .seo-modal__dialog {
            transform: translateY(0) scale(1);
        }

        .seo-modal__header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 20px;
        }

        .seo-modal__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(255, 241, 246, 0.96);
            color: #E0115F;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .seo-modal__title {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin: 0;
        }

        .seo-modal__close {
            padding: 0 4px;
            border: none;
            background: transparent;
            color: #E0115F;
            cursor: pointer;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--looply-font);
            font-size: 3rem;
            line-height: 1;
            transition: color 0.24s ease, opacity 0.24s ease;
        }

        .seo-modal__close:hover {
            opacity: 0.72;
        }

        .seo-modal__content {
            display: grid;
            gap: 16px;
            color: #5c5c5c;
            line-height: 1.7;
            font-size: 0.98rem;
            min-height: 0;
            overflow: auto;
            overscroll-behavior: contain;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .seo-modal__content::-webkit-scrollbar {
            width: 0;
            height: 0;
            display: none;
        }

        .seo-modal__content p {
            margin: 0;
        }
        .cookie-banner {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 1000;
            display: none;
            width: min(420px, calc(100vw - 32px));
            padding: 16px;
            border: 1px solid rgba(224, 17, 95, 0.14);
            border-radius: var(--looply-radius-md);
            background: #ffffff;
            color: var(--looply-text);
        }

        .cookie-banner.is-visible {
            display: block;
        }

        .cookie-banner p {
            margin: 0 0 12px;
            color: var(--looply-muted);
            font-size: 14px;
            line-height: 1.45;
        }

        .cookie-actions {
            display: flex;
            gap: 8px;
            justify-content: flex-end;
        }

        .cookie-actions .btn {
            min-height: 40px;
            padding: 0 14px;
            font-size: 14px;
        }
