* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.phone-info {
    text-align: center;
    margin-bottom: 50px;
}

.phone-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.phone-logo.investigado-photo {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.phone-info p {
    font-size: 18px;
    margin: 5px 0;
    color: #fff;
}

.phone-number {
    color: #888;
    font-size: 16px;
}

.hacking-animation {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #25d366;
    width: 0;
    animation: loading 11s ease-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    10% { width: 15%; }
    25% { width: 30%; }
    40% { width: 45%; }
    55% { width: 60%; }
    70% { width: 75%; }
    85% { width: 90%; }
    100% { width: 100%; }
}

.hacking-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #25d366;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.warning-box {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    color: #ff6b6b;
}

/* WhatsApp Mobile */
.whatsapp-mobile {
    display: none;
    height: 100vh;
    width: 100vw;
    background: #111b21;
    position: relative;
}

.screen {
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.screen.active {
    display: flex;
}

/* Mobile Header */
.mobile-header {
    background: #1f2c34;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.mobile-header h1 {
    font-size: 20px;
    font-weight: 600;
    color: #e9edef;
}

.header-actions {
    display: flex;
    gap: 5px;
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    color: #aebac1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Tabs */
.tabs {
    background: #1f2c34;
    display: flex;
    border-bottom: 1px solid #2a3942;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: none;
    border: none;
    color: #8696a0;
    padding: 16px 0;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.tab-btn:last-child {
    margin-right: 0;
}

.tab-btn.active {
    color: #00a884;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00a884;
}

/* Chat List */
.chat-list, .calls-list, .status-container, .locations-container, .media-container {
    flex: 1;
    overflow-y: auto;
    background: #111b21;
}

.chat-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
}

.chat-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    filter: blur(5px);
}

.chat-content {
    flex: 1;
    min-width: 0;
    border-bottom: 1px solid rgba(134, 150, 160, 0.15);
    padding-bottom: 12px;
}

.chat-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.chat-name {
    font-size: 16px;
    color: #e9edef;
    font-weight: 400;
    filter: blur(3px);
    user-select: none;
}

.chat-time {
    font-size: 12px;
    color: #8696a0;
    filter: blur(3px);
    user-select: none;
}

.chat-message-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-preview {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.message-tick {
    color: #53bdeb;
    margin-right: 3px;
}

.last-msg {
    font-size: 14px;
    color: #8696a0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    filter: blur(3px);
    user-select: none;
}

.unread-count {
    background: #00a884;
    color: #111b21;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    margin-left: 8px;
}

/* Call List */
.call-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
}

.call-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.call-content {
    flex: 1;
    min-width: 0;
    border-bottom: 1px solid rgba(134, 150, 160, 0.15);
    padding-bottom: 12px;
}

.call-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.call-name {
    font-size: 16px;
    color: #e9edef;
    font-weight: 400;
    filter: blur(3px);
    user-select: none;
}

.call-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.call-status {
    display: flex;
    align-items: center;
    gap: 3px;
}

.call-icon {
    color: #00a884;
}

.call-icon.missed {
    color: #f15c6d;
}

.call-type {
    font-size: 14px;
    color: #8696a0;
}

.call-duration {
    font-size: 14px;
    color: #8696a0;
    filter: blur(3px);
    user-select: none;
}

.call-time {
    font-size: 12px;
    color: #8696a0;
    filter: blur(3px);
    user-select: none;
}

/* Status */
.my-status-section {
    padding: 12px 16px;
    background: #111b21;
}

.status-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.status-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.status-avatar.has-status {
    border: 3px solid #00a884;
    padding: 2px;
}

.status-info {
    flex: 1;
}

.status-info h3 {
    font-size: 16px;
    color: #e9edef;
    font-weight: 400;
    margin-bottom: 3px;
}

.status-info p {
    font-size: 14px;
    color: #8696a0;
}

.status-divider {
    padding: 8px 16px;
    background: #0b141a;
    position: sticky;
    top: 0;
    z-index: 10;
}

.status-divider span {
    font-size: 14px;
    color: #8696a0;
    font-weight: 500;
}

.status-list {
    background: #111b21;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
}

.status-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.status-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(#00a884 0deg, #00a884 180deg, #667781 180deg, #667781 360deg);
    margin-right: 15px;
}

.status-ring.viewed {
    background: #667781;
}

.status-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
}

.status-content {
    flex: 1;
    min-width: 0;
}

.status-name {
    font-size: 16px;
    color: #e9edef;
    margin-bottom: 3px;
    filter: blur(3px);
    user-select: none;
}

.status-time {
    font-size: 14px;
    color: #8696a0;
    filter: blur(3px);
    user-select: none;
}

