:root {
    --primary-color: #0F172A;
    --accent-color: #3B82F6;
    --success-color: #10B981;
    --bg-light: #F8FAFC;
    --text-main: #1E293B;
    color-scheme: light;
}

html {
    background-color: #ffffff;
}

body {
    font-family: Google Sans Flex, Google Sans, Helvetica Neue, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(8px);
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-link { font-weight: 500; color: #e2e8f0; }
.nav-link:hover { color: white; }
.nav-link.active { color: var(--accent-color) !important; }
.navbar-brand { color: white; }
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.92);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.16rem rgba(255, 255, 255, 0.22);
}
.navbar-toggler-icon {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure anchored sections aren't hidden by fixed navbar */
#orientacoes-pos-pagamento {
    scroll-margin-top: 110px;
}

.btn-cta {
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    border: none;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
    background-color: #2563EB;
    color: white;
}

/* Hero */
.hero-section { padding: 120px 0 60px; }
.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.12em; /* evita corte de descendentes (g, y, j) pelo background-clip */
}
.highlight-text {
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-badge {
    background: #E0F2FE;
    color: #0369A1;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Cards */
.bento-card, .feature-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}
.bento-card.no-fill {
    height: auto;
}
.bento-card:hover, .feature-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Pricing */
.pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s;
    background: white;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10;
}
.badge-popular {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: 20px;
    right: 20px;
}
.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Steps */
.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 0;
}
.step-content {
    position: relative;
    z-index: 1;
}

/* Help page */
.help-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}
.custom-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.custom-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    padding: 1.25rem;
    box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: #F0F9FF;
}
.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(59, 130, 246, 0.5);
}
.custom-accordion .accordion-body {
    padding: 1.5rem;
    color: #475569;
    line-height: 1.6;
}
.accordion-body ul { padding-left: 1.2rem; }
.accordion-body ul li { margin-bottom: 0.5rem; }

/* Section helpers */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #E0F2FE;
    color: #0369A1;
    font-weight: 600;
    font-size: 0.9rem;
}
.section-title {
    font-weight: 800;
    color: var(--primary-color);
}
.section-subtitle {
    max-width: 720px;
    color: #475569;
}

/* Lists */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #475569;
}
.check-list .icon-check {
    color: var(--success-color);
    margin-top: 2px;
}
.check-list .icon-x {
    color: #EF4444;
    margin-top: 2px;
}

/* Utility cards */
.muted-card {
    border-color: #e2e8f0;
}
.accent-card {
    border-color: rgba(34, 197, 94, 0.3);
}
.cta-card button + button { margin-top: 10px; }
.btn-outline-neutral {
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-weight: 600;
    padding: 10px 16px;
}
.btn-outline-neutral:hover {
    background: #e2e8f0;
    color: #1E293B;
}

/* Blog */
.blog-card {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: white;
    height: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px -12px rgba(0,0,0,0.2);
    transform: translateY(-4px);
}
.blog-meta {
    font-size: 0.85rem;
    color: #64748b;
}
.blog-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.85rem;
    margin-right: 6px;
    margin-bottom: 6px;
}
.blog-cover {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 220px;
}
.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4 {
    color: var(--primary-color);
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}
.blog-content p { color: #475569; }
.blog-content img { max-width: 100%; border-radius: 12px; }
.blog-content ul { padding-left: 1.2rem; }

/* Footer */
.div-block-10 {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}
.frame-2962 {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.frame-2962 img {
    height: auto;
    filter: invert(60%) sepia(12%) saturate(240%) hue-rotate(12deg) brightness(90%) contrast(88%);
}
.footer-emphasis {
    font-weight: 800;
    color: #dc9822;
}
@media (max-width: 767px) {
    .div-block-10 { justify-content: center; }
}

/* Social icons */
.social-icons i { font-size: 1.2rem; }
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, calc(100% - 24px));
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
    border-radius: 16px;
    padding: 16px 18px;
    z-index: 9999;
}
.cookie-banner .cookie-text {
    margin: 0;
    font-size: 0.95rem;
}
.cookie-banner a {
    color: #93c5fd;
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}
.cookie-actions .btn-accept {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-actions .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -10px rgba(59,130,246,0.6);
}
.cookie-actions .btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #e2e8f0;
    padding: 10px 14px;
    border-radius: 999px;
}
@media (min-width: 768px) {
    .cookie-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
    }
    .cookie-actions { margin-top: 0; }
}
