@import url("servicio-base.css");

.budget-hero {
    min-height: 100vh;
    padding: 88px 8% 28px;
    background:
        radial-gradient(circle at 18% 20%, rgba(227,6,19,.14), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f6f6f7 100%);
    display: flex;
    align-items: flex-start;
}

.budget-hero-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .86fr 1fr;
    gap: 38px;
    align-items: start;
}

.budget-copy span {
    display: inline-block;
    color: #e30613;
    background: rgba(227,6,19,.08);
    border: 1px solid rgba(227,6,19,.18);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.budget-copy h1 {
    color: #111827;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 14px;
}

.budget-copy p {
    color: #374151;
    font-size: 17px;
    line-height: 1.42;
}

.budget-card {
    background: #fff;
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(15,23,42,.12);
    overflow: hidden;
}

.budget-card-header {
    background: #050505;
    color: #fff;
    padding: 18px 28px;
}

.budget-card-header h2 {
    font-size: 24px;
    line-height: 1.16;
    font-weight: 900;
    margin-bottom: 5px;
}

.budget-card-header p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.35;
}

.budget-form {
    padding: 20px 28px 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 10px;
}

.field {
    margin-bottom: 0;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111827;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: .25s;
}

.field textarea {
    min-height: 78px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #e30613;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(227,6,19,.10);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 14px;
}

.form-actions button {
    border: none;
    cursor: pointer;
}

.form-note {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

.budget-benefits {
    padding: 80px 9% 92px;
    background: #fff;
}

.benefits-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-item {
    border: 1px solid rgba(17,24,39,.10);
    border-left: 5px solid #e30613;
    border-radius: 8px;
    padding: 26px 24px;
    background: #fafafa;
}

.benefit-item h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 1050px) {
    .budget-hero-inner,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .budget-hero {
        padding: 96px 6% 34px;
    }

    .budget-copy h1 {
        font-size: 36px;
    }

    .budget-copy p {
        font-size: 17px;
    }

    .budget-card-header,
    .budget-form {
        padding-left: 22px;
        padding-right: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
