.cotizar-section {
    padding: 5rem 0;
    min-height: 70vh;
    background: var(--light-color);
}

.cotizar-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cotizar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.resultado-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    align-self: start;
}

.resultado-box h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.cotizacion-detalle {
    margin-bottom: 2rem;
}

.detalle-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-color);
}

.detalle-item span {
    color: var(--text-color);
}

.detalle-item strong {
    color: var(--dark-color);
}

.cotizacion-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.cotizacion-total span {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.cotizacion-total strong {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.cotizacion-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-extra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .cotizar-content {
        grid-template-columns: 1fr;
    }

    .resultado-container {
        position: static;
    }
}
