* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.4;
}

.top-bar {
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.header-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-decoration: underline;
    text-decoration-color: #333;
    /* Default underline color */
}

/* Specific styling for "Acesso Vitalício" underline if needed, 
   but the screenshot implies the whole line might be standard text 
   with specific emphasis. Looking closely: 
   "Garanta" is normal, "Acesso Vitalício" is bold/underlined. */
.header-text p {
    text-decoration: none;
}

.header-text .underline {
    font-weight: 700;
    text-decoration: underline;
}

.price-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.old-price {
    text-decoration: line-through;
    color: #f91919;
    /* A darker red/brown for the crossed out price */
}

.new-price {
    color: #2E7D32;
    /* Green */
}

.hero-image {
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Slight rounding if desired */
    display: block;
}

.offer-headline {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.offer-headline .underline {
    text-decoration: underline;
}

.offer-headline .green-highlight {
    color: #4CAF50;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    /* Semi-bold look */
}

.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.benefits-list li .check {
    margin-right: 8px;
    color: #4CAF50;
    min-width: 20px;
    /* Ensure checkmark aligns well */
}

.cta-button {
    display: block;
    width: 100%;
    background-color: #00b300;
    /* Bright green */
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s, transform 0.1s;
}

.cta-button:hover {
    background-color: #009900;
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}