/* CSS Variables */
:root {
    --bg: #ffffff;
    --bg-2: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-color: #00ff87;
    --accent-hover: #19c878;
    --card-bg: #16191f; /* Fundo dos cards escuro */
    --border-color: #e2e8f0;
    --font-main: 'Manrope', ui-sans-serif, system-ui, sans-serif;
    --shadow: 0 34px 120px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-container {
    max-width: 1800px;
    width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.btn-outline {
    border: 1px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--accent-color) !important;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #fff !important;
}

.btn-primary {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.1);
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1420px;
    display: flex;
    align-items: center;
    gap: 78px;
}

.hero-content {
    flex: 0 0 41%;
}

.hero-content .logo-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.site-logo-hero {
    height: 60px;
    width: auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 .highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1 1 59%;
    position: relative;
}

.hero-image picture,
.tech-card-glow picture,
.proof-map picture,
.team-img-wrapper picture {
    display: block;
}

.hero-image img {
    width: 100%;
    max-width: 820px;
    height: auto;
    border-radius: 10px;
    filter: none;
    box-shadow: 0 28px 70px rgba(2, 26, 17, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 78px rgba(2, 26, 17, 0.16);
}

/* Social Proof */
/* Social Proof Layout */
.social-proof {
    padding: 60px 0;
    background-color: var(--bg-2);
}

.proof-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 20px;
}

.proof-map {
    flex: 1;
    display: flex;
    justify-content: center;
}

.proof-map picture {
    width: min(100%, 500px);
}

.brazil-map-img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 20px 30px rgba(0, 255, 135, 0.15));
}

.proof-content {
    flex: 1;
    text-align: left;
}

.neon-text {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 800;
}

.proof-content .subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.proof-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.google-rating {
    font-size: 1.2rem;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .proof-layout {
        flex-direction: column;
        text-align: center;
    }
    .proof-content {
        text-align: center;
    }
}

/* Autoridade Tecnica (SEO/AEO) */
.autoridade-tecnica {
    padding: 120px 0;
    background-color: #030504; /* Dark premium */
    color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.autoridade-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.autoridade-text {
    flex: 1;
}

.autoridade-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.autoridade-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.tech-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
}

.tech-item p {
    color: #cbd5e1;
    line-height: 1.5;
}

.autoridade-visual {
    flex: 1;
    position: relative;
}

.tech-card-glow {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 135, 0.3);
    box-shadow: 0 0 80px rgba(0, 255, 135, 0.15);
}

.tech-card-glow img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7) contrast(1.2);
}

.tech-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 992px) {
    .autoridade-grid {
        flex-direction: column;
    }
}

.stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 10px;
}

.dynamic-testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    height: 350px;
    margin-top: 40px;
}

.testimonial-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.8;
}

.testimonial-item:hover {
    opacity: 1;
}

.testimonial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.testimonial-item.expanded {
    width: 250px;
    height: 350px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    opacity: 1;
}

/* Propostas */
.propostas {
    padding: 100px 0;
    background-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

@media (min-width: 993px) {
    .cards-container {
        flex-wrap: nowrap;
    }
}

.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 40px;
    width: 380px; /* Largura robusta e espetacular para Desktop */
    max-width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 255, 135, 0.3);
    color: #f8fafc;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .card {
        width: 100%; /* Lindo e adaptável no Mobile */
        max-width: 400px;
        margin: 0 auto;
    }
}

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

.card.premium {
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.1);
    transform: translateY(-10px);
}

.card.premium:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 50px rgba(0, 255, 135, 0.25);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.card-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    min-height: 55px;
    color: #fff;
}

