/* Reset e Variáveis */
:root {
    --primary-color: #0f1e2e;
    --primary-dark: #0a1520;
    --primary-light: #1a2d3f;
    --secondary-color: #5ed3b4;
    --accent-color: #5ed3b4;
    --text-dark: #0f1e2e;
    --text-gray: #4A5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-gray: #f4f5f7;
    --bg-dark: #0f1e2e;
    --border-color: #d3dce6;
    --shadow-sm: 0 1px 3px 0 rgba(15, 30, 46, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 30, 46, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(15, 30, 46, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 30, 46, 0.1);
}

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

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

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

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

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

.btn-login {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(94, 211, 180, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(94, 211, 180, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

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

    33% {
        transform: translateY(-30px) rotate(1deg);
    }

    66% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

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

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, var(--secondary-color), #48cc9a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typed-text {
    position: relative;
}

.typed-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-hero-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-trust {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-item i {
    color: var(--secondary-color);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.main-shield {
    position: absolute;
    top: 15%;
    left: 18%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.social-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: orbit 10s linear infinite;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    top: 10%;
    left: 70%;
    animation-delay: 0s;
}

.social-icon.whatsapp {
    background: #25D366;
    top: 30%;
    right: 5%;
    animation-delay: -2s;
}

.social-icon.facebook {
    background: #3b5998;
    bottom: 30%;
    right: 10%;
    animation-delay: -4s;
}

.social-icon.gmail {
    background: #D44638;
    bottom: 10%;
    left: 60%;
    animation-delay: -6s;
}

.social-icon.twitter {
    background: #1DA1F2;
    top: 20%;
    left: 5%;
    animation-delay: -8s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.protection-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 250px;
    height: 250px;
    animation: rotate 20s linear infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation: rotate 30s linear infinite reverse;
}

.ring-3 {
    width: 350px;
    height: 350px;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Before/After Comparison - Light Theme Version */
.before-after {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 15%, rgba(94, 211, 180, 0.05) 0%, transparent 50%), radial-gradient(circle at 85% 85%, rgba(15, 30, 46, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.before-after .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.before-after .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.before-after .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #48cc9a);
    border-radius: 2px;
}

.before-after .section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.vulnerability-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.vulnerability-analysis {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(15, 30, 46, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.vulnerability-analysis::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 211, 180, 0.08), transparent);
    animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
    0% {
        left: -100%;
    }

    25% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.vulnerability-analysis h3 {
    margin-bottom: 2rem;
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 600;
}

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

.account-card {
    position: relative;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 1rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.account-card.vulnerable {
    border-color: var(--bg-gray) !important;
    background: var(--bg-gray);
    animation: danger-pulse 2.5s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(15, 30, 46, 0.1);
}

.account-card.protected {
    border-color: var(--bg-gray) !important;
    background: var(--bg-gray);
    animation: safe-pulse 2.5s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(15, 30, 46, 0.1);
}

@keyframes danger-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(15, 30, 46, 0.2), 0 8px 25px rgba(15, 30, 46, 0.1);
        border-color: var(--primary-color);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(15, 30, 46, 0), 0 8px 25px rgba(15, 30, 46, 0.1);
        border-color: var(--primary-light);
    }
}

@keyframes safe-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(15, 30, 46, 0.2), 0 8px 25px rgba(15, 30, 46, 0.1);
        border-color: var(--primary-color);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(15, 30, 46, 0), 0 8px 25px rgba(15, 30, 46, 0.1);
        border-color: var(--primary-light);
    }
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.platform-icon.whatsapp {
    background: #25D366;
}

.platform-icon.facebook {
    background: #3b5998;
}

.platform-icon.gmail {
    background: #D44638;
}

.security-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    border: 3px solid var(--bg-white);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.security-indicator.danger {
    background: #E53E3E;
    animation: shake 0.6s ease-in-out infinite alternate;
}

.security-indicator.safe {
    background: var(--secondary-color);
    animation: bounce 1.2s ease-in-out infinite;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(2px);
    }
}

@keyframes bounce {

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

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

.platform-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.security-status {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.security-status.vulnerable {
    color: #E53E3E;
}

.security-status.protected {
    color: var(--primary-color);
}

.transformation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
}

.flow-line {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    flex: 1;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    max-width: 150px;
}

.flow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: energy-flow 2.5s ease-in-out infinite;
}

@keyframes energy-flow {
    0% {
        left: -30px;
    }

    100% {
        left: 100%;
    }
}

.flow-icon {
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 1rem;
    box-shadow: 0 6px 20px rgba(15, 30, 46, 0.2);
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.protection-banner {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #0f1e2e);
    color: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(94, 211, 180, 0.3);
}

.protection-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate-glow 12s linear infinite;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

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

.protection-banner h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.protection-banner p {
    font-size: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.before-after .cta-center {
    text-align: center;
    position: relative;
    z-index: 1;
}

.before-after .btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(15, 30, 46, 0.2);
}

.before-after .btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 30, 46, 0.25);
}

.comparison-container {
    display: none;
    /* Hide old version */
}

/* Responsividade */
@media (max-width: 1024px) {
    .vulnerability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .vulnerability-animation {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

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

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

    .vulnerability-account {
        padding: 1.25rem;
    }

    .vulnerability-animation {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .protection-message {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }

    .protection-message h3 {
        font-size: 1.2rem;
    }

    .protection-message p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .vulnerability-animation {
        margin: 0 0.5rem;
        padding: 1.25rem;
    }

    .vulnerability-account {
        padding: 1rem;
    }

    .account-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .status-indicator {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}

.comparison-side {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.comparison-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.danger-illustration,
.safe-illustration {
    position: relative;
}

.vulnerable-account,
.protected-account {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    position: relative;
}

.warning-indicators,
.success-indicators {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.warning-dot {
    width: 8px;
    height: 8px;
    background: #E53E3E;
    border-radius: 50%;
    animation: pulse-warning 1s ease-in-out infinite;
}

.success-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse-success 1s ease-in-out infinite;
}

@keyframes pulse-warning {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes pulse-success {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.shield-overlay {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.comparison-side h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.before .comparison-list i {
    color: #E53E3E;
}

.after .comparison-list i {
    color: var(--secondary-color);
}

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

.arrow-container {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.arrow-container i {
    font-size: 1.5rem;
}

.arrow-container span {
    font-size: 0.8rem;
    font-weight: 600;
}

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

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* How It Works */
.how-it-works {
    padding-top: 2rem;
    padding-bottom: 5rem;
    background: white;
}

.steps-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: 1rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    position: relative;
    /* overflow: hidden; */
}

.step-arrow i {
    animation: arrow-flow 2s ease-in-out infinite;
    position: relative;
}

@keyframes arrow-flow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    25% {
        transform: translateX(5px);
        opacity: 0.7;
    }

    50% {
        transform: translateX(10px);
        opacity: 0.5;
    }

    75% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

.step-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transform: translateY(-50%);
    animation: pulse-line 2s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes pulse-line {

    0%,
    100% {
        width: 0;
        left: 50%;
    }

    50% {
        width: 100%;
        left: 0;
    }
}

/* Features Main - Versão Compacta */
.features-main {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-gray) 0%, #ffffff 50%, var(--bg-gray) 100%);
    position: relative;
    overflow: hidden;
}

.features-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(94, 211, 180, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(15, 30, 46, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.features-main .container {
    position: relative;
    z-index: 1;
}

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

.feature-category {
    background: var(--bg-white);
    padding: 0;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(15, 30, 46, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(94, 211, 180, 0.1);
    overflow: hidden;
    position: relative;
    height: fit-content;
}

.feature-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 211, 180, 0.08), transparent);
    transition: all 0.5s ease;
}

.feature-category:hover::before {
    left: 100%;
}

.feature-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(15, 30, 46, 0.12);
    border-color: rgba(94, 211, 180, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1.5rem 1.5rem 1rem;
    position: relative;
    background: linear-gradient(135deg, var(--bg-gray), var(--bg-white));
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.category-icon.protection {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.category-icon.monitoring {
    background: linear-gradient(135deg, var(--secondary-color), #48cc9a);
}

.category-icon.assistance {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 1.5rem 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0.25rem;
    border: 1px solid transparent;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(94, 211, 180, 0.05), rgba(15, 30, 46, 0.02));
    transform: translateX(5px);
    border-color: rgba(94, 211, 180, 0.15);
}

.feature-item:hover::before {
    background: var(--secondary-color);
}

.feature-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.feature-item:hover span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animação de entrada mais sutil */
.feature-category:nth-child(1) {
    animation-delay: 0.05s;
}

.feature-category:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-category:nth-child(3) {
    animation-delay: 0.15s;
}

/* Responsividade melhorada */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .features-main {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature-category {
        margin: 0 0.5rem;
    }

    .category-header {
        padding: 1.25rem 1.25rem 0.75rem;
        gap: 0.75rem;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .category-header h3 {
        font-size: 1.15rem;
    }

    .feature-list {
        padding: 0 1.25rem 1.25rem;
    }

    .feature-item {
        padding: 0.6rem 0.75rem;
        margin-bottom: 0.2rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .feature-item:hover {
        transform: translateX(3px);
    }
}

@media (max-width: 480px) {
    .feature-category {
        margin: 0;
    }

    .category-header {
        padding: 1rem 1rem 0.5rem;
    }

    .feature-list {
        padding: 0 1rem 1rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: white;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-text>p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trust-feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.trust-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), #38A169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.badge-inner {
    text-align: center;
    color: white;
}

.badge-inner i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.badge-inner span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Final */
.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta-final {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-final:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    grid-column: 1 / 2;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-links {
    grid-column: 2 / 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

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

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsivo */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-top: 8rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .vulnerability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .step-arrow::after {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent, var(--secondary-color), transparent);
        transform: translateX(-50%);
    }

    @keyframes pulse-line {

        0%,
        100% {
            height: 0;
            top: 50%;
        }

        50% {
            height: 100%;
            top: 0;
        }
    }

    .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .vulnerability-account {
        padding: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .comparison-side,
    .feature-category {
        padding: 1.5rem;
    }

    .trust-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Modal Container */
.modal-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modal-close i {
    font-size: 16px;
    color: #6b7280;
}

/* Modal Header with Animation */
.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.modal-icon i {
    font-size: 36px;
    color: white;
}

.modal-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Modal Body */
.modal-body {
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    overflow-y: auto;
}

.coming-soon-text {
    font-size: 18px;
    color: #374151;
    margin-bottom: 25px;
    line-height: 1.6;
}

.coming-soon-text {
    font-size: 18px;
    color: #374151;
    margin-bottom: 25px;
    line-height: 1.6;
}

.features-preview {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.features-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.features-list {
    display: grid;
    gap: 12px;
}

.feature-item-list {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}

.feature-icon-list {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    flex-shrink: 0;
}

/* Notification Section */
.notification-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.notification-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.email-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.notify-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.privacy-note {
    font-size: 12px;
    color: var(--bg-white);
    text-align: left;
}

/* Progress Section */
.progress-section {
    margin-bottom: 25px;
}

.progress-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.progress-bar {
    background: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.modal-body::-webkit-scrollbar {
    width: 4px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

@media (max-width: 640px) {
    .modal-container {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .modal-header {
        padding: 30px 20px 25px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .email-form {
        flex-direction: column;
    }

    .modal-actions {
        flex-direction: column;
    }
}


.progress-fill {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    height: 100%;
    width: 75%;
    border-radius: 4px;
    animation: progressGrow 2s ease-out;
}

@keyframes progressGrow {
    0% {
        width: 0%;
    }

    100% {
        width: 75%;
    }
}

.progress-text {
    font-size: 13px;
    color: #6b7280;
}

/* Action Buttons */
.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 640px) {
    .modal-container {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .modal-header {
        padding: 30px 20px 25px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .email-form {
        flex-direction: column;
    }

    .modal-actions {
        flex-direction: column;
    }
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.demo-btn {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px;
    transition: all 0.2s ease;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.emergency-header {
    background: linear-gradient(135deg, var(--danger-color, #e53e3e) 0%, #dc2626 100%);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.emergency-header.recovered {
    background: linear-gradient(135deg, var(--success-color, #38a169) 0%, #22c55e 100%);
}

.emergency-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.status-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.status-icon.danger {
    animation: shake 0.8s ease-in-out infinite alternate;
}

.status-icon.success {
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(3px);
    }
}

@keyframes bounce {

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

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

.status-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.status-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.main-content {
    padding: 3rem 0;
}

.user-info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border-left: 4px solid var(--danger-color, #e53e3e);
}

.user-info-card.recovered {
    border-left-color: var(--success-color, #38a169);
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color, #0f1e2e), var(--primary-dark, #0a1520));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.incident-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.detail-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray, #4A5568);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #0f1e2e);
}

.timeline {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e2e8f0;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-icon.danger {
    background: var(--danger-color, #e53e3e);
}

.timeline-icon.warning {
    background: var(--warning-color, #dd6b20);
}

.timeline-icon.success {
    background: var(--success-color, #38a169);
}

.timeline-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark, #0f1e2e);
}

.timeline-content p {
    color: var(--text-gray, #4A5568);
    font-size: 0.9rem;
    margin: 0;
}

.timeline-time {
    font-size: 0.8rem;
    color: var(--text-light, #718096);
    margin-top: 0.25rem;
}

.share-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.share-url {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    font-family: monospace;
    font-size: 0.9rem;
    margin: 1rem 0;
    word-break: break-all;
    position: relative;
}

.copy-btn {
    background: var(--primary-color, #0f1e2e);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 1rem;
}

.copy-btn:hover {
    background: var(--primary-dark, #0a1520);
    transform: translateY(-1px);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert.danger {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.2);
    color: #c53030;
}

.alert.success {
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid rgba(56, 161, 105, 0.2);
    color: #2f855a;
}

.platform-affected {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 62, 62, 0.1);
    color: #c53030;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem;
}

.platform-affected.recovered {
    background: rgba(56, 161, 105, 0.1);
    color: #2f855a;
}

.footer-simple {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-gray, #4A5568);
    font-size: 0.9rem;
}

.logo-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-simple img {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .status-title {
        font-size: 1.5rem;
    }

    .incident-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .share-url {
        font-size: 0.8rem;
    }

    .copy-btn {
        margin: 1rem 0 0 0;
        width: 100%;
    }
}

.no-link {
    color: var(--primary-color);
    text-decoration: none;
}