* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
}

form {
    width: 100%;
    padding: 0;
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

/* Barra de progresso */
.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.progress-step:first-child::before {
    content: none;
}

.progress-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 2px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.progress-bullet.active {
    background-color: #333;
    border-color: #333;
}

.progress-label {
    margin-top: 8px;
    font-size: 10px;
    color: #333;
}

.section-title {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
    padding-left: 15px;
}

/* Título e subtítulo */
.title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    padding-left: 15px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-left: 15px;
}

/* Campo de input geral */
.form-group {
    margin-bottom: 15px;
    padding: 0 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    border-color: #009846;
    outline: none;
    background-color: #eef7ee;
}

.error-message {
    font-size: 12px;
    color: #d9534f;
    margin-top: 5px;
}

.input-error {
    border-color: #d9534f;
    background-color: #f9e4e4;
}

/* Ajustes para o campo de telefone */
.iti {
    width: 100%;
}

.iti input, .form-group input {
    width: 100% !important;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding-left: 10px;
    height: 44px;
}

.iti--allow-dropdown .iti__flag-container {
    border-radius: 5px 0 0 5px;
    background-color: #f9f9f9;
}

/* Estilo do botão */
.btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #009846;
    color: white;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn::after {
    content: "»";
    position: absolute;
    right: 15px;
    font-size: 18px;
}

.btn:hover {
    background-color: #007b33;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Contêiner do produto */
#product-container {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#product-container img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 15px;
}

#product-details h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

#product-details p {
    font-size: 14px;
    margin-bottom: 5px;
}

#product-price {
    font-size: 16px;
    font-weight: bold;
    color: #009846;
}

#product-discount {
    font-size: 12px;
    text-decoration: line-through;
    color: #888;
}

/* Contêiner de segurança */
.security-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    text-align: center;
    gap: 10px; /* Espaçamento entre ícone e texto */
}

.security-container i {
    font-size: 30px;
    color: #009846;
}

.security-container p {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0;
    line-height: 30px; /* Alinhamento vertical com o ícone */
    padding-bottom: 0;
}

/* Divisor */
.divisor {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
    width: 100%;
}

/* Contêiner de imagem adicional (formas de pagamento) */
.-payment-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 10px;
}

.-payment-list p {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

/* Aqui você pode alterar o tamanho dos ícones das bandeiras de pagamento */
.-payment-list img {
    width: 30px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.-payment-list img:hover {
    transform: scale(1.1);
}

.line-break {
    display: none;
}