.price-box {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.new-price {
    display: block;
    color: var(--accent-color);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.taxa {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 600;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-list li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.card-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.maintenance-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #eaf6ef;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
}

/* Portfolio (ChromaGrid) */
.portfolio {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.chroma-grid {
    position: relative;
    width: 95%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    justify-content: center;
    gap: 3rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 1rem 0;
    box-sizing: border-box;
}

@media (max-width: 1124px) {
    .chroma-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

.chroma-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f8fafc;
}
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;

    --mouse-x: 50%;
    --mouse-y: 50%;
}

.chroma-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.chroma-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), var(--card-glow), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    border-radius: inherit;
}

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

.chroma-img-wrapper {
    position: relative;
    z-index: 1;
    height: 250px;
    padding: 15px;
    box-sizing: border-box;
    background: transparent;
}

.chroma-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.chroma-card:hover .chroma-img-wrapper img {
    transform: scale(1.05);
}

.chroma-info {
    position: relative;
    z-index: 10;
    padding: 1rem 1.25rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 120px;
    margin-top: auto;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.chroma-info .name {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.chroma-info .role {
    font-size: 14px;
    font-weight: 600;
}

.portfolio-subsection-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    margin-top: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.portfolio-showcase {
    display: flex;
    align-items: center;
    gap: 80px;
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    margin: 0 auto 80px;
    max-width: 1400px;
    border: 1px solid rgba(0, 255, 136, 0.22);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.portfolio-showcase-image {
    flex: 1 1 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.portfolio-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0, 255, 136, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-showcase-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(0, 255, 136, 0.25);
}

.portfolio-showcase-image.double-horizontal {
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.portfolio-showcase-image.double-mobile {
    display: flex;
    gap: 20px;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.portfolio-showcase-image.double-mobile img {
    flex: 1;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0, 255, 136, 0.15);
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-showcase-image.double-mobile img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(0, 255, 136, 0.25);
}

.portfolio-showcase-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.portfolio-showcase-content h4 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #00FF88 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.portfolio-showcase-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .portfolio-showcase {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    .portfolio-showcase.inverted {
        flex-direction: column-reverse;
    }
    .portfolio-showcase-image {
        width: 100%;
    }
    .portfolio-showcase-content h4 {
        font-size: 1.6rem;
    }
}

/* Equipe */
.equipe {
    padding: 120px 0;
    background-color: #f0fdf4; /* Verde clarinho */
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(100%);
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member img:hover {
    filter: grayscale(0%);
    border-color: var(--accent-color);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .site-logo {
    filter: brightness(0) invert(1);
}

/* Modal Lightbox */
.image-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    animation: modalZoomIn 0.3s ease;
    object-fit: contain;
}

#modal-caption {
    display: none !important;
}

@keyframes modalZoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform:scale(0.8); opacity: 0} 
    to {transform:scale(1); opacity: 1}
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.socials a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--accent-color);
}

/* Novo Footer Premium */
.footer-premium {
    background-color: #030504;
    color: #cbd5e1;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 255, 135, 0.2);
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1;
    min-width: 300px;
}
.oab-logo {
    max-width: 160px;
    margin-bottom: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.oab-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94a3b8;
}
.security-badges {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--accent-color);
}
.security-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.payment-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.badge-pay {
    background: rgba(255,255,255,0.05);
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 15px;
}
.highlight-pix {
    border-color: #32BCAD;
    color: #32BCAD;
    background: rgba(50, 188, 173, 0.1);
}
.card-icons {
    display: flex;
    gap: 15px;
    font-size: 40px;
    color: #64748b;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #64748b;
}

/* Stripe Integration Component */
.stripe-integration {
    margin: 80px auto 40px;
    max-width: 1000px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 0;
    overflow: hidden;
}
.stripe-header {
    margin-bottom: 30px;
}
.stripe-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.stripe-logo-img {
    height: 30px;
    filter: brightness(100); /* Tornar o logo da stripe branco para combinar com o tema escuro */
}
.stripe-sub {
    font-size: 0.9rem !important;
    color: #64748b !important;
    margin-top: 10px;
}

