/* =========================================
   DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
    --primary: #0A1F44;
    /* Dark Navy Blue */
    --primary-light: #163066;
    --accent: #0084FF;
    /* Bright Blue */
    --accent-glow: #00c3ff;
    /* Cyan for gradients/glow */

    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #F0F2F5;

    --text-main: #333333;
    --text-muted: #666666;
    --text-inverse: #FFFFFF;

    --border-color: #E2E8F0;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 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(0, 195, 255, 0.3);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

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

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-muted {
    color: var(--text-muted);
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Backgrounds */
.bg-white {
    background-color: var(--bg-white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-gray {
    background-color: var(--bg-gray);
}

/* =========================================
   COMPONENTS
   ========================================= */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    white-space: normal;
    /* Permite que o texto quebre a linha */
    text-align: center;
    height: auto;
    line-height: 1.3;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

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

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

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.navbar.scrolled .btn-outline {
    color: var(--accent);
    border-color: var(--accent);
}

.navbar.scrolled .btn-outline:hover {
    background: var(--accent);
    color: white;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--primary);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-white);
    transition: color 0.3s;
}

.logo-accent {
    color: var(--accent-glow);
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--bg-white);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    background-color: var(--primary);
    position: relative;
    padding: 10rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.15) 0%, rgba(10, 31, 68, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-content h1 {
    color: var(--bg-white);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-microcopy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.icon-star {
    color: #FBBF24;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.hero-visual:hover .hero-image {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
}

.floating-badge i {
    color: var(--accent-glow);
}

.badge-1 {
    top: 10%;
    right: -5%;
    animation: float 5s ease-in-out infinite reverse;
}

.badge-2 {
    bottom: 20%;
    left: -10%;
    animation: float 7s ease-in-out infinite 1s;
}

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

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

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

/* =========================================
   SECTION 2: PROBLEMAS
   ========================================= */
.problem-section {
    padding: 8rem 0;
}

.problems-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .problem-section {
        padding: 4rem 0;
    }

    .problems-grid-5 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .problem-card {
        padding: 1.75rem 1.25rem;
    }
}

.problem-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #ef4444;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* =========================================
   SECTION 3: RESULTADOS (A SOLUÇÃO)
   ========================================= */
.results-section {
    padding: 8rem 0;
}

.results-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .results-section {
        padding: 4rem 0;
    }

    .results-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trust-panel {
        padding: 2rem 1.25rem;
    }
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-item {
    display: flex;
    gap: 1.5rem;
}

.result-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(0, 132, 255, 0.1);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.trust-panel {
    background: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.trust-panel h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.trust-metrics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-metrics li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trust-metrics li:last-child {
    margin-bottom: 0;
}

.trust-metrics li i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-metrics li div {
    display: flex;
    flex-direction: column;
}

.trust-metrics li strong {
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.trust-metrics li span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* =========================================
   SECTION 4: COMO FUNCIONA
   ========================================= */
.steps-section {
    padding: 8rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .steps-section {
        padding: 4rem 0;
    }

    .step-card {
        padding: 2rem 1.25rem;
    }
}

.step-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    box-shadow: var(--shadow-md);
}

.limited-feature {
    background: #fee2e2 !important;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.limited-feature i {
    color: #ef4444 !important;
}

/* =========================================
   SECTION 4: PRICING
   ========================================= */
.pricing-section {
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-card {
        padding: 2rem 1.25rem;
    }

    .featured-badge {
        white-space: normal;
        text-align: center;
        width: max-content;
        max-width: 90%;
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .plan-desc {
        min-height: unset;
    }
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.featured-card {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.featured-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.plan-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 44px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    color: var(--primary);
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0.25rem;
}

.period {
    color: var(--text-muted);
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.features-title {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.plan-features i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========================================
   SECTION 5: FAQ
   ========================================= */
.faq-section {
    padding: 8rem 0;
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    font-family: inherit;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--accent);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

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

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* MUDANÇA AQUI (alinha tudo pelo topo) */
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 3rem;
    /* Aumentei um pouco o respiro */
}

.footer-brand .logo-text {
    display: inline-block;
    margin-bottom: 0.5rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    /* MUDANÇA AQUI */
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--accent-glow);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

/* =========================================
   MEDIA QUERIES (MOBILE)
   ========================================= */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        width: 100%;
    }

    .featured-card {
        transform: scale(1);
    }

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

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5 {
        grid-column: span 1;
        grid-row: auto;
        min-height: 200px;
    }

    .item-1 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
        /* In a real app, logic for mobile menu is needed */
    }

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

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

    .feature-visual-card {
        order: -1;
        /* Make image appear first on mobile */
        margin-bottom: 2rem;
    }

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

    .item-1 {
        grid-column: 1;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}




/* CORREÇÃO DOS BOTÕES VAZANDO TEXTO */
.btn {
    white-space: normal !important;
    text-align: center;
    height: auto;
    line-height: 1.4;
    min-height: 48px;
}

/* =========================================
   MOCKUP CSS (SUBSTITUTO DA IMAGEM DO ESCUDO)
   ========================================= */
.saas-mockup-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(10, 31, 68, 0.1);
    padding: 1.5rem;
    position: absolute;
    transition: transform 0.5s ease;
}

.security-card {
    width: 260px;
    top: 20px;
    left: 10%;
    transform: rotate(-5deg) translateZ(-50px);
    border-left: 4px solid var(--primary);
    animation: float-slow 7s ease-in-out infinite;
}

.hr-card {
    width: 240px;
    bottom: 30px;
    right: 10%;
    transform: rotate(3deg) translateZ(20px);
    border-top: 4px solid #10B981;
    /* Verde Sucesso */
    animation: float-slow 6s ease-in-out infinite reverse;
    z-index: 2;
}

.saas-mockup-wrapper:hover .security-card {
    transform: rotate(0deg) translateZ(0) translateX(-20px);
}

.saas-mockup-wrapper:hover .hr-card {
    transform: rotate(0deg) translateZ(40px) translateX(20px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.mockup-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-line span {
    font-weight: 600;
    color: var(--primary);
}

.mockup-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.mockup-time {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    line-height: 1;
    margin-bottom: 1rem;
}

.mockup-btn-green {
    background: #10B981;
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@keyframes float-slow {
    0% {
        transform: translateY(0px) rotate(auto);
    }

    50% {
        transform: translateY(-15px) rotate(auto);
    }

    100% {
        transform: translateY(0px) rotate(auto);
    }
}

/* =========================================
   SECTION 1.5: O PROBLEMA
   ========================================= */
.problem-section {
    padding: 6rem 0 4rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1050px;
    margin: 0 auto;
}

.problem-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-top: 4px solid #EF4444;
    /* Vermelho Alerta */
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    color: #EF4444;
    margin-bottom: 1rem;
}

.problem-icon i {
    width: 32px;
    height: 32px;
}

.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Responsivo para o Problema */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   AJUSTES DO FOOTER PARA CELULAR
   ========================================= */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start !important;
        /* Força tudo para a esquerda */
        text-align: left !important;
        gap: 2.5rem;
        /* Espaçamento entre os blocos */
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-column {
        width: 100%;
    }

    .footer-links a {
        justify-content: flex-start !important;
        /* Alinha os ícones e textos perfeitamente */
    }

    .footer-social {
        justify-content: flex-start !important;
        /* Alinha as bolinhas do Instagram/LinkedIn */
    }

    .footer-bottom {
        text-align: left !important;
        padding-bottom: 6rem !important;
        /* Cria um respiro grande no final para o botão do WhatsApp flutuante não cobrir o texto! */
    }
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 174, 255, 0.65);
    box-shadow: 0 0 14px rgba(0, 174, 255, 0.22);
}

/* =========================================
   PLAN SCOPE NOTE
   ========================================= */
.plan-scope-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.plan-scope-note i,
.plan-scope-note svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--text-muted);
    margin-top: 2px;
}