.status-preview {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.status-thumb {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #2a3942;
    filter: blur(5px);
    object-fit: cover;
}

/* Locations */
.locations-header {
    padding: 20px 16px;
    background: #0b141a;
    border-bottom: 1px solid #2a3942;
}

.locations-header h2 {
    font-size: 20px;
    color: #e9edef;
    margin-bottom: 5px;
}

.locations-header p {
    font-size: 14px;
    color: #8696a0;
}

.locations-list {
    background: #111b21;
}

.location-item {
    display: flex;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(134, 150, 160, 0.15);
}

.location-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.location-map {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 15px;
    background: #2a3942;
    position: relative;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
}

.location-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-name {
    font-size: 16px;
    color: #e9edef;
    margin-bottom: 3px;
    filter: blur(3px);
    user-select: none;
}

.location-address {
    font-size: 14px;
    color: #8696a0;
    margin-bottom: 5px;
    filter: blur(3px);
    user-select: none;
}

.location-details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-time {
    font-size: 12px;
    color: #00a884;
    filter: blur(3px);
    user-select: none;
}

.location-distance {
    font-size: 12px;
    color: #8696a0;
    filter: blur(3px);
    user-select: none;
}

/* Media Grid */
.media-header {
    padding: 20px 16px;
    background: #0b141a;
    border-bottom: 1px solid #2a3942;
}

.media-header h2 {
    font-size: 20px;
    color: #e9edef;
    margin-bottom: 5px;
}

.media-header p {
    font-size: 14px;
    color: #8696a0;
}

.media-grid-wrapper {
    padding: 2px;
    background: #111b21;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-auto-rows: 100px;
    grid-auto-flow: dense;
    gap: 2px;
}

.media-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #2a3942;
}

.media-item:active {
    opacity: 0.8;
}

.media-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.media-item.wide {
    grid-column: span 2;
}

.media-item.tall {
    grid-row: span 2;
}

.media-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px);
}

.media-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.media-overlay svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.media-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 8px;
    color: white;
    font-size: 12px;
}

.media-sender {
    font-weight: 600;
    margin-bottom: 2px;
    filter: blur(3px);
    user-select: none;
}

.media-date {
    opacity: 0.8;
    font-size: 11px;
    filter: blur(3px);
    user-select: none;
}

/* Carregar mais */
.load-more-btn {
    grid-column: 1 / -1;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.load-more-btn button {
    background: #1f2c34;
    border: 1px solid #2a3942;
    color: #8696a0;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.load-more-btn button:hover {
    background: #2a3942;
    color: #e9edef;
}

.load-more-btn button:active {
    transform: scale(0.95);
}

/* FAB */
/* FAB */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #00a884;
    border: none;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.unlock-bottom-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00a884 0%, #128c7e 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 100;
}

.unlock-bottom-button:hover {
    background: linear-gradient(135deg, #128c7e 0%, #00a884 100%);
    padding: 18px;
}

.unlock-bottom-button:active {
    transform: scale(0.98);
}

/* Chat Screen */
.chat-header {
    background: #1f2c34;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    min-height: 56px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.back-button {
    background: none;
    border: none;
    color: #e9edef;
    padding: 0;
    margin-right: 15px;
    cursor: pointer;
}

.header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 12px;
    filter: blur(5px);
}

.header-info {
    flex: 1;
}

.header-info h3 {
    font-size: 16px;
    font-weight: normal;
    color: #e9edef;
    filter: blur(3px);
    user-select: none;
}

.header-info p {
    font-size: 13px;
    color: #8696a0;
    filter: blur(3px);
    user-select: none;
}

/* Messages Area */
.messages-area {
    flex: 1;
    background-color: #0b141a;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAF0lEQVQIHWPY3+TP8J+BAsBEpgJkFQB2+gMGAJmJNwAAAABJRU5ErkJggg==');
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 16px;
}

.date-divider {
    text-align: center;
    margin: 15px 0;
}

.date-label {
    background: #182329;
    color: #8696a0;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 7px;
    display: inline-block;
}

.message {
    display: flex;
    margin-bottom: 12px;
    animation: messageIn 0.3s ease-out;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.sent {
    justify-content: flex-end;
}

.msg-bubble {
    max-width: 75%;
    padding: 8px 12px;
    border-radius: 7.5px;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
}

.message.received .msg-bubble {
    background: #1f2c34;
}

.message.sent .msg-bubble {
    background: #005c4b;
}

.msg-text {
    color: #e9edef;
    font-size: 14px;
    line-height: 19px;
    word-wrap: break-word;
    filter: blur(5px);
    user-select: none;
}

.msg-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 7.5px;
    filter: blur(15px);
    user-select: none;
    display: block;
}