/* Slider Animation */
.stripe-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.stripe-slider::before,
.stripe-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.stripe-slider::before {
    left: 0;
    background: linear-gradient(to right, #030504 0%, transparent 100%);
}
.stripe-slider::after {
    right: 0;
    background: linear-gradient(to left, #030504 0%, transparent 100%);
}
.stripe-track {
    display: flex;
    width: max-content;
    animation: scroll 120s linear infinite;
    align-items: center;
}
.stripe-track .stripe-logo-item {
    width: 120px;
    margin: 0 30px;
    opacity: 0.4;
    transition: opacity 0.3s;
}
.stripe-track .stripe-logo-item:hover {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0 54px; /* Reduced padding since header is gone */
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 34px;
    }
    
    .hero-content .logo-hero {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 0;
    }
    
    .hero-content p {
        margin: 0 auto 40px auto;
    }

    .hero-image img {
        max-width: min(100%, 390px);
        filter: none;
        box-shadow: 0 12px 26px rgba(2, 26, 17, 0.14);
        transition: none;
    }
    
    .nav-menu {
        display: none; /* Simplificação pro mobile pra focar no botão */
    }

    .tech-card-glow,
    .team-card,
    .np-plan-card,
    .np-footer-brand-card,
    .np-footer-cta {
        box-shadow: 0 12px 28px rgba(2, 26, 17, 0.08);
    }

    .proof-map img {
        filter: none !important;
    }

    #circular-gallery-container {
        height: 420px !important;
        margin-top: 38px !important;
    }
}

@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 2.75rem;
        line-height: 1.08;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Dark Green Backgrounds */
#autoridade {
    background-color: #021a11 !important;
}
#autoridade h2,
#autoridade .autoridade-desc,
#autoridade .tech-item h3,
#autoridade .tech-item p {
    color: #ffffff !important;
}
#circular-gallery-container {
    background-color: #021a11 !important;
    border-color: rgba(0, 255, 135, 0.3) !important;
}
.credibility-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    background-color: #030504;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.credibility-section .stripe-integration {
    margin: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
}
@media (max-width: 900px) {
    .credibility-section {
        grid-template-columns: 1fr;
    }
}
.old-price {
    color: #EF4444 !important;
    text-decoration: line-through !important;
    opacity: 0.8;
}

.stripe-logo-item {
    width: 120px;
    margin: 0 40px;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stripe-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}
.stripe-logo-item svg {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* Tries to make SVGs white */
}