.plan-scope-note span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.plan-scope-featured {
    background: rgba(0, 132, 255, 0.08);
}

.plan-scope-featured i,
.plan-scope-featured svg {
    color: var(--accent);
}

/* =========================================
   PRICING TRUST BAR
   ========================================= */
.pricing-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pricing-trust-bar span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-trust-bar i,
.pricing-trust-bar svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .pricing-trust-bar {
        justify-content: flex-start;
        gap: 0.75rem 1.5rem;
    }
}

/* =========================================
   DIAGNÓSTICO CTA SECTION
   ========================================= */
.diagnostico-section {
    background: var(--primary);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.diagnostico-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

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

.diagnostico-tag {
    display: inline-block;
    background: rgba(0, 132, 255, 0.2);
    color: var(--accent-glow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 195, 255, 0.25);
}

.diagnostico-content h2 {
    color: var(--bg-white);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.diagnostico-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.diagnostico-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.diag-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: var(--transition);
}

.diag-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 195, 255, 0.3);
}

.diag-item>i,
.diag-item>svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-glow);
    margin-top: 2px;
}

.diag-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.diag-item strong {
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 600;
}

.diag-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.825rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .diagnostico-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .diagnostico-section {
        padding: 4rem 0;
    }

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

/* =========================================
   SERVIÇOS SOB DEMANDA
   ========================================= */
.avulsos-section {
    padding: 6rem 0;
}

.avulsos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.avulso-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    transition: var(--transition);
}

.avulso-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.avulso-icon {
    width: 46px;
    height: 46px;
    background: rgba(0, 132, 255, 0.1);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.avulso-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.avulso-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.avulso-cta-card {
    background: var(--primary);
    border-color: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.avulso-cta-card h3 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.avulso-cta-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.avulso-cta-card:hover {
    border-color: var(--accent);
}

@media (max-width: 900px) {
    .avulsos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .avulsos-section {
        padding: 4rem 0;
    }

    .avulsos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}


.final-cta-section {
    padding: 5rem 0;
    background: #f7f8fa;
    /* mesmo padrão do site */
}

.final-cta-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-card h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #0a1f44;
}

.final-cta-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5a70;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.final-cta-actions .btn {
    min-width: 220px;
}

.final-cta-microcopy {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #7a8aa0;
}

.final-cta-microcopy span::before {
    content: "• ";
    margin-right: 4px;
}

@media (max-width: 768px) {
    .final-cta-card {
        padding: 2rem 1.3rem;
    }

    .final-cta-card h2 {
        font-size: 1.5rem;
    }

    .final-cta-card p {
        font-size: 0.95rem;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .final-cta-microcopy {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.final-cta-actions .btn-primary {
    box-shadow: 0 6px 18px rgba(0, 132, 255, 0.25);
}