/* =========================================================================
   VARIABLES & DESIGN TOKENS
   ========================================================================= */
:root {
    /* Color Palette - Premium Corporate B2B */
    --clr-primary: #348bd6;
    /* Light Blue from logo Arrow */
    --clr-primary-light: #5eafe7;
    --clr-primary-dark: #1f5f99;

    --clr-dark-blue: #0A192F;
    /* Deep Navy Background */
    --clr-dark-blue-deep: #061224;
    /* Even deeper for contrast */
    --clr-dark-blue-light: #112240;
    /* Elevated surfaces */

    --clr-text-light: #e6f1ff;
    --clr-text-muted: #8892b0;

    --clr-text-dark: #333333;
    --clr-text-dark-muted: #666666;

    --clr-white: #ffffff;
    --clr-bg-light: #f8fbff;
    --clr-bg-gray: #f0f4f8;

    --clr-accent: #233554;
    --clr-error: #ef4444;
    --clr-success: #10b981;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 32px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(52, 139, 214, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   RESET & BASE STYLES
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-dark);
    background-color: var(--clr-bg-light);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

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

/* =========================================================================
   UTILITIES
   ========================================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
}

.center {
    text-align: center;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.mt-40 {
    margin-top: 2.5rem;
}

.mt-60 {
    margin-top: 3.75rem;
}

.highlight {
    color: var(--clr-primary-light);
}

.highlight-blue {
    color: var(--clr-primary);
}

.dark-section {
    background-color: var(--clr-dark-blue);
    color: var(--clr-text-light);
}

.dark-section-deep {
    background-color: var(--clr-dark-blue-deep);
    color: var(--clr-text-light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section-deep h1,
.dark-section-deep h2,
.dark-section-deep h3 {
    color: var(--clr-white);
}

.dark-section p,
.dark-section-deep p {
    color: var(--clr-text-muted);
}

.light-section {
    background-color: var(--clr-white);
    padding: var(--spacing-xl) 0;
}

.accent-section {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white);
    padding: var(--spacing-xl) 0;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-base);
    border: none;
    font-size: 1rem;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-white {
    background-color: var(--clr-white);
    color: var(--clr-primary-dark);
}

.btn-white:hover {
    background-color: var(--clr-bg-gray);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xlarge {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 50px;
}

.glow {
    box-shadow: var(--shadow-glow);
}

.shadow-high {
    box-shadow: var(--shadow-lg);
}

.float-anim {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

/* =========================================================================
   HEADER & NAVBAR
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-base), padding var(--transition-base);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    /* Adjusted to fit layout nicely */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--clr-text-light);
    font-weight: 500;
    font-family: var(--font-heading);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--clr-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 2rem;
    cursor: pointer;
}

/* =========================================================================
   BLOCO 1: HERO SECTION
   ========================================================================= */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--clr-primary-dark) 0%, transparent 70%);
}

.shape-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 139, 214, 0.15) 0%, transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--clr-primary-light);
}

.hero-text {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--clr-text-light);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
    line-height: 1.8;
}

.hero-text p {
    margin-bottom: 1rem;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-benefits {
    margin-bottom: 1.5rem;
    list-style: none;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-benefits li i {
    color: var(--clr-success);
    font-size: 1.25rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.hero-benefits strong {
    color: var(--clr-white);
    font-family: var(--font-heading);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.microcopy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

.microcopy i {
    margin-top: 2px;
}

/* Glassmorphism Dashboard Mockup */
.glass-card {
    background: rgba(17, 34, 64, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dash-mockup {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dash-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.dash-header {
    background: rgba(17, 34, 64, 0.8);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}

.dots span:nth-child(2) {
    background: #ffbd2e;
}

.dots span:nth-child(3) {
    background: #27c93f;
}

.dash-header .title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--clr-text-light);
    opacity: 0.7;
}

.dash-body {
    padding: 2rem;
}

.main-metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.main-metric .label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-metric .value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--clr-white);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    margin-top: 0.5rem;
}

.badge.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-box i {
    font-size: 2rem;
    color: var(--clr-success);
}

.stat-box.alert i {
    color: var(--clr-success);
    /* Actually down in inadimplencia is good */
}

.stat-box .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    letter-spacing: 1px;
}

.stat-box .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-white);
}

.stat-box .value.down {
    color: var(--clr-success);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.bar {
    position: relative;
    display: flex;
    justify-content: center;
    width: 12%;
    background: var(--clr-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    transition: height 1.5s ease;
}

.bar span {
    position: absolute;
    bottom: -1.8rem;
    font-size: 0.7rem;
    color: var(--clr-text-muted);
}

.bar.highlight-bar {
    background: #10b981;
    box-shadow: 0 0 15px rgba(16,185,129,0.3);
    opacity: 1;
}
.bar.highlight-bar span {
    color: #10b981;
    font-weight: 600;
}

.bar.h-40 {
    height: 40%;
}

.bar.h-60 {
    height: 60%;
}

.bar.h-30 {
    height: 30%;
}

.bar.h-80 {
    height: 80%;
}

.bar.h-100 {
    height: 100%;
    background: var(--clr-primary-light);
}

.bar.h-70 {
    height: 70%;
}

/* Hero Image Custom Styles */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    z-index: 10;
}

.hero-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(17, 34, 64, 0.85);
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    animation: float 4s ease-in-out infinite;
    z-index: 20;
    max-width: 250px;
}