/* Pagamento Clean Layout */
.pagamento-clean {
    background: #f0fdf4; /* Verde bem clarinho */
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 60px;
    text-align: center;
    border: 1px solid rgba(0, 255, 135, 0.2);
}
.stripe-clean-header p {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 10px;
}
.stripe-clean-sub {
    font-size: 0.95rem !important;
    color: #475569 !important;
    font-weight: 400 !important;
    margin-bottom: 40px !important;
}
.stripe-clean-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-bottom: 50px;
}
.stripe-clean-slider::before,
.stripe-clean-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.stripe-clean-slider::before {
    left: 0;
    background: linear-gradient(to right, #f0fdf4 0%, transparent 100%);
}
.stripe-clean-slider::after {
    right: 0;
    background: linear-gradient(to left, #f0fdf4 0%, transparent 100%);
}
.pagamento-clean .stripe-logo-item {
    opacity: 0.8;
    filter: none !important;
}
.pagamento-clean .stripe-logo-item:hover {
    opacity: 1;
}
.pagamento-clean .stripe-logo-item svg {
    filter: none; /* Mantém as cores originais da Stripe no fundo claro */
    height: 35px;
}

.payment-clean-methods {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
}
.payment-clean-methods h3 {
    color: #0f172a;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.badges-row .badge-pay {
    background: #ffffff;
    color: #334155;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}
.badges-row .highlight-pix {
    color: #059669; /* Verde esmeralda para Pix no fundo claro */
    border-color: rgba(5, 150, 105, 0.2);
    background: #ecfdf5;
}
.badges-row .highlight-pix i {
    color: #10b981;
}

.stripe-title {
    font-size: 1.8rem !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-clean-btn {
    background: transparent;
    color: #059669; /* Verde esmeralda escuro para contraste no claro */
    border: 1px solid #059669;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(5, 150, 105, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: default; /* Não clicável */
}
.badge-clean-btn i {
    font-size: 1.2rem;
}
.badge-clean-btn:hover {
    background-color: #059669;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
}

/* Equipe Premium Redesign */
.equipe-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}
.equipe-premium .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.equipe-premium .section-header h2 {
    color: #0f172a;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.equipe-premium .section-header p {
    color: #475569;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}
.team-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 400px));
    justify-content: center;
    gap: 30px;
    align-items: stretch;
}
.team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 255, 136, 0.22);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 136, 0.8);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}
.team-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 25px;
    padding: 4px;
    background: #fff;
    border: 2px solid #00ff87;
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-wrapper picture {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.team-img-bw {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.team-card:hover .team-img-bw {
    filter: grayscale(0%);
}
.team-card h3 {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.team-role {
    color: #059669;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.team-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: auto;
}
.team-trust-phrase {
    margin-top: 60px;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #334155;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .team-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .team-premium-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        padding: 30px 20px;
    }
}

.team-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.team-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.team-whatsapp svg {
    fill: #fff;
    flex-shrink: 0;
}

/* Nossas Propostas + Pagamento + Footer OAB */
.np-pricing-section,
.np-payment-section,
.np-site-footer {
    --np-bg: #f4faf6;
    --np-green: #31ee78;
    --np-green-deep: #0bbf56;
    --np-panel: #0a1016;
    --np-line: rgba(43, 244, 125, 0.42);
    --np-line-soft: rgba(255, 255, 255, 0.17);
    --np-danger: #ff5b63;
    font-family: "Manrope", sans-serif;
    scroll-margin-top: 92px;
}

.np-pricing-section a,
.np-payment-section a,
.np-site-footer a {
    text-decoration: none;
}

.np-pricing-section {
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 52% 4%, rgba(49, 238, 120, 0.22), transparent 380px),
        radial-gradient(circle at 10% 98%, rgba(31, 204, 100, 0.14), transparent 340px),
        linear-gradient(180deg, #ffffff 0%, #eef8f1 100%);
    padding: 70px 20px 44px;
}

.np-shell,
.np-payment-shell,
.np-footer-shell {
    width: 100%;
    max-width: 1120px;
    min-width: 0;
    margin: 0 auto;
}

.np-heading {
    text-align: center;
    margin-bottom: 34px;
}

.np-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: #24352d;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.np-eyebrow svg {
    width: 17px;
    height: 17px;
    fill: rgba(49, 238, 120, 0.2);
    stroke: var(--np-green);
    stroke-width: 1.7;
    stroke-linejoin: round;
}

.np-heading h2 {
    margin: 0;
    color: #111a16;
    font-size: clamp(2.45rem, 5vw, 3.5rem);
    line-height: 1;
    font-weight: 900;
}

.np-heading h2 span {
    color: var(--np-green);
}

.np-subtitle {
    margin: 14px 0 0;
    color: #4a5a52;
    font-size: 16px;
    line-height: 1.4;
}

.np-subtitle strong {
    color: var(--np-green-deep);
    font-weight: 900;
}

.np-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
}

.np-plan-card {
    position: relative;
    min-width: 0;
    min-height: 432px;
    display: flex;
    flex-direction: column;
    padding: 32px 32px 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(16, 27, 32, 0.95), rgba(7, 9, 14, 0.98)),
        var(--np-panel);
    color: #f4f6f8;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.np-plan-card::before {
    position: absolute;
    inset: 0;
    content: "";
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at 20% 15%, rgba(49, 238, 120, 0.12), transparent 190px);
}

