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

:root {
    --primary-color: #0f4c81;
    --secondary-color: #0284c7;
    --accent-color: #0369a1;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --success: #059669;
    --gradient: linear-gradient(135deg, #0f4c81 0%, #0284c7 100%);
    --gradient-blue: linear-gradient(135deg, #0f4c81 0%, #0284c7 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.navbar.scrolled .container {
    justify-content: center;
    gap: 2rem;
}

.sticky-form {
    display: none;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    min-height: 56px;
}

.navbar.scrolled .nav-links {
    display: none;
}

.navbar.scrolled .sticky-form {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    justify-content: center;
}

.sticky-phone-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    height: 48px;
    max-width: 320px;
    flex: 1;
    border-right: none;
}

.country-selector {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: #f8f9fa;
    border-right: 1px solid #e5e7eb;
    height: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.country-selector:hover {
    background: #f1f3f5;
}

.country-selector .flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
}

.country-selector .country-code {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.country-selector i {
    font-size: 0.7rem;
    color: #6b7280;
}

.sticky-phone-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 0.95rem;
    color: #111827;
    background: transparent;
}

.sticky-phone-input input::placeholder {
    color: #9ca3af;
}

.sticky-input-group {
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.btn-sticky-cta {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: var(--white);
    border: none;
    padding: 0 24px;
    height: 48px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid #ea580c;
    border-left: none;
}

.btn-sticky-cta:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-sticky-cta i {
    font-size: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--gradient-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 76, 129, 0.3);
}

.btn-login {
    color: var(--text-dark) !important;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 76, 129, 0.3);
}

.btn-login-sticky {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0 24px;
    height: 48px;
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-login-sticky:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 76, 129, 0.3);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #0f172a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('attached_assets/poster.BFdG2e05_1763167609245.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

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

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.highlight-purple {
    color: #a78bfa;
    background: linear-gradient(90deg, #a78bfa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-instruction {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.hero-form-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.phone-input-new {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    padding: 0 1.25rem;
    height: 56px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.flag-new {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 0.5rem;
}

.country-code-new {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-right: 0.75rem;
}

.phone-input-new input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #111827;
}

.phone-input-new input::placeholder {
    color: #9ca3af;
}

.btn-localizar {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: var(--white);
    border: none;
    padding: 0 2rem;
    height: 56px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
}

.btn-localizar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.45);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.security-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.security-badge i {
    font-size: 1.5rem;
    color: #059669;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.badge-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    margin-top: 2px;
}

.hero-description {
    max-width: 520px;
}

.hero-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-description p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hero-phone-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-phone-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.badge i {
    color: #059669;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(5, 150, 105, 0.4));
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 600px;
}

.planet-background {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 35% 35%, #0ea5e9, #0284c7 25%, #0f4c81 50%, #075985 75%, #0c4a6e 100%);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    box-shadow: 
        0 0 120px rgba(15, 76, 129, 0.7),
        0 0 200px rgba(100, 181, 246, 0.4),
        inset -40px -40px 80px rgba(0, 0, 0, 0.4),
        inset 30px 30px 60px rgba(255, 255, 255, 0.15);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 0 120px rgba(15, 76, 129, 0.7),
            0 0 200px rgba(100, 181, 246, 0.4),
            inset -40px -40px 80px rgba(0, 0, 0, 0.4),
            inset 30px 30px 60px rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 0 160px rgba(15, 76, 129, 0.9),
            0 0 250px rgba(100, 181, 246, 0.6),
            inset -40px -40px 80px rgba(0, 0, 0, 0.4),
            inset 30px 30px 60px rgba(255, 255, 255, 0.15);
    }
}

@keyframes rotate-planet {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.phone-mockup {
    width: 350px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.steps-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 3rem;
    color: var(--white);
    line-height: 1.3;
    max-width: 800px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Desktop: Layout Horizontal (3 colunas lado a lado) */
@media (min-width: 769px) {
    .steps-list {
        flex-direction: row;
        gap: 3rem;
        max-width: 1200px;
        justify-content: center;
        align-items: flex-start;
    }
    
    .step-item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 320px;
    }
    
    .step-icon-new {
        margin-bottom: 0.5rem;
    }
}

.step-icon-new {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.location-preview {
    padding: 5rem 0 3rem;
    background: #f8fafe;
    text-align: center;
}

.location-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.phone-preview {
    max-width: 320px;
    margin: 0 auto 4rem;
}

.phone-preview img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
}

@media (min-width: 769px) {
    .phone-preview {
        max-width: 900px;
    }
}

.cta-ready {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 0 2rem;
}

.ready-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ready-text {
    font-size: 1.1rem;
    color: #5b6b8a;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-find-now {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
}

.btn-find-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.45);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.use-cases {
    padding: 6rem 0;
    background: #ffffff;
}