.floating-badge span {
    font-size: 0.9rem;
    line-height: 1.3;
}
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.wave-bottom svg {
    display: block;
    width: 100%;
}

/* =========================================================================
   BLOCO 2: PROBLEMAS
   ========================================================================= */
.problema {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header .subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--clr-error);
}

.icon-wrapper.primary {
    background: rgba(52, 139, 214, 0.1);
    color: var(--clr-primary);
}

.agitation-box {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.05), transparent);
    border-left: 4px solid var(--clr-error);
    padding: 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.125rem;
}

/* =========================================================================
   BLOCO 3: SOLUCAO
   ========================================================================= */
.solucao-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.solucao-header .description {
    font-size: 1.125rem;
    color: var(--clr-text-dark-muted);
}

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

.feature-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-bg-gray);
    transition: var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--clr-primary-light);
}

/* =========================================================================
   BLOCO 4: FAQ (Accordion)
   ========================================================================= */
.faq {
    padding: 8rem 0; /* Aumenta o espaçamento vertical interno da seção inteira no computador */
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem; /* Aumenta a distância horizontal entre as colunas no computador */
}

.align-start {
    align-items: flex-start;
}

.faq-text h2 {
    font-size: 2.75rem; /* Aumenta sutilmente o tamanho do título para destacar mais */
    margin-bottom: 1.75rem; /* Adiciona espaçamento generoso abaixo do título */
    line-height: 1.25;
}

.faq-text p {
    font-size: 1.125rem; /* Aumenta a legibilidade do texto de apoio */
    line-height: 1.8;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg); /* Deixa as bordas um pouco mais arredondadas e modernas */
    margin-bottom: 1.5rem; /* Aumenta a distância entre cada accordion item */
    overflow: hidden;
    transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.75rem 2.25rem; /* Aumenta o preenchimento interno do cabeçalho */
    color: var(--clr-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.25rem; /* Aumenta o texto da pergunta */
    font-weight: 600;
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2.25rem; /* Alinha o padding horizontal com o cabeçalho */
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2.25rem 1.75rem; /* Alinha o padding inferior generoso */
}

/* =========================================================================
   BLOCO 5: PROVA SOCIAL
   ========================================================================= */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--clr-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: var(--clr-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--clr-text-dark);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.client-info .avatar {
    width: 60px;
    height: 60px;
    background: var(--clr-bg-gray);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.client-info .name {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-text-dark);
}

.client-info .role {
    font-size: 0.875rem;
    color: var(--clr-text-dark-muted);
}

.stars i {
    color: #fbbf24;
}

/* =========================================================================
   BLOCO 6: CTA FINAL
   ========================================================================= */
.highlight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    font-size: 1.125rem;
}

.microcopy-light {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
    background: var(--clr-dark-blue-deep);
    color: var(--clr-text-muted);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 9rem;
    width: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links a,
.footer-contact a {
    display: block;
    margin-bottom: 0.75rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--clr-primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.social-links a:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* =========================================================================
   BLOCO PLANOS (PRICING)
   ========================================================================= */
.planos {
    background-color: var(--clr-bg-light);
    padding: var(--spacing-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-card.popular {
    border: 2px solid var(--clr-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--clr-dark-blue);
    margin-bottom: 0.5rem;
}

.target-audience {
    font-size: 0.875rem;
    color: var(--clr-primary-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--clr-dark-blue);
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-right: 0.25rem;
}

.price .value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.price .period {
    align-self: flex-end;
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.value-prop {
    font-size: 0.95rem;
    color: var(--clr-text-dark-muted);
    min-height: 45px;
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--clr-text-dark);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--clr-success);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-features li strong {
    color: var(--clr-dark-blue);
}

.pricing-footer {
    margin-top: auto;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition-base);
}

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

/* =========================================================================
   MEDIA QUERIES
   ========================================================================= */
@media (max-width: 992px) {

    .hero-container,
    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
        padding-top: 10rem;
        padding-bottom: 5rem;
        display: block;
        /* Remove o flex centralizando a pagina tirando as bordas verticalmente */
        min-height: auto;
    }

    .hero-cta {
        align-items: center;
    }

    .dash-mockup {
        max-width: 500px;
        margin: 0 auto;
        transform: rotateY(0) rotateX(0);
        /* remove 3D rotation on mobile */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .light-section,
    .dark-section,
    .dark-section-deep,
    .accent-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 64px; /* Aumenta a logo na versão celular para melhor legibilidade */
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .problem-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .light-section,
    .dark-section,
    .dark-section-deep,
    .accent-section {
        padding: var(--spacing-md) 0;
    }

    .hero.dark-section {
        padding-top: 8rem;
        padding-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .glass-card {
        margin: 0 -1rem;
        /* stretch slightly */
        border-radius: var(--radius-md);
    }

    .accordion-header {
        padding: 1.25rem 1.5rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1.5rem 1.25rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        /* smaller container padding */
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

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

    .stat-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .btn-xlarge {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }

    .agitation-box {
        padding: 1.5rem;
        font-size: 1rem;
    }
}