.np-plan-card.np-featured {
    border-color: var(--np-green);
    background:
        radial-gradient(circle at 50% 0%, rgba(49, 238, 120, 0.16), transparent 270px),
        linear-gradient(180deg, rgba(10, 28, 24, 0.98), rgba(7, 12, 12, 0.98));
    box-shadow: 0 0 0 1px rgba(49, 238, 120, 0.1), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.np-best-choice {
    position: absolute;
    top: -17px;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--np-green), #1fdc68);
    color: #041109;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.np-best-choice svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.np-plan-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.np-plan-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid var(--np-line);
    border-radius: 50%;
    color: var(--np-green);
    background: rgba(49, 238, 120, 0.06);
}

.np-plan-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-plan-header h3 {
    margin: 0;
    color: #eef3f5;
    font-size: 22px;
    line-height: 1.12;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.np-old-price {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0 0 3px;
    color: var(--np-danger);
    font-size: 14px;
}

.np-old-price::after {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    content: "";
    height: 1px;
    background: currentColor;
    transform: rotate(-3deg);
}

.np-price-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--np-green);
}

.np-currency {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.np-amount {
    font-size: 46px;
    font-weight: 900;
    line-height: 0.95;
}

.np-once {
    color: #d0d5da;
    font-size: 13px;
    font-weight: 800;
}

.np-divider {
    position: relative;
    z-index: 1;
    height: 1px;
    margin: 22px 0 20px;
    background: var(--np-line-soft);
}

.np-feature-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    color: #eef1f3;
    font-size: 14px;
    line-height: 1.35;
}

.np-feature-list li {
    position: relative;
    padding-left: 28px;
    overflow-wrap: anywhere;
}

