@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000; /* Dark background as per screenshot context (phone screen) */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background-color: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    padding-bottom: 20px;
}

/* Watermark Background Effect */
.card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Coat_of_arms_of_Brazil.svg/1200px-Coat_of_arms_of_Brazil.svg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.header {
    display: flex;
    justify-content: center;
    padding: 25px 0 15px;
    position: relative;
    z-index: 1;
}

.logo {
    height: 45px;
}

.content {
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

.label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.cpf {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.status-row {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #ff6600; /* Orange dot */
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.status-label {
    color: #333;
}

.status-value {
    color: #cc0000; /* Red text */
    margin-left: 4px;
}

.banner {
    background-color: #00205b; /* Navy Blue */
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 16px;
    margin: 0 -25px 20px; /* Negative margin to stretch full width */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.warning-box {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.warning-icon {
    color: #ffcc00;
    font-weight: bold;
    font-size: 16px;
    margin-right: 5px;
}

.warning-title {
    color: #cc0000;
    font-weight: 700;
}

.bold {
    font-weight: 700;
}

.cost-list {
    margin-bottom: 20px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.cost-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    padding-top: 15px;
}

.total-value {
    color: #cc0000;
}

.input-field {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 20px;
    outline: none;
    color: #333;
}

.input-field:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.action-btn {
    display: block;
    width: 100%;
    background-color: #1a73e8; /* Blue button */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.action-btn:hover {
    background-color: #155db1;
}

.footer-timer {
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.timer-countdown {
    font-weight: 700;
    font-size: 14px;
    color: #000;
    display: block;
    margin-bottom: 4px;
}
