#container-result {
    display: none;
}

.packages-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.package {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    background-color: #f5f7f9;
    border: 1px solid #d1dce5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-title {
    color: #1a365d;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.package-info {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.package-price {
    font-size: 24px;
    font-weight: bold;
    color: #1a365d;
}

.mobility-note {
    text-align: right;
    color: #4a5568;
    font-size: 14px;
    margin: 15px 0 25px;
}

.buttons-container {
    display: flex;
    gap: 20px;
}

.contact-button {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #d1dce5;
    border-radius: 50px;
    background-color: white;
    color: #1a365d;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.service-button {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #4ade80, #22c55e);
    color: white;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-button:hover {
    background-color: #f0f4f8;
}

.service-button:hover {
    background: linear-gradient(to right, #22c55e, #16a34a);
}

/* Modal styles */
.modal-aviso {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content-aviso {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-title {
    color: #1a365d;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.modal-message {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: #d1f7dd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    width: 35px;
    height: 35px;
    fill: #22c55e;
}

.modal-button {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #4ade80, #22c55e);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.modal-button:hover {
    background: linear-gradient(to right, #22c55e, #16a34a);
}