.msg-time {
    font-size: 11px;
    color: rgba(233, 237, 239, 0.6);
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    filter: blur(3px);
    user-select: none;
}

.msg-time .tick {
    color: #53bdeb;
}

/* Áudio */
.msg-audio {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    max-width: 250px;
    width: 100%;
}

.audio-play-btn {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00a884;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    filter: blur(3px);
    flex-shrink: 0;
}

.audio-waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 30px;
    filter: blur(3px);
    overflow: hidden;
}

.waveform-bar {
    width: 3px;
    background: #8696a0;
    border-radius: 1px;
    transition: height 0.2s;
}

.audio-duration {
    font-size: 12px;
    color: #8696a0;
    margin-left: 8px;
    filter: blur(3px);
}

/* Input Bar */
.input-bar {
    background: #1f2c34;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 56px;
}

.input-field {
    flex: 1;
    background: #2a3942;
    border-radius: 25px;
    padding: 10px 15px;
    color: #8696a0;
    font-size: 15px;
    cursor: pointer;
}

/* Modal */
.unlock-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.unlock-modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
}

.modal-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px 12px 0 0;
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.access-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d32f2f;
    font-weight: 600;
}

.red-dot {
    width: 8px;
    height: 8px;
    background: #d32f2f;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.modal-body {
    padding: 20px;
    color: #333;
}

/* Timer de urgência agressivo */
.urgency-warning {
    background: #d32f2f;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ff5555;
    position: relative;
    overflow: hidden;
}

.urgency-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: sweep 3s infinite;
}

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

.timer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    margin-bottom: 5px;
}

.timer-icon {
    font-size: 20px;
    animation: blink 1s infinite;
}

.timer-countdown {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.timer-countdown.warning {
    animation: flash-warning 1s infinite;
}

.timer-countdown.critical {
    color: #ffff00;
    animation: flash-critical 0.5s infinite;
}

@keyframes flash-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes flash-critical {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.timer-message {
    text-align: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mensagem de tempo esgotado */
.timeout-message {
    text-align: center;
    padding: 20px;
    color: white;
}

.timeout-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    animation: ring 1s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.timeout-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeout-info {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.device-info {
    text-align: center;
    margin-bottom: 20px;
}

.device-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.device-info h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.device-status {
    font-size: 14px;
    color: #666;
}

.access-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #856404;
    text-align: center;
    font-weight: 600;
}

.access-warning p {
    margin: 0;
}

.features {
    margin-bottom: 20px;
}

.features.compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}

.features.compact .feature-item {
    padding: 6px 8px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    color: #333;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
}

.feature-icon {
    font-size: 20px;
}

.price-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #00a884;
    margin: 10px 0;
}

.price-info {
    font-size: 12px;
    color: #666;
}

.unlock-button {
    width: 100%;
    background: #00a884;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
}

.unlock-button:active {
    transform: scale(0.98);
}

.security-note {
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* Responsive */
/* Email Modal */
.email-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
}

.email-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.email-modal .modal-card {
    position: relative;
    background: #1c1e21;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    z-index: 1;
    border: 2px solid #2ecc71;
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
}

.email-modal .success-indicator {
    text-align: center;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .whatsapp-mobile,
    .loading-screen {
        max-width: 414px;
        margin: 0 auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }
    
    .modal-card {
        max-width: 414px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
        bottom: 20px;
    }
}

/* Loading Modal */
.loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-modal .modal-content {
    text-align: center;
    color: #fff;
}

.loading-modal .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #25d366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* PIX Modal */
.pix-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    z-index: 10000;
    overflow: hidden;
}

.pix-modal-content {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 30px;
    text-align: center;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.pix-modal-inner {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.pix-modal-content h2 {
    color: #ffffff;
    margin-bottom: 20px;    
    line-height: 1.15;
}

.qr-code-container {
    margin: 20px 0;
    background: white;
    padding: 10px;
    border-radius: 10px;    
    display: inline-block;
}

.qr-code-container img {
    max-width: 180px;
    width: 100%;
}

.pix-code-container {
    margin-top: 5px;
}

.pix-code-container p {
    color: #ffffff;
    margin-bottom: 10px;
}

.pix-code-box {
    position: relative;
    margin-top: 10px;
    cursor: pointer;
}

.pix-code-box textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    resize: none;
}

.pix-code-box button {
    bottom: 10px;
    right: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pix-code-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.payment-status {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-status p {
    color: #25d366;
}

.payment-status .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-top-color: #25d366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Copy Alert */
.copy-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #4CAF50;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    z-index: 11000;
    transition: transform 0.3s ease;
    opacity: 0;
    white-space: nowrap;
}

.copy-alert.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.success-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-content i {
    font-size: 30px;
}

.notification-content h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

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