* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary-color: #004aad;
    --secondary-color: #004aad;
    --text-color: #ffffff;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --button-color-start: #2A7FFF;
    --button-color-end: #00A3FF;
    --button-hover-start: #1A6FE6;
    --button-hover-end: #0090E0;
    --coin-color: #FFD700;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.card {
    background: var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
    width: 100%;
}

.logo-img {
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.premio-text {
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: var(--text-shadow);
}

.gift-container {
    position: relative;
    margin: 30px 0;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-image {
    width: 100%;
    max-width: 220px;
    opacity: 0.95;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.coin {
    width: clamp(24px, 6vw, 32px);
    position: absolute;
    animation: float 4s infinite ease-in-out;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
    z-index: 1;
}

.coin:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.coin:nth-child(2) { top: 5%; left: 50%; animation-delay: 0.5s; }
.coin:nth-child(3) { top: 10%; left: 80%; animation-delay: 1s; }
.coin:nth-child(4) { top: 60%; left: 15%; animation-delay: 0.3s; }

.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-coin {
    width: clamp(20px, 8vw, 40px);
    position: absolute;
    animation: float-large 6s infinite ease-in-out;
    opacity: 0.6;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

@keyframes float-large {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-40px) translateX(20px) rotate(180deg); opacity: 0.8; }
}

.main-text {
    font-size: clamp(20px, 6vw, 28px);
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: var(--text-shadow);
    letter-spacing: 0.5px;
    padding: 0 10px;
}

h3 {
    font-size: clamp(18px, 5vw, 22px);
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: var(--text-shadow);
}

.description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(14px, 4vw, 16px);
    padding: 0 15px;
    font-weight: 600;
    opacity: 0.95;
}

.benefits {
    list-style: none;
    margin-bottom: 25px;
    padding: 0 15px;
}

.benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 600;
    justify-content: center;
}

.cta-button {
    background: linear-gradient(135deg, var(--button-color-start), var(--button-color-end));
    color: var(--text-color);
    text-decoration: none;
    padding: clamp(16px, 4vw, 20px) clamp(30px, 8vw, 40px);
    border-radius: 50px;
    font-weight: 800;
    font-size: clamp(18px, 5vw, 24px);
    display: inline-block;
    margin: 20px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 90%;
    max-width: 350px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--button-hover-start), var(--button-hover-end));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 50px;
    transition: opacity 0.3s;
}

.cta-button:active::after {
    opacity: 1;
    transition: opacity 0s;
}

.warning {
    color: var(--text-color);
    font-size: clamp(12px, 3vw, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    opacity: 0.9;
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .card {
        padding: 15px;
    }
    .gift-container {
        margin: 15px 0;
        min-height: 150px;
    }
    .gift-image {
        max-width: 160px;
    }
    .premio-text, .main-text {
        margin-bottom: 10px;
    }
    .benefits li {
        margin-bottom: 8px;
    }
    .cta-button {
        margin: 10px 0;
        padding: 12px 20px;
    }
}

/* Very small devices */
@media (max-width: 340px) {
    .card {
        padding: 15px 10px;
    }
    .gift-image {
        max-width: 180px;
    }
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.back-button {
    position: absolute;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 4;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-3px);
}

.notification-bell {
    position: absolute;
    right: 0;
    background: rgba(255, 215, 0, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFD700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 4;
}

.notification-bell:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateX(3px);
}

.notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background-color: #FFD700;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

/* Ajuste para mobile */
@media (max-width: 480px) {
    .back-button, .notification-bell {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .notification-dot {
        width: 6px;
        height: 6px;
    }
}

/* Responsividade adicional para o botão CTA */
@media (max-width: 400px) {
    .cta-button {
        width: 95%;
        padding: 14px 20px;
    }
}


.inline-logo {
    max-height: 60px;
    margin: 0 10px;
}