.cases-carousel-container {
    position: relative;
    padding: 0 60px;
}

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

.cases-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 76, 129, 0.9);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: none;
}

.cases-nav:hover {
    background: rgba(15, 76, 129, 1);
    transform: translateY(-50%) scale(1.1);
}

.cases-nav.prev {
    left: 0;
}

.cases-nav.next {
    right: 0;
}

.cases-nav i {
    font-size: 1.2rem;
}

.cases-counter {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #0f4c81;
    font-weight: 600;
    display: none;
}

.case-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
    border-color: rgba(15, 76, 129, 0.2);
}

.case-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.3);
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section {
    padding: 6rem 0;
    background: var(--gradient);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    margin: 0 auto;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.footer {
    background: #1e293b;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid #fbbf24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

#loadingTitle {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

#loadingMessage {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    width: 0;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.loading-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.loading-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.loading-stat i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

.fade-in-up.visible {
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tracking-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.satellite {
    position: absolute;
    color: rgba(251, 191, 36, 0.3);
    font-size: 2rem;
    animation: orbit 20s linear infinite;
}

.satellite-1 {
    top: 15%;
    left: 10%;
    animation-duration: 25s;
}

.satellite-2 {
    top: 70%;
    right: 15%;
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes orbit {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(0, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.signal-wave {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(15, 76, 129, 0.2);
    border-radius: 50%;
    animation: signal-pulse 3s ease-out infinite;
}

.signal-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.signal-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.signal-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes signal-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.testimonials {
    padding: 5rem 0;
    background: #f5f7fa;
    position: relative;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-nav {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-nav:hover {
    background: #0f4c81;
    border-color: #0f4c81;
    color: #ffffff;
    transform: scale(1.1);
}

.carousel-nav i {
    font-size: 1.2rem;
    color: #6b7280;
}

.carousel-nav:hover i {
    color: #ffffff;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    flex: 1;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.testimonial-slide {
    width: calc((100% - 3rem) / 3);
    min-height: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.testimonial-slide:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: #c7d2fe;
    margin-bottom: 0;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f4c81;
    margin-bottom: 0.75rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ea580c;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
}

.carousel-counter {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

@media (min-width: 769px) {
    .navbar.scrolled .container {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .navbar.scrolled .nav-brand {
        grid-column: 1 / 2 !important;
        justify-self: start !important;
        width: auto !important;
        justify-content: flex-start !important;
        margin-bottom: 0 !important;
    }
    
    .navbar.scrolled .sticky-form {
        display: contents !important;
    }
    
    .sticky-input-group {
        grid-column: 2 / 3 !important;
        justify-self: center !important;
        flex-direction: row !important;
        width: auto !important;
        gap: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }
    
    .sticky-phone-input {
        width: auto !important;
        max-width: 320px !important;
        border-radius: 8px 0 0 8px !important;
        border-right: none !important;
        box-shadow: none !important;
    }
    
    .btn-sticky-cta {
        width: auto !important;
        border-radius: 0 8px 8px 0 !important;
        box-shadow: none !important;
    }
    
    .btn-login-sticky {
        grid-column: 3 / 4 !important;
        justify-self: end !important;
        width: auto !important;
    }
}

@media (max-width: 992px) {
    .navbar.scrolled .sticky-form {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .sticky-phone-input {
        max-width: 100%;
        flex: 1 1 auto;
        min-width: 250px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-instruction {
        font-size: 1.05rem;
    }
    
    .hero-description h3 {
        font-size: 1.35rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-brand {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        flex: 1;
        margin-bottom: 0;
    }
    
    .nav-brand-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .navbar.scrolled .container {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .navbar.scrolled .nav-brand {
        width: 100%;
    }
    
    .navbar.scrolled .sticky-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 0.75rem;
        padding: 0;
    }
    
    .navbar.scrolled .sticky-input-group {
        flex-direction: row;
        width: 100%;
        gap: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
    }
    
    .navbar.scrolled .sticky-phone-input {
        width: 100%;
        max-width: none;
        flex: 1;
        border-radius: 8px 0 0 8px;
        border-right: none;
        box-shadow: none;
    }
    
    .navbar.scrolled .country-selector {
        display: inline-flex !important;
    }
    
    .navbar.scrolled .country-selector .flag {
        display: inline-block !important;
        width: 26px !important;
        height: 18px !important;
        object-fit: cover !important;
        border-radius: 2px !important;
    }
    
    .navbar.scrolled .country-selector .country-code {
        display: inline-block !important;
    }
    
    .navbar.scrolled .btn-sticky-cta {
        width: auto;
        flex-shrink: 0;
        border-radius: 0 8px 8px 0;
        border-left: none;
        box-shadow: none;
        padding: 0 16px;
    }
    
    .navbar.scrolled .btn-sticky-cta span {
        display: none;
    }
    
    .navbar.scrolled .btn-sticky-cta i {
        font-size: 1.2rem;
    }
    
    .navbar.scrolled .btn-login-sticky {
        display: none;
    }
    
    .tracking-animation {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-instruction {
        font-size: 1rem;
    }
    
    .hero-form-new {
        max-width: 100%;
    }
    
    .phone-input-new {
        height: 52px;
        padding: 0 1rem;
    }
    
    .btn-localizar {
        height: 52px;
    }
    
    .security-badges {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .security-badge {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .hero-description h3 {
        font-size: 1.3rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-phone-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-phone-image img {
        max-width: 90%;
    }
    
    .steps-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .steps-list {
        max-width: 100%;
    }
    
    .step-item {
        gap: 1rem;
    }
    
    .step-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .location-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .phone-preview {
        max-width: 320px;
        margin-bottom: 3rem;
    }
    
    .ready-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .ready-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .btn-find-now {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonials-section {
        background: #f8f9fa;
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .testimonials-carousel {
        gap: 1rem;
        padding: 0;
    }
    
    .testimonials-slider-wrapper {
        max-width: 100%;
        margin: 0;
        overflow-x: hidden;
        overflow-y: visible;
        padding: 0;
    }
    
    .testimonials-slider {
        gap: 1rem;
        justify-content: flex-start;
        overflow: visible;
        padding: 0;
        touch-action: pan-y pinch-zoom;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .testimonial-slide {
        flex: 0 0 90%;
        min-width: 90%;
        max-width: 90%;
        min-height: auto;
        padding: 1.5rem 1.25rem;
    }
    
    .testimonial-slide.is-active {
        padding: 1.75rem 1.5rem;
    }
    
    .testimonial-slide.is-active .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-slide.is-active .testimonial-quote {
        font-size: 1.8rem;
    }
    
    .testimonial-slide.is-active .testimonial-header {
        margin-bottom: 0.75rem;
        gap: 0.65rem;
    }
    
    .testimonial-slide.is-preview {
        padding: 1rem 0.75rem;
    }
    
    .testimonial-slide.is-preview .testimonial-avatar {
        width: 38px;
        height: 38px;
    }
    
    .testimonial-slide.is-preview .testimonial-quote {
        font-size: 1.2rem;
    }
    
    .testimonial-slide.is-preview .testimonial-header {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-slide.is-preview .testimonial-name {
        font-size: 0.95rem;
    }
    
    .testimonial-slide.is-preview .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .testimonial-header {
        margin-bottom: 0.6rem;
        gap: 0.5rem;
    }
    
    .testimonial-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    /* Carrossel de Casos de Uso - Mobile */
    .cases-carousel-container {
        padding: 0;
        overflow: hidden;
    }
    
    .cases-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 1rem;
    }
    
    .cases-grid::-webkit-scrollbar {
        display: none;
    }
    
    .case-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 85%;
    }
    
    .cases-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cases-nav.prev {
        left: 10px;
    }
    
    .cases-nav.next {
        right: 10px;
    }
    
    .cases-counter {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* ===================================
   MOBILE MENU OVERLAY
   =================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    width: 100%;
    min-height: 100vh;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.mobile-menu-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    transition: width 0.3s ease;
}

.mobile-menu-link:hover::before {
    width: 100%;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.mobile-menu-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 24px;
}

.mobile-menu-link span {
    flex: 1;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn-secondary,
.mobile-menu-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.mobile-menu-btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.mobile-menu-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.mobile-menu-btn-secondary i,
.mobile-menu-btn-primary i {
    font-size: 1.1rem;
}

/* Esconder menu mobile no desktop */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* ============================================
   LOCATION ANIMATION FULLSCREEN
   ============================================ */

.location-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0e1a;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.location-animation-overlay.active {
    display: block;
    opacity: 1;
}

/* Fases da animação */
.animation-phase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.animation-phase.visible {
    opacity: 1;
    pointer-events: auto;
}

/* FASE 1: Painel de Verificação */
.phase-1 {
    position: absolute;
}

.phase-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Painel Principal (Glassmorphism) */
.verification-panel {
    position: relative;
    z-index: 2;
    background: rgba(30, 40, 71, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.verification-panel.active {
    opacity: 1;
    transform: scale(1);
}

/* Ondas de Radar (Efeito atrás do painel) */
.verification-panel.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid rgba(15, 76, 129, 0.6);
    border-radius: 24px;
    transform: translate(-50%, -50%);
    animation: radarWave 2s ease-out infinite;
    z-index: -1;
    pointer-events: none;
}

.verification-panel.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid rgba(15, 76, 129, 0.4);
    border-radius: 24px;
    transform: translate(-50%, -50%);
    animation: radarWave 2s ease-out infinite 1s;
    z-index: -1;
    pointer-events: none;
}

@keyframes radarWave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
        border-width: 1px;
    }
}

.verification-panel.stopping::before,
.verification-panel.stopping::after {
    animation: none;
    opacity: 0;
}

/* Cabeçalho do Painel */
.panel-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.panel-icon {
    font-size: 3.5rem;
    color: #0f4c81;
    transition: all 0.5s ease;
}

.panel-status {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    margin: 0;
    font-weight: 500;
    transition: all 0.5s ease;
}

/* Animação dos 3 Pontinhos (Loading Dots) - Espaço Fixo */
.loading-dots {
    display: inline-block;
    width: 1.5em;
    text-align: left;
}

.loading-dots span {
    animation: dotFade 1.4s infinite;
    opacity: 0;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotFade {
    0%, 20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Número do Telefone */
.panel-phone {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Lista de Dados */
.panel-data-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid #0f4c81;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.data-item.show {
    opacity: 1;
    transform: translateX(0);
}

.data-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.data-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.data-value.loading {
    color: #ea580c;
    font-style: italic;
}

.data-value.success {
    color: #059669;
}

/* Spinner Principal */
.panel-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.panel-spinner.hidden {
    opacity: 0;
}

.spinner-loader {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #0f4c81;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* FASE 3: Mapa com Resultado */
.phase-3 {
    position: absolute;
}

.phase-3.visible {
    animation: zoomIn 1.5s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1.5);
    }
    to {
        transform: scale(1);
    }
}

.phase-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background-image: url('attached_assets/rua-geo_1763308342625.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Imagem de fundo para Desktop */
@media (min-width: 769px) {
    .phase-background {
        background-image: url('attached_assets/rua-geo-desktop_1763311316269.webp');
    }
}

.phase-content-final {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    max-width: 600px;
    text-align: center;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Foto de Perfil do WhatsApp */
.whatsapp-profile-picture {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    border: 5px solid rgba(255, 255, 255, 0.25);
    overflow: visible;
    position: relative;
}

.whatsapp-profile-picture i {
    font-size: 4.5rem;
    color: #fff;
}

.whatsapp-profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

/* Bolinha Verde "Online" no Canto da Foto */
.online-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #25D366;
    border-radius: 50%;
    border: 4px solid rgba(10, 14, 26, 0.95);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.6);
}

/* Pulse Suave Verde Atrás da Bolinha */
.online-status::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: onlinePulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes onlinePulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

.result-icon {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.result-phone {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}

.result-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-bottom: 1rem;
}

.result-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    margin-bottom: 2rem;
}

.btn-result-cta {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #FF6B3D, #FF5722);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-result-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.6);
}

/* Responsividade Mobile - Painel de Verificação */
@media (max-width: 768px) {
    .verification-panel {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .panel-icon {
        font-size: 2.5rem;
    }
    
    .panel-status {
        font-size: 1rem;
    }
    
    .panel-phone {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .data-item {
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .data-label {
        font-size: 0.85rem;
    }
    
    .data-value {
        font-size: 1rem;
    }
    
    .spinner-loader {
        width: 35px;
        height: 35px;
    }
    
    .phase-content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .anim-phone-number {
        font-size: 1.8rem;
    }
    
    .animation-item i {
        font-size: 2rem;
    }
    
    .animation-item p {
        font-size: 1rem;
    }
    
    .phase-content-final {
        padding: 2rem 1.5rem;
    }
    
    .result-icon {
        font-size: 3.5rem;
    }
    
    .result-phone {
        font-size: 1.6rem;
    }
    
    .result-title {
        font-size: 1.8rem;
    }
    
    .result-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-result-cta {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}
/* =========================================
   NOVO VISUAL DO PAINEL DE MONITORAMENTO
   ========================================= */

/* Ícones das Operadoras e Bandeiras */
.meta-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
    /* Sombra suave para garantir contraste no fundo escuro, 
       já que agora usaremos as cores originais */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); 
}

/* Badge (Etiqueta) do WhatsApp */
.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.1);
}

.whatsapp-badge i {
    font-size: 1rem;
}

/* Efeito de Texto "Decodificando" (Matrix/Hacker) */
.decoding {
    font-family: 'Courier New', monospace;
    letter-spacing: -0.5px;
    color: #a78bfa; /* Roxo claro tecnológico */
    font-weight: 700;
}

/* Status de Localização Final */
.location-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #10b981; /* Verde Neon */
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    letter-spacing: 0.5px;
}

/* Ponto Verde Pulsante (Radar) */
.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Ajuste de alinhamento para os textos da lista */
.data-value {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 32px; /* Altura mínima para evitar pulos */
}
.blurred-text {
    color: rgba(255, 255, 255, 0.5); /* Cor esbranquiçada */
    filter: blur(4px);               /* O desfoque */
    user-select: none;               /* Não deixa selecionar */
    font-style: italic;
    letter-spacing: 1px;
}

/* =========================================
   PÁGINA DE CADASTRO (CHECKOUT)
   ========================================= */

.checkout-body {
    background: #0f172a;
    min-height: 100vh;
}

.fixed-bg {
    position: fixed;
    z-index: -1;
}

/* Navbar Simplificada */
.checkout-nav {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: relative; /* Não precisa ser fixed aqui se não quiser */
}

.checkout-nav .nav-brand {
    text-decoration: none;
}

.checkout-container {
    padding-top: 40px;
    padding-bottom: 60px;
    max-width: 1100px;
}

/* Títulos */
.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981; /* Verde Sucesso */
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.checkout-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
}

.highlight-number {
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Grid Layout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Cartões (Cards) */
.checkout-card {
    background: rgba(30, 41, 59, 0.7); /* Azul escuro transparente */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card de Benefícios */
.benefits-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 1rem;
}

.benefits-list li i {
    color: #10b981; /* Check verde */
    font-size: 1.2rem;
}

.social-proof-small {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Card de Formulário (Destaque) */
.form-card {
    background: rgba(30, 41, 59, 0.9); /* Um pouco mais opaco para leitura */
    border: 1px solid rgba(16, 185, 129, 0.3); /* Borda verde sutil */
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.card-header-highlight {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-green {
    color: #10b981;
    font-weight: 700;
}

.offer-badge {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offer-badge::before, .offer-badge::after {
    content: '';
    height: 1px;
    width: 40px;
    background: #475569;
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-label {
    color: #cbd5e1;
    font-weight: 500;
}

.price-values {
    display: flex;
    align-items: baseline; /* Alinha o R$ com a base do número */
    gap: 6px;
    flex-wrap: nowrap; /* Impede quebra de linha */
    white-space: nowrap; /* Força ficar na mesma linha */
}

.old-price {
    color: #64748b;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 5px;
}

.new-price {
    color: #fff;
    font-size: 1.8rem; /* Aumentei um pouco para destaque */
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency-symbol {
    font-size: 1rem; /* R$ menorzinho */
    font-weight: 500;
    color: #94a3b8;
    position: relative;
    top: -5px; /* Leve ajuste para cima */
}
.password-group {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0; /* Começa sem margem */
}
.password-group.visible {
    max-height: 100px; /* Altura suficiente para o input */
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1.5rem;
}
/* Formulário */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #475569;
    background: #1e293b;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.btn-continue {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-continue:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.checkout-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.checkout-footer p {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.checkout-footer a {
    color: #94a3b8;
    text-decoration: underline;
}

.security-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #10b981;
    margin-top: 1rem;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column; /* Coloca um em cima do outro */
    }

    /* No mobile, o formulário (order 1) deve vir PRIMEIRO que os benefícios (order 2) */
    .form-card {
        order: 1; 
    }
    
    .benefits-card {
        order: 2;
    }

    .checkout-title {
        font-size: 2rem;
    }
    
    .checkout-card {
        padding: 1.5rem;
    }
}

/* ======================================================
   CORREÇÕES FINAIS V2 (INPUT CORTADO + LAYOUT COMPACTO)
   Cole isto no FINAL do arquivo styles.css (pode substituir o bloco anterior se quiser)
   ====================================================== */

/* 1. CORREÇÃO DO INPUT "CORTADO" */
/* O estilo original removia a borda direita para colar no botão. Aqui devolvemos ela. */
.checkout-form .sticky-phone-input {
    border-right: 1px solid #475569 !important; /* Restaura a borda direita */
    border-radius: 8px !important; /* Restaura o arredondamento nos 4 cantos */
    max-width: 100% !important; /* Garante largura total */
    width: 100% !important;
}

/* 2. LAYOUT COMPACTO (PARA CABER NA TELA SEM SCROLL) */

/* Diminui o espaço entre o topo da página e o conteúdo */
.checkout-container {
    padding-top: 80px !important; /* Reduzido de 100px para 80px */
    padding-bottom: 20px !important;
}

/* Diminui o espaço entre o Título "Localização encontrada" e os Cards */
.checkout-header {
    margin-bottom: 1.5rem !important; /* Reduzido de 3rem para 1.5rem */
}

/* Diminui um pouco o título para ganhar altura vertical */
.checkout-title {
    font-size: 2rem !important; /* Reduzido de 2.5rem */
    margin-bottom: 0.5rem !important;
}

.checkout-subtitle {
    font-size: 1rem !important;
}

/* Deixa os cards mais "enxutos" (menos espaço interno) */
.checkout-card {
    padding: 1.5rem 2rem !important; /* Reduzido de 2.5rem */
}

/* Aproxima os itens da lista de benefícios */
.benefits-list {
    gap: 0.8rem !important; /* Reduzido de 1.2rem */
}

.separator {
    margin-bottom: 1rem !important;
}

/* No Desktop, ajustamos o grid para usar melhor o espaço */
@media (min-width: 769px) {
    .checkout-grid {
        align-items: stretch !important;
        gap: 1.5rem !important; /* Aproxima um pouco os cards lateralmente */
    }
}
/* ======================================================
   CORREÇÃO BLINDADA DO +55 (DESKTOP E MOBILE)
   Cole no FINAL do styles.css
   ====================================================== */

.highlight-green, 
.highlight-number {
    white-space: nowrap !important;   /* Proíbe quebra de linha interna */
    display: inline-block !important; /* Mantém o bloco coeso */
    max-width: 100%;                  /* Evita estourar a tela no mobile */
    overflow: hidden;                 /* Prevenção de segurança */
    text-overflow: ellipsis;          /* Se for absurdamente grande, coloca ... */
    vertical-align: bottom;           /* Alinhamento visual melhor */
}

/* Ajuste para o subtítulo não encavalar no mobile quando o número descer */
.checkout-subtitle {
    line-height: 1.6 !important;
}
/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000; /* Garante que fique acima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-icon {
    margin-top: 2px; /* Ajuste fino para centralizar verticalmente */
}

/* Animação de Pulso Suave */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste para Mobile (Para não ficar muito grande) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
/* ======================================================
   CORREÇÃO DA COR DO INPUT DE TELEFONE (CADASTRO)
   Cole no FINAL do styles.css
   ====================================================== */

/* 1. Pinta o fundo do container inteiro de AZUL ESCURO */
.checkout-form .sticky-phone-input {
    background-color: #1e293b !important; /* Azul escuro do tema */
    border: 1px solid #475569 !important; /* Borda cinza azulada */
    color: #fff !important;
}

/* 2. Remove o fundo branco do seletor (+55) e ajusta a borda */
.checkout-form .country-selector {
    background-color: transparent !important; /* Fundo transparente */
    border-right: 1px solid #475569 !important; /* Divisória da mesma cor da borda */
}

/* 3. Garante que o texto +55 fique claro */
.checkout-form .country-code {
    color: #cbd5e1 !important;
    font-weight: 600 !important;
}

/* 4. Garante que o campo onde digita o número fique transparente (para ver o azul do fundo) */
.checkout-form .sticky-phone-input input {
    background-color: transparent !important;
    color: #fff !important;
}

/* 5. Remove o foco padrão branco (glow) */
.checkout-form .country-selector:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* =========================================
   ESTILOS DO DASHBOARD (ATUALIZADO)
   Cole isso no FINAL do styles.css
   ========================================= */

/* --- Header --- */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
    background: rgba(0,0,0,0.05);
    padding: 6px 12px;
    border-radius: 20px;
}
.status-dot {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 5px #10b981;
}
.btn-logout { color: #ef4444; font-size: 1.2rem; transition: transform 0.2s; }
.btn-logout:hover { transform: scale(1.1); }

/* --- Barra de Status do Alvo --- */
.target-status-bar {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.target-info-main { display: flex; align-items: center; gap: 20px; }
.target-avatar-container { position: relative; width: 70px; height: 70px; flex-shrink: 0; } /* flex-shrink impede amassar */
.target-avatar {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid #fff; position: relative; z-index: 2;
}
.pulse-ring {
    position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px solid #10b981; border-radius: 50%; animation: pulse-green 2s infinite; z-index: 1;
}
.target-text h2 { color: #fff; font-size: 1.4rem; margin-bottom: 0.5rem; }
.target-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge-live {
    background: rgba(16, 185, 129, 0.2); color: #10b981; padding: 4px 10px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 5px;
}
.badge-operator {
    background: rgba(59, 130, 246, 0.2); color: #3b82f6; padding: 4px 10px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 600;
}

/* --- Grid e Cards --- */
.dashboard-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: stretch;
}
.dashboard-card {
    background: rgba(30, 41, 59, 0.7); backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
    overflow: hidden; display: flex; flex-direction: column;
}
.card-header { padding: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.card-header h3 { color: #fff; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }

/* --- Telemetria (Status) --- */
.telemetry-grid { padding: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.telemetry-item { background: rgba(0, 0, 0, 0.2); padding: 1rem; border-radius: 8px; }
.telemetry-item .label { display: block; color: #94a3b8; font-size: 0.8rem; margin-bottom: 0.5rem; }
.value-box { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 1.1rem; }

/* Efeito Borrado (Last Activity) */
.blur-container {
    position: relative; display: flex; align-items: center; gap: 10px;
}
.blur-text {
    filter: blur(5px); user-select: none; opacity: 0.7;
}
.lock-mini {
    font-size: 0.8rem; color: #64748b;
}

.device-mockup {
    padding: 1.5rem; text-align: center; color: #64748b; font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: auto;
}

/* --- Mapa Bloqueado --- */
.map-wrapper { position: relative; width: 100%; height: 100%; min-height: 400px; overflow: hidden; }
.blurred-map-bg {
    width: 100%; height: 100%; background-size: cover; background-position: center;
    filter: blur(8px); transform: scale(1.1);
}
.lock-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
     display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 2rem; z-index: 10;
}
/* CORREÇÃO DO ÍCONE ESTICADO NO MOBILE */
.lock-icon-box {
    width: 60px; height: 60px; min-width: 60px; min-height: 60px; /* Tamanho travado */
    background: rgba(239, 68, 68, 0.2); color: #ef4444; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1rem; border: 2px solid #ef4444;
    flex-shrink: 0; /* Impede encolher */
}
.lock-overlay h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.lock-overlay p { color: #cbd5e1; margin-bottom: 2rem; max-width: 300px; }

.btn-unlock {
    background: linear-gradient(135deg, #ea580c, #c2410c); color: #fff; text-decoration: none;
    padding: 1rem 2.5rem; border-radius: 50px; font-weight: 800; letter-spacing: 1px;
    display: flex; align-items: center; gap: 10px; box-shadow: 0 0 20px rgba(234, 88, 12, 0.5);
    animation: pulse-orange 2s infinite; transition: transform 0.3s;
}
.btn-unlock:hover { transform: scale(1.05); }
.offer-timer { margin-top: 1.5rem; color: #fbbf24; font-size: 0.9rem; font-weight: 600; }

/* --- Notificação do Sistema (Toast) --- */
.sys-notification {
    position: fixed; top: 20px; right: 20px;
    background: rgba(20, 20, 20, 0.95); backdrop-filter: blur(10px);
    border-left: 4px solid #10b981; border-radius: 8px;
    padding: 15px 20px; display: flex; align-items: center; gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 9999;
    transform: translateX(150%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
}
.sys-notification.show { transform: translateX(0); }
.sys-icon {
    width: 40px; height: 40px; background: rgba(16, 185, 129, 0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #10b981; font-size: 1.2rem;
}
.sys-content { display: flex; flex-direction: column; }
.sys-title { font-size: 0.8rem; color: #9ca3af; font-weight: 600; text-transform: uppercase; }
.sys-message { font-size: 0.95rem; color: #fff; font-weight: 500; }

/* Mobile Dashboard Fixes */
@media (max-width: 768px) {
    .dashboard-grid { grid-template-columns: 1fr; }
    .target-status-bar { flex-direction: column; text-align: center; }
    .target-info-main { flex-direction: column; }
    .target-badges { justify-content: center; }
    .map-wrapper { min-height: 350px; }
    
    /* Ajuste da notificação no mobile para topo central */
    .sys-notification {
        top: 10px; left: 10px; right: 10px; width: auto; max-width: none;
        transform: translateY(-150%); /* Vem de cima */
    }
    .sys-notification.show { transform: translateY(0); }
}
/* =========================================
   AJUSTE FINO: ANIMAÇÃO DE ÍCONE PULSANTE
   Cole no FINAL do styles.css
   ========================================= */

@keyframes pulse-icon-scale {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15); /* Cresce 15% */
        filter: brightness(1.2); /* Fica levemente mais brilhante */
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}
/* ======================================================
   ATUALIZAÇÕES FINAIS: MAPA REALISTA (ZOOM FAKE DISCRETO)
   Substitua o bloco final do styles.css por este
   ====================================================== */

/* Remove filtro de Blur do CSS (já que a imagem é borrada) */
.blurred-map-bg {
    filter: none !important;
    transform: scale(1);
}

/* Container dos Controles (Posição) */
.fake-zoom-controls {
    position: absolute;
    bottom: 15px; /* Mais próximo da borda */
    right: 15px;  /* Mais próximo da borda */
    display: flex;
    flex-direction: column;
    gap: 5px; /* Mais juntinhos */
    z-index: 5;
}

/* Estilo dos Botões (Desktop - Mais discreto) */
.zoom-btn {
    width: 32px;  /* Menor (era 40px) */
    height: 32px; /* Menor (era 40px) */
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777; /* Cinza mais suave */
    font-size: 1rem; /* Ícone menor */
    box-shadow: 0 1px 3px rgba(0,0,0,0.2); /* Sombra muito mais suave */
    cursor: default;
}

/* Garante que o bloqueio cubra tudo */
.lock-overlay {
    z-index: 10;
    backdrop-filter: blur(0px);
}

.lock-overlay p strong {
    color: #fff;
    font-weight: 700;
}

/* AJUSTE ESPECÍFICO PARA MOBILE (Ainda menor) */
@media (max-width: 768px) {
    .fake-zoom-controls {
        bottom: 10px;
        right: 10px;
        gap: 4px;
    }
    
    .zoom-btn {
        width: 28px;  /* Bem compacto no mobile */
        height: 28px;
        font-size: 0.9rem;
    }
}

/* =========================================
   NOVAS FUNCIONALIDADES: VOLTAR + ALERTAS
   Cole no FINAL do styles.css
   ========================================= */

/* Link de Voltar (Dentro da caixa azul do Pix) */
.back-link {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #60a5fa; /* Azul claro */
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.back-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- SISTEMA DE NOTIFICAÇÃO MODERNA (Substitui o alert) --- */
.custom-toast-container {
    position: fixed;
    top: 20px; /* Distância do topo quando visível */
    left: 50%;
    
    /* Estado Escondido: */
    transform: translateX(-50%) translateY(-150%); /* Sobe bem mais pra cima */
    opacity: 0; /* Fica totalmente invisível */
    
    z-index: 19000; /* Abaixo do Header, mas acima do resto */
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Animação suave */
    pointer-events: none;
    width: 90%; /* Garante largura no mobile */
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.custom-toast-container.active {
    transform: translateX(-50%) translateY(0); /* Desce para a posição correta */
    opacity: 1; /* Aparece */
    top: 85px; /* No mobile, força ela a aparecer ABAIXO do header, não em cima */
}

/* Ajuste Fino para Desktop (Pode ficar mais no topo) */
@media (min-width: 769px) {
    .custom-toast-container.active {
        top: 30px; /* No desktop pode ser mais alto */
    }
}
.custom-toast {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 300px;
    justify-content: center;
}

/* Variações de Cor */
.custom-toast.error { border-left: 4px solid #ef4444; }
.custom-toast.error i { color: #ef4444; }

.custom-toast.success { border-left: 4px solid #10b981; }
.custom-toast.success i { color: #10b981; }

.custom-toast.warning { border-left: 4px solid #f59e0b; }
.custom-toast.warning i { color: #f59e0b; }
/* =========================================
   NOVA BARRA DE SCAN WHATSAPP
   Cole no FINAL do styles.css
   ========================================= */

.whatsapp-scan-container {
    margin: 0 1.5rem 1.5rem 1.5rem; /* Margem interna do card */
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: none; /* Começa invisível, JS ativa */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scan-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: monospace;
}

.scan-header i {
    color: #25D366;
    font-size: 1rem;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #3b82f6; /* Cor inicial azul */
    width: 0%;
    transition: width 1s linear, background 0.5s ease;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Removemos a borda top do device-mockup para não ficar linha dupla */
.device-mockup {
    border-top: none !important; 
    padding-top: 0 !important;
}
/* --- GATILHO DE WHATSAPP (INDEX) --- */
.wpp-trigger-badge {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid #25d366;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
    animation: triggerPulse 2s infinite;
}

@keyframes triggerPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* =================================================
   CENTRALIZAR INFORMAÇÕES DO CARD DE PROGRESSO (MOBILE)
   Cole isso na última linha do styles.css
   ================================================= */

@media (max-width: 768px) {
    /* 1. Força cada item da lista a ficar em coluna e centralizado */
    .data-item {
        flex-direction: column !important; /* Label em cima, Valor embaixo */
        align-items: center !important;    /* Centraliza horizontalmente */
        text-align: center !important;     /* Centraliza o texto */
    }

    /* 2. Garante que o texto e o valor ocupem a linha e fiquem no meio */
    .data-label, 
    .data-value {
        width: 100%;
        text-align: center !important;
        justify-content: center !important; /* Para ícones dentro do valor */
    }

    /* 3. Centraliza o cabeçalho do card (Ícone da torre e texto) */
    .panel-header {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
    }
}