.np-feature-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border: 1px solid var(--np-green);
    border-radius: 50%;
    color: var(--np-green);
    content: "\2713";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.np-plan-button {
    position: relative;
    z-index: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: auto;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.np-plan-button:hover {
    transform: translateY(-2px);
}

.np-plan-button.np-outline {
    border: 1px solid var(--np-green);
    color: var(--np-green);
    background: rgba(49, 238, 120, 0.04);
}

.np-plan-button.np-outline:hover {
    border-color: #8cffb9;
    box-shadow: 0 0 24px rgba(49, 238, 120, 0.16);
}

.np-plan-button.np-filled {
    color: #03150a;
    background: linear-gradient(180deg, #38f385, #25d967);
    box-shadow: 0 16px 36px rgba(49, 238, 120, 0.18);
}

.np-plan-button svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-proposal-note {
    position: relative;
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    align-items: center;
    gap: 12px;
    min-height: 96px;
    margin-top: 18px;
    padding: 20px 28px;
    border: 1px solid rgba(49, 238, 120, 0.25);
    border-radius: 8px;
    background:
        radial-gradient(circle at 2% 100%, rgba(49, 238, 120, 0.15), transparent 260px),
        linear-gradient(180deg, rgba(12, 35, 26, 0.82), rgba(9, 19, 18, 0.95));
    overflow: hidden;
}

.np-note-icon {
    position: relative;
    z-index: 1;
    justify-self: center;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--np-line);
    border-radius: 50%;
    color: var(--np-green);
    background: rgba(49, 238, 120, 0.05);
}

.np-note-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-proposal-note p {
    position: relative;
    z-index: 1;
    min-width: 0;
    margin: 0;
    color: #cbd4d4;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.np-proposal-note strong {
    display: block;
    color: #f4f8f6;
    font-size: 16px;
    line-height: 1.3;
}

.np-server-stack {
    position: relative;
    z-index: 1;
    justify-self: center;
    width: 96px;
    height: 72px;
    transform: rotate(-4deg);
}

.np-server-stack span {
    position: absolute;
    width: 49px;
    height: 12px;
    border: 1px solid rgba(49, 238, 120, 0.25);
    border-radius: 4px;
    background:
        radial-gradient(circle at 80% 50%, var(--np-green) 0 1px, transparent 2px),
        linear-gradient(180deg, rgba(71, 90, 87, 0.6), rgba(24, 42, 37, 0.8));
    opacity: 0.8;
}

.np-server-stack span:nth-child(1) { top: 4px; left: 6px; }
.np-server-stack span:nth-child(2) { top: 20px; left: 8px; }
.np-server-stack span:nth-child(3) { top: 36px; left: 10px; }
.np-server-stack span:nth-child(4) { top: 26px; left: 55px; }
.np-server-stack span:nth-child(5) { top: 42px; left: 57px; }
.np-server-stack span:nth-child(6) { top: 58px; left: 59px; }

.np-payment-section {
    width: 100%;
    padding: 58px 20px 64px;
    border-top: 1px solid rgba(12, 191, 86, 0.14);
    background:
        radial-gradient(circle at 50% 0%, rgba(49, 238, 120, 0.13), transparent 360px),
        linear-gradient(180deg, #f6fbf8 0%, #ffffff 100%);
    color: #07172e;
    overflow: hidden;
}

.np-payment-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.np-payment-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--np-green-deep);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.np-payment-eyebrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-payment-heading h2 {
    margin: 0;
    color: #061736;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    line-height: 1.1;
    font-weight: 900;
}

.np-payment-heading p {
    margin: 14px auto 0;
    max-width: 660px;
    color: #53647d;
    font-size: 18px;
    line-height: 1.55;
}

.np-payment-heading strong {
    display: block;
    margin-top: 28px;
    color: #13253d;
    font-size: 22px;
    line-height: 1.35;
}

.np-payment-heading strong span {
    color: #625bff;
    font-size: 30px;
    font-weight: 900;
}

.np-payment-heading strong .np-stripe-logo {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    vertical-align: middle;
}

.np-payment-heading strong .np-stripe-logo img {
    display: block;
    width: auto;
    height: 34px;
}

.np-brand-carousel {
    margin-top: 22px;
}

.np-brand-carousel p {
    margin: 0 0 20px;
    color: #4b5b73;
    font-size: 14px;
    text-align: center;
}

.np-brand-mask {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-block: 1px solid rgba(6, 23, 54, 0.06);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 249, 0.72), rgba(255, 255, 255, 0.96));
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.np-brand-track {
    display: flex;
    width: max-content;
    animation: np-brand-scroll 44s linear infinite;
}

.np-brand-mask:hover .np-brand-track {
    animation-play-state: paused;
}

.np-brand-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 70px;
    min-width: max-content;
    padding: 28px 35px;
}

.np-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 32px;
    color: #8390a1;
    font-size: 17px;
    font-weight: 900;
    opacity: 0.9;
    filter: saturate(0.82);
    white-space: nowrap;
}

.np-brand-logo-real {
    min-width: 142px;
    height: 40px;
    color: #758298;
    opacity: 0.82;
    filter: grayscale(0.1) saturate(0.9);
}

.np-brand-logo-real svg {
    display: block;
    width: 142px;
    height: 34px;
}

.np-brand-logo-real:hover {
    opacity: 1;
    filter: grayscale(0) saturate(1);
}

.np-amazon {
    position: relative;
    color: #9aa1aa;
}

.np-amazon::after {
    position: absolute;
    right: 23px;
    bottom: 2px;
    width: 24px;
    height: 8px;
    border-bottom: 2px solid #ff9900;
    border-radius: 0 0 50% 50%;
    content: "";
    transform: rotate(-6deg);
}

