body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 100%);
    padding-top: 0;
}

.container {
    width: 95%;
    max-width: 400px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 8px;
    border: 2px solid #F0AC41;
    box-shadow: 0 4px 20px rgba(240, 172, 65, 0.3);
    text-align: center;
    box-sizing: border-box;
    margin-top: 2px;
    border-radius: 12px;
    position: relative;
}

/* Badge profissional com texto escuro */

.professional-badge {
    background: linear-gradient(145deg, #F0AC41 0%, #d4941f 100%);
    color: #5d4a0e;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    box-shadow: 0 3px 12px rgba(240, 172, 65, 0.4);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

h2 {
    color: #2c2c2c;
    font-size: 1.4em;
    margin: 12px 0 8px 0;
    font-weight: bold;
}

.professional-note {
    background: linear-gradient(145deg, #e8f5e8 0%, #d4f1d4 100%);
    border: 2px solid #4CAF50;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
    font-size: 0.9em;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.professional-note i {
    color: #4CAF50;
    margin-right: 8px;
    font-size: 1.2em;
}

.shipping {
    margin-bottom: 10px;
    font-size: 0.9em;
    text-align: left;
    border: 2px solid #ddd;
    padding: 6px;
    border-radius: 8px;
    box-sizing: border-box;
    background: linear-gradient(145deg, #f8f8f8 0%, #eeeeee 100%);
    color: #555;
    font-weight: 500;
}

.shipping input[type="radio"] {
    margin-right: 5px;
}

/* Benefícios do produto melhorados */

.product-benefits {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    margin: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    color: #2c2c2c;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    padding: 8px;
    background: linear-gradient(145deg, #f8f8f8 0%, #eeeeee 100%);
    border-radius: 8px;
    border: 1px solid #ddd;
    color: #555;
    font-size: 0.9em;
    font-weight: 500;
}

.benefit-item i {
    color: #F0AC41;
    margin-right: 12px;
    font-size: 1.3em;
    min-width: 20px;
}

/* Novos estilos para ofertas simplificadas */

.offer-item-simple {
    border: 2px solid #ddd;
    border-radius: 12px;
    margin-bottom: 10px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.offer-item-simple:hover {
    border-color: #F0AC41;
    box-shadow: 0 4px 15px rgba(240, 172, 65, 0.3);
    transform: translateY(-2px);
}

.offer-item-simple.selected {
    border-color: #F0AC41;
    background: linear-gradient(145deg, #fff8e7 0%, #f5f0d8 100%);
    box-shadow: 0 6px 20px rgba(240, 172, 65, 0.4);
    transform: translateY(-2px);
}

/* Destaque especial para o kit de 3 amostras */

.offer-item-simple.popular {
    border-color: #1976D2;
    background: linear-gradient(145deg, #f3f8ff 0%, #e3f2fd 100%);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

/* Quando o kit de 3 amostras for selecionado, aplicar o estilo padrão de seleção */

.offer-item-simple.popular.selected {
    border-color: #F0AC41;
    background: linear-gradient(145deg, #fff8e7 0%, #f5f0d8 100%);
    box-shadow: 0 6px 20px rgba(240, 172, 65, 0.4);
    transform: translateY(-2px);
}

/* Badges melhoradas - mais legíveis */

.popular-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(145deg, #1976D2 0%, #1565C0 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.65em;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(25, 118, 210, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 1;
    letter-spacing: 0.5px;
}

.best-value-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(145deg, #4CAF50 0%, #388e3c 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.65em;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 1;
    letter-spacing: 0.5px;
}

.offer-content {
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
}

.offer-image {
    flex-shrink: 0;
}

.offer-image img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offer-info {
    flex: 1;
    text-align: left;
}

.offer-info h3 {
    margin: 0 0 6px 0;
    font-size: 1.1em;
    color: #2c2c2c;
    font-weight: bold;
}

.offer-info .old-price {
    color: #999;
    font-size: 0.8em;
    text-decoration: line-through;
    margin: 0;
}

.offer-info .new-price {
    color: #F0AC41;
    font-size: 1.2em;
    font-weight: bold;
    margin: 4px 0;
}

.offer-info .savings {
    color: #4CAF50;
    font-size: 0.85em;
    font-weight: bold;
    margin: 0;
}

.offer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.offer-radio {
    transform: scale(1.3);
    accent-color: #F0AC41;
}

.select-text {
    font-size: 0.8em;
    color: #2c2c2c;
    font-weight: bold;
}

/* Botão principal voltando ao estado anterior */

.continue {
    width: 100%;
    background: linear-gradient(145deg, #F0AC41 0%, #d4941f 100%);
    color: #fff;
    border: none;
    border-bottom: 4px solid #b8801a;
    padding: 18px 15px;
    cursor: pointer;
    font-size: 1.4em;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 6px 25px rgba(240, 172, 65, 0.6);
    transition: all 0.2s ease;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.continue::after {
    content: "Compra 100% segura e garantida";
    display: block;
    font-size: 0.6em;
    font-weight: normal;
    margin-top: 4px;
    opacity: 0.9;
}

.continue:hover {
    background: linear-gradient(145deg, #d4941f 0%, #b8801a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 172, 65, 0.7);
    border-bottom: 4px solid #9a6b15;
}

.continue:active {
    transform: translateY(2px);
    box-shadow: 0 2px 15px rgba(240, 172, 65, 0.5);
    border-bottom: 2px solid #b8801a;
}

/* Garantia com fundo claro corrigido */

.guarantee-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 25px 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #4CAF50;
    text-align: center;
    position: relative;
}

.guarantee-box::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A, #4CAF50);
    border-radius: 20px;
    z-index: -1;
}

.guarantee-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #4CAF50 0%, #388e3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: pulse-guarantee 2s infinite;
    position: relative;
}

.guarantee-icon-circle::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: rotate 3s linear infinite;
}

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

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

.guarantee-icon-circle i {
    font-size: 2.5em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.guarantee-text h3 {
    margin: 0 0 10px;
    color: #2c2c2c;
    font-size: 1.4em;
    font-weight: bold;
}

.guarantee-text p {
    margin: 0;
    font-size: 1em;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
    max-width: 300px;
}

/* Elementos de destaque adicionais - removidos conforme solicitado */

.highlight-box {
    display: none;
}

@media (max-width: 768px) {
    body {
        margin-top: 25px;
        background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 100%);
    }
    .container {
        width: 98%;
        padding: 6px;
        margin-top: 1px;
    }
    .guarantee-box {
        padding: 20px 15px;
        margin-top: 20px;
    }
    .guarantee-icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    .guarantee-icon-circle::before {
        width: 60px;
        height: 60px;
    }
    .guarantee-icon-circle i {
        font-size: 2em;
    }
    .guarantee-text h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }
    .guarantee-text p {
        font-size: 0.9em;
    }
    .shipping {
        margin-bottom: 8px;
        padding: 5px;
        font-size: 0.85em;
    }
    h2 {
        margin: 10px 0 6px 0;
        font-size: 1.3em;
    }
    .continue {
        padding: 18px 12px;
        font-size: 1.4em;
        margin-top: 12px;
        border-bottom: 4px solid #b8801a;
        border-radius: 12px;
    }
    .continue:active {
        border-bottom: 3px solid #b8801a;
    }
    .offer-image img {
        width: 60px;
        height: 60px;
    }
    .offer-content {
        padding: 10px;
        gap: 10px;
    }
    .product-benefits {
        padding: 12px;
        margin: 10px 0;
    }
    .benefit-item {
        font-size: 0.85em;
        margin: 6px 0;
        padding: 6px;
    }
    .professional-badge {
        font-size: 0.9em;
        padding: 6px 12px;
        margin-bottom: 8px;
    }
    .professional-note {
        padding: 6px;
        margin-bottom: 10px;
        font-size: 0.85em;
    }
    .popular-badge,
    .best-value-badge {
        top: 6px;
        right: 6px;
        padding: 2px 6px;
        font-size: 0.6em;
    }
    .highlight-box {
        padding: 8px;
        margin: 8px 0;
    }
}

/* Remover estilos antigos não utilizados */

.offer-section {
    margin-top: 25px;
}

.offer {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #ddd;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.offer-summary {
    display: flex;
    align-items: center;
    padding: 12px;
}

.offer-summary .details {
    flex-grow: 1;
}

.offer-summary h3 {
    margin: 0;
    font-size: 1.2em;
    color: #2c2c2c;
}

.offer-summary p {
    margin: 4px 0;
    font-size: 1em;
    color: #555;
}

.offer-summary .per-week {
    font-weight: bold;
}

.offer-summary i {
    font-size: 1.5em;
    color: #F0AC41;
    transition: transform 0.3s;
}

.offer-details {
    display: none;
    padding: 12px;
    background: linear-gradient(145deg, #f8f8f8 0%, #eeeeee 100%);
    border-top: 2px solid #ddd;
}

.offer-details p {
    margin: 8px 0;
    font-size: 1em;
    color: #555;
}

.offer-details label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(145deg, #F0AC41 0%, #d4941f 100%);
    padding: 10px;
    border-radius: 8px;
    color: #5d4a0e;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(240, 172, 65, 0.5);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.offer-details label input {
    margin-right: 10px;
}

.offer.open .offer-details {
    display: block;
}

.offer.open .offer-summary i {
    transform: rotate(180deg);
}