.sq-container {
    width: 90%;
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    font-family: sans-serif;
}

.sq-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sq-form-wrapper {
    width: 100%;
}

.sq-form-section {
    margin-bottom: 2rem;
}

.sq-section-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sq-form-half {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.sq-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.sq-form-column {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}

.sq-form-column label {
    margin: 0.5rem 0 0.2rem;
    font-weight: 500;
}

.sq-form-column input,
.sq-form-column select {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.sq-radio-group {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0;
}

.sq-package {
    margin-bottom: 1rem;
    padding: 1rem;
    /*border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;*/
}

.sq-form-quarter {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sq-package {
    margin-bottom: 1rem;
}

.sq-add-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

.sq-add-link:hover {
    color: #005177;
}

.sq-form-actions {
    text-align: right;
    margin-top: 1rem;
}

.sq-submit-btn,
.sq-confirm-btn {
    background: #e4002b;
    color: #fff;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.sq-submit-btn:hover,
.sq-confirm-btn:hover {
    background: #c70025;
}

.sq-package-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.sq-remove-package {
    color: #d9534f;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

.sq-remove-package:hover {
    color: #b52b27;
}

.sq-submit-btn:disabled,
.sq-confirm-btn:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

.sq-success-message {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.sq-success-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.sq-success-icon {
    font-size: 3rem;
    color: #00b050;
    margin-bottom: 1rem;
}

.sq-success-text {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #333;
}

.sq-start-over-btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 2px solid #e4002b;
    color: #e4002b;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.sq-start-over-btn:hover {
    background: #e4002b;
    color: #fff;
}

.sq-radio-group.sq-radio-group-white {
    display: none;
}

.sq-radio-group.sq-radio-group-white input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    width: 16px;
    height: 16px;
    display: none;
}

@media (min-width: 768px) {
    .sq-form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .sq-form-column {
        flex: 1 1 45%;
        display: flex;
        flex-direction: column;
    }
    
    .sq-form-half {
        flex: 1 1 48%;
    }
    
    .sq-form-quarter {
        flex: 1 1 22%;
        display: flex;
        flex-direction: column;
    }
    
    .sq-packages-section {
        flex: 1 1 30%;
        display: flex;
        flex-direction: column;
    }
    
    .sq-form-row.sq-envoltorio-envio {
        display: flex;
        flex-wrap: wrap;
    }

    .sq-form-column,
    .sq-packages-section {
        flex: 1 1 30%;
    }
    
    .sq-submit-btn,
    .sq-confirm-btn {
        width: auto;
    }
    
    .sq-radio-group.sq-radio-group-white {
        display: block;
    }
    
    .sq-radio-group.sq-radio-group-white input[type="radio"] {        
        display: inline-block;
    }   
    
}