.np-nvidia { color: #78b947; }
.np-coinbase { color: #7ea5ff; }
.np-slack { color: #596274; }
.np-shopify { color: #5eaf45; }

.np-ford {
    min-width: 78px;
    height: 28px;
    border: 1px solid #8aa7ca;
    border-radius: 50%;
    color: #416a9c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-style: italic;
}

.np-google {
    gap: 0;
}

.np-google span:nth-child(1),
.np-google span:nth-child(4) { color: #4285f4; }
.np-google span:nth-child(2),
.np-google span:nth-child(6) { color: #ea4335; }
.np-google span:nth-child(3) { color: #fbbc05; }
.np-google span:nth-child(5) { color: #34a853; }

.np-payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 18px;
    max-width: 860px;
    margin: 52px auto 0;
}

.np-payment-badge {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid rgba(116, 132, 153, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #5a6880;
    box-shadow: 0 12px 28px rgba(15, 36, 51, 0.08);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.np-payment-badge svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-payment-badge.np-primary {
    border-color: rgba(0, 214, 117, 0.72);
    color: #061736;
    background: rgba(255, 255, 255, 0.88);
}

.np-payment-badge.np-success {
    border-color: rgba(0, 214, 117, 0.24);
    color: #009a63;
    background: rgba(231, 255, 244, 0.85);
}

.np-payment-badge.np-success svg {
    fill: currentColor;
    stroke: none;
}

@keyframes np-brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.np-site-footer {
    position: relative;
    width: 100%;
    padding: 68px 20px 42px;
    border-top: 3px solid var(--np-green);
    background:
        radial-gradient(circle at 18% 0%, rgba(49, 238, 120, 0.12), transparent 320px),
        radial-gradient(circle at 85% 16%, rgba(98, 91, 255, 0.07), transparent 300px),
        linear-gradient(180deg, #effbf4 0%, #e8f8ef 100%);
    color: #061736;
    overflow: hidden;
}

.np-site-footer::before {
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 24px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(49, 238, 120, 0.42), transparent);
    filter: blur(14px);
    pointer-events: none;
}

.np-footer-shell {
    position: relative;
}

.np-footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(180px, 0.75fr) minmax(140px, 0.55fr) minmax(230px, 0.9fr);
    gap: 36px;
    align-items: start;
}

.np-footer-brand-card,
.np-footer-cta {
    border: 1px solid rgba(11, 191, 86, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 26px 70px rgba(9, 40, 24, 0.08);
}

.np-footer-brand-card {
    min-height: 216px;
    padding: 22px 24px;
}

.np-footer-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.np-footer-logo {
    display: inline-flex;
    align-items: center;
}

.np-footer-logo img {
    width: 124px;
    max-width: 100%;
    height: auto;
    display: block;
}

.np-footer-logo-divider {
    width: 1px;
    height: 36px;
    background: rgba(11, 191, 86, 0.24);
}

.np-footer-oab-logo {
    display: block;
    width: 54px;
    height: auto;
    opacity: 0.82;
    filter: saturate(0.9);
}

.np-footer-brand-card p {
    max-width: 310px;
    margin: 22px 0 0;
    color: #4d6076;
    font-size: 14px;
    line-height: 1.55;
}

.np-footer-label {
    margin: 0 0 18px;
    color: #061736;
    font-size: 16px;
    font-weight: 900;
}

.np-footer-positioning h2 {
    margin: 0;
    color: #445a71;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}

.np-footer-nav {
    display: grid;
    gap: 12px;
}

.np-footer-nav a {
    width: fit-content;
    color: #40566f;
    font-size: 15px;
    transition: color 180ms ease, transform 180ms ease;
}

.np-footer-nav a:hover {
    color: var(--np-green-deep);
    transform: translateX(3px);
}

.np-footer-cta {
    padding: 26px 24px 24px;
}

.np-footer-cta p:not(.np-footer-label) {
    margin: 0 0 22px;
    color: #53647d;
    font-size: 15px;
    line-height: 1.5;
}

.np-footer-whatsapp {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 8px;
    background: linear-gradient(180deg, #09e978, #00c965);
    color: #03150a;
    box-shadow: 0 16px 34px rgba(0, 201, 101, 0.24);
    font-size: 14px;
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.np-footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 201, 101, 0.3);
}

.np-footer-whatsapp svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-footer-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    margin-top: 46px;
    padding: 28px 0;
    border-top: 1px solid rgba(15, 63, 37, 0.11);
    border-bottom: 1px solid rgba(15, 63, 37, 0.11);
}

.np-footer-trust span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(11, 191, 86, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #07172e;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(18, 62, 39, 0.05);
}

.np-footer-trust i {
    color: var(--np-green-deep);
}

.np-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 34px;
    color: #445a71;
    font-size: 13px;
}

.np-footer-bottom p {
    margin: 0;
}

.np-footer-bottom strong {
    color: var(--np-green-deep);
    font-weight: 900;
}

@media (max-width: 980px) {
    .np-pricing-section {
        padding: 56px 18px 34px;
    }

    .np-pricing-grid {
        max-width: 540px;
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .np-proposal-note {
        max-width: 540px;
        grid-template-columns: 70px 1fr;
        margin: 18px auto 0;
        padding-right: 20px;
    }

    .np-server-stack {
        display: none;
    }

    .np-payment-section {
        padding: 48px 18px 54px;
    }

    .np-payment-heading p {
        font-size: 16px;
    }

    .np-brand-group {
        gap: 46px;
    }

    .np-site-footer {
        padding: 56px 18px 36px;
    }

    .np-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .np-footer-brand-card {
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .np-pricing-section {
        padding: 44px 14px 30px;
    }

    .np-subtitle {
        font-size: 14px;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .np-plan-card {
        min-height: 0;
        padding: 28px 22px 22px;
    }

    .np-plan-header {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .np-plan-icon {
        width: 48px;
        height: 48px;
    }

    .np-plan-header h3 {
        font-size: 19px;
    }

    .np-currency {
        font-size: 34px;
    }

    .np-amount {
        font-size: 40px;
    }

    .np-once {
        font-size: 12px;
    }

    .np-proposal-note {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 22px;
    }

    .np-proposal-note p {
        width: 100%;
        max-width: 306px;
        font-size: 13px;
    }

    .np-proposal-note strong {
        font-size: 15px;
    }

    .np-payment-section {
        padding: 42px 14px 48px;
    }

    .np-payment-heading {
        margin-bottom: 26px;
    }

    .np-payment-heading p {
        font-size: 15px;
    }

    .np-payment-heading strong {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto;
        font-size: 18px;
    }

    .np-payment-heading strong span {
        display: block;
        font-size: 25px;
    }

    .np-brand-carousel p {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .np-brand-group {
        gap: 34px;
        padding: 22px 20px;
    }

    .np-brand-track {
        animation-duration: 56s;
    }

    .np-brand-logo {
        min-width: 82px;
        font-size: 15px;
    }

    .np-payment-heading strong .np-stripe-logo {
        margin: 8px auto 0;
    }

    .np-payment-heading strong .np-stripe-logo img {
        height: 30px;
    }

    .np-brand-logo-real {
        min-width: 132px;
    }

    .np-brand-logo-real svg {
        width: 132px;
        height: 32px;
    }

    .np-payment-badges {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-top: 36px;
    }

    .np-payment-badge {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
        font-size: 12px;
    }

    .np-site-footer {
        padding: 46px 14px 32px;
    }

    .np-footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .np-footer-brand-card,
    .np-footer-cta {
        padding: 22px;
    }

    .np-footer-brand-card p {
        max-width: none;
    }

    .np-footer-positioning h2 {
        font-size: 15px;
    }

    .np-footer-nav {
        gap: 10px;
    }

    .np-footer-trust {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 30px;
        padding: 24px 0;
    }

    .np-footer-trust span {
        justify-content: center;
        text-align: center;
    }

    .np-footer-bottom {
        display: grid;
        justify-items: center;
        text-align: center;
        padding-top: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .np-brand-track {
        animation: none;
        transform: translateX(0);
    